/* ============================================================
   SAFQA — Savings Corner Block (ركن التوفير)
   Matches Amazon.eg circular category showcase style.
   ============================================================ */

.safqa-sc {
    direction: rtl;
    font-family: inherit;
    margin-bottom: 24px;
}

/* ── Header bar ─────────────────────────────────────────────── */
.safqa-sc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 14px;
    direction: rtl;
}
.safqa-sc__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f1111;
    direction: rtl;
}
.safqa-sc__title em {
    font-style: normal;
    color: #c7511f;
}
.safqa-sc__more {
    font-size: 13px;
    color: #007185;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 12px;
}
.safqa-sc__more:hover {
    text-decoration: underline;
    color: #c7511f;
}

/* ── Scrollable track ───────────────────────────────────────── */
.safqa-sc__track {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    padding-top: 4px;
    direction: rtl;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    /* allow slight overflow so shadows show */
    padding-inline: 4px;
}
.safqa-sc__track::-webkit-scrollbar {
    display: none;
}

/* ── Each item ──────────────────────────────────────────────── */
.safqa-sc__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-decoration: none !important;
    flex: 0 0 auto;
    width: 128px;
    cursor: pointer;
    transition: transform 0.15s ease;
}
.safqa-sc__item:hover {
    transform: translateY(-2px);
}

/* ── Circle ─────────────────────────────────────────────────── */
.safqa-sc__circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f0c14b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
    position: relative;
}
.safqa-sc__item:hover .safqa-sc__circle {
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transform: scale(1.04);
}
.safqa-sc__circle img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    display: block;
}

/* ── Text-only circle (price deal) ─────────────────────────── */
.safqa-sc__circle--text {
    flex-direction: column;
    gap: 0;
    padding: 8px;
}
.safqa-sc__big {
    font-size: 38px;
    font-weight: 900;
    color: #0f1111;
    line-height: 1;
    text-align: center;
}
.safqa-sc__unit {
    font-size: 13px;
    font-weight: 700;
    color: #0f1111;
    text-align: center;
    line-height: 1.3;
}

/* ── Labels below circle ────────────────────────────────────── */
.safqa-sc__price {
    font-size: 11.5px;
    color: #565959;
    text-align: center;
    direction: rtl;
    line-height: 1.3;
    min-height: 16px;
    white-space: nowrap;
}
.safqa-sc__label {
    font-size: 13px;
    font-weight: 700;
    color: #0f1111;
    text-align: center;
    direction: rtl;
    line-height: 1.3;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Mobile: smaller circles ────────────────────────────────── */
@media (max-width: 767px) {
    .safqa-sc__circle {
        width: 90px;
        height: 90px;
    }
    .safqa-sc__item {
        width: 96px;
    }
    .safqa-sc__title {
        font-size: 16px;
    }
    .safqa-sc__big {
        font-size: 28px;
    }
    .safqa-sc__unit {
        font-size: 11px;
    }
}
