/* ========================================
   INKUPANDA - PROMOTIONS PREMIUM (V3)
   ======================================== */

.promotions {
    background: #fcfcfc;
    padding: 100px 0;
    position: relative;
}

.promotions .container {
    max-width: 1400px; /* On élargit pour laisser respirer les 4 cartes */
}

.promos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes fixes sur desktop */
    gap: 25px;
    margin-top: 50px;
}

.promo-card-v3 {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.promo-card-v3:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(227, 30, 36, 0.15);
    border-color: var(--primary-red);
}

.promo-card-v3.featured {
    background: var(--primary-black);
    color: white;
    border: none;
    transform: scale(1.05);
    z-index: 2;
}

.promo-card-v3.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.promo-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 10px;
    display: block;
    letter-spacing: 2px;
}

.featured .promo-tag {
    color: #ffda00; /* Or pour le pack populaire */
}

.promo-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.promo-visual {
    margin-bottom: 30px;
    position: relative;
}

.promo-visual i {
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.9;
}

.featured .promo-visual i {
    color: white;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.promo-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.featured .promo-list li {
    border-bottom-color: #333;
}

.promo-list li i {
    color: #28a745;
}

.promo-price-box {
    margin-top: auto;
}

.promo-price-box .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.promo-price-box .new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.featured .promo-price-box .new-price {
    color: white;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .promos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .promo-card-v3.featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .promos-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promo-price-box .new-price {
        font-size: 2.5rem;
    }

    .promo-card-v3 {
        padding: 25px 15px;
    }

    .promo-title {
        font-size: 1.3rem;
    }

    .promotions {
        padding: 60px 0;
    }

    .promo-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}
