/* ── Flash Sale section (homepage widget) ── */
.flash-sale-section {
    /* Pink block hugs the product grid — only 40px of pink under the last
       row. The whitespace before "Offers For You" comes from margin-bottom
       (outside the section, so transparent) instead of bottom padding,
       so the pink ends where the products end. */
    padding: 48px 0 40px;
    margin-bottom: 80px;
    background: #fff9fb;
    border-top: 3px solid #E61B77;
}

.flash-sale-header {
    margin-bottom: 28px;
}

.flash-discount-badge {
    display: inline-flex;
    align-items: center;
    background: #E61B77;
    color: #fff;
    font-family: "Figtree-Bold";
    font-size: 12px;
    letter-spacing: .04em;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ── Inline countdown (homepage) ── */
.flash-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.flash-countdown .flash-cd-label {
    font-family: "Figtree-SemiBold";
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-right: 4px;
}

.flash-countdown .flash-cd-block {
    display: flex;
    align-items: baseline;
    gap: 3px;
    background: #F3F4F8;
    border-radius: 8px;
    padding: 8px 14px;
}

.flash-countdown .flash-cd-num {
    font-family: "Figtree-ExtraBold";
    font-size: 2rem;
    color: #E61B77;
    line-height: 1;
    min-width: 34px;
    text-align: center;
}

/* Unit labels (h / m / s) — was Figtree-Regular which read thin and
   inconsistent next to the neighbouring "Ends in" label (SemiBold).
   Matched to the label weight so the whole widget speaks one voice. */
.flash-countdown .flash-cd-unit {
    font-family: "Figtree-SemiBold";
    font-size: 14px;
    color: #888;
}

.flash-countdown .flash-cd-sep {
    font-family: "Figtree-Bold";
    font-size: 2rem;
    color: #E61B77;
    margin: 0 2px;
}

@media (max-width: 575.98px) {
    .flash-countdown { flex-wrap: wrap; }
}
