/**
 * ==============================================================================
 * SAAMBROS E-COMMERCE - FLASH DEALS PAGE STYLING
 * ==============================================================================
 */

.flash-hero-banner {
    background: linear-gradient(135deg, #0B0F19 0%, #1A2234 100%);
    color: var(--color-white);
    padding: 3.5rem 0;
    margin-bottom: 3.5rem;
    border-bottom: 3px solid var(--color-primary);
}

.flash-hero-container {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.flash-super-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--color-danger);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.flash-hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.flash-hero-subtitle {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 2rem;
}

/* Big Countdown Display */
.flash-countdown-big {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
}

.cd-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.25rem;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.cd-lbl {
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.cd-sep {
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
}

.flash-products-section {
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .flash-hero-title {
        font-size: 2rem;
    }
    .cd-box {
        min-width: 60px;
        padding: 0.6rem 0.75rem;
    }
    .cd-num {
        font-size: 1.45rem;
    }
}
