/* --- SALE PAGE FOUNDATION --- */

.sale-wrapper {
    padding: 160px 0 100px;
    background: #ffffff;
}


/* --- FLASHY BANNER --- */

.sale-banner {
    background: linear-gradient(135deg, var(--bg) 0%, var(--gray-lightest) 100%);
    border: 2px dashed var(--blue);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.sale-badge-white {
    background: var(--navy);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sale-banner h1 {
    font-size: 4rem;
    margin: 15px 0;
    color: #1e293b;
}

.text-red {
    color: var(--blue);
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.timer-box {
    background: #1e293b;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timer-box span {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.timer-box small {
    font-size: 10px;
    opacity: 0.6;
    text-transform: uppercase;
}


/* --- SALE GRID --- */

.sale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.sale-card {
    background: white;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: 0.4s;
}

.sale-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.sale-visual {
    min-height: 250px;
    background: #f8fafc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.discount-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--navy);
    color: white;
    font-weight: 900;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
    z-index: 2;
}

.sale-visual img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    transition: 0.5s;
}

.sale-card:hover img {
    transform: scale(1.1);
}


/* --- INFO AREA --- */

.sale-info {
    padding: 30px;
    text-align: center;
}

.category-tag {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
}

.sale-info h3 {
    margin: 10px 0;
    font-size: 1.4rem;
    color: #1e293b;
}

.price-stack {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 900;
}

.grab-deal-btn {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: none;
    background: #1e293b;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.grab-deal-btn:hover {
    background: var(--blue);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

@media (max-width: 992px) {
    .sale-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}











