/* ============================================
   HERO SECTION - Carousel + 2 Carrés
   Aligné avec Trending Products / Top Sales
   ============================================ */

.hero-section-new {
    padding: 12px 20px 12px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 10px;
}

@media (min-width: 769px) {
    .hero-section-new {
        padding: 16px 20px 16px;
        margin-top: 12px;
    }
}

/* ============================================
   CAROUSEL EN HAUT (un peu plus large que les carrés)
   ============================================ */
.hero-carousel-full {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
    .hero-carousel-full {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 36px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

.hero-carousel-full .hero-carousel-slides {
    position: relative;
    width: 100%;
    height: 160px;
}

@media (min-width: 769px) {
    .hero-carousel-full .hero-carousel-slides {
        height: 220px;
    }
}

.hero-carousel-full .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-carousel-full .hero-slide.active {
    opacity: 1;
}

.hero-carousel-full .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-full .hero-slide__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: white;
}

.hero-carousel-full .hero-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.45);
}

.hero-carousel-full .hero-slide__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.hero-carousel-full .hero-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: #1a1a1a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.hero-carousel-full .hero-slide__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.hero-carousel-full .hero-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-carousel-full .hero-carousel-dots .hero-dot,
.hero-carousel-full .hero-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.hero-carousel-full .hero-carousel-dots .hero-dot.active,
.hero-carousel-full .hero-carousel-dots .dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   2 CARRÉS - Classement et Hot Deal
   ============================================ */
.hero-dual-boxes {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr;
    gap: 24px;
    max-width: 100%;
    margin-bottom: 16px;
}

@media (min-width: 769px) {
    .hero-dual-boxes {
        grid-template-columns: 1.35fr 0.8fr;
        gap: 32px;
        margin-bottom: 16px;
    }
}

/* Style identique aux wrappers Trending/Top Sales */
.hero-leaderboard-box,
.hero-dual-boxes .hero-hotdeal-box {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    max-height: 280px;
}

@media (min-width: 769px) {
    .hero-leaderboard-box,
    .hero-dual-boxes .hero-hotdeal-box {
        min-height: 260px;
        max-height: 300px;
    }
}

.hero-leaderboard-box:hover,
.hero-dual-boxes .hero-hotdeal-box:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   CLASSEMENT PARRAINAGE (Carré gauche)
   ============================================ */
.leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(184, 70, 31, 0.15);
}

.leaderboard-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #C62828 0%, #D84315 50%, #E65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.leaderboard-title__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(184, 70, 31, 0.35);
}

.leaderboard-prize {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.35);
}

/* Liste du classement */
.leaderboard-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Item du classement - Style carte produit */
.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    animation: none;
}

.leaderboard-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

/* Rang */
.leaderboard-item__rank {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

.leaderboard-item--1 .leaderboard-item__rank {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #B8461F 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.leaderboard-item--2 .leaderboard-item__rank {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(156, 163, 175, 0.4);
}

.leaderboard-item--3 .leaderboard-item__rank {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

/* Avatar */
.leaderboard-item__avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(184, 70, 31, 0.12) 0%, rgba(216, 90, 46, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #B8461F;
    flex-shrink: 0;
}

/* Infos */
.leaderboard-item__info {
    flex: 1;
    min-width: 0;
}

.leaderboard-item__name {
    font-size: 13px;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 2px;
}

.leaderboard-item__count {
    font-size: 11px;
    color: #86868B;
    display: flex;
    align-items: center;
    gap: 4px;
}

.leaderboard-item__count i {
    color: #B8461F;
    font-size: 10px;
}

/* Prix */
.leaderboard-item__prize {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.leaderboard-item__prize-amount {
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leaderboard-item__prize-label {
    font-size: 9px;
    color: #86868B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Barre de progression mini */
.leaderboard-item__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8461F 0%, #D85A2E 100%);
    border-radius: 0 3px 0 0;
    transition: width 0.5s ease;
}

/* État vide */
.leaderboard-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.leaderboard-empty__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 70, 31, 0.1) 0%, rgba(216, 90, 46, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 14px;
}

.leaderboard-empty__text {
    font-size: 14px;
    color: #86868B;
    margin-bottom: 18px;
    line-height: 1.5;
}

.leaderboard-empty__btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.35);
}

.leaderboard-empty__btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 70, 31, 0.45);
}

/* Footer avec objectif */
.leaderboard-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leaderboard-footer__target {
    font-size: 12px;
    color: #86868B;
}

.leaderboard-footer__target span {
    font-weight: 700;
    color: #B8461F;
}

.leaderboard-footer__btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(184, 70, 31, 0.35);
}

.leaderboard-footer__btn:hover {
    transform: translateX(4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 70, 31, 0.45);
}

/* ============================================
   HOT DEALS (Carré droit) - Style identique à Top Sponsors
   ============================================ */

.hero-dual-boxes .hero-hotdeal-box {
    display: flex;
    flex-direction: column;
    padding: 16px;
    align-items: center;
}

/* Header identique à leaderboard-header */
.hero-dual-boxes .hotdeal-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(184, 70, 31, 0.15);
    width: 100%;
}

.hero-dual-boxes .hotdeal-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #C62828 0%, #D84315 50%, #E65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.hero-dual-boxes .hotdeal-title__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(184, 70, 31, 0.35);
}

/* Timer badge tout à droite */
.hero-dual-boxes .hotdeal-timer-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(184, 70, 31, 0.1) 0%, rgba(139, 47, 15, 0.05) 100%);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    color: #B8461F;
    margin-left: auto !important;
    flex-shrink: 0;
}

.hero-dual-boxes .hotdeal-timer-badge i {
    font-size: 8px;
    color: #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   CARTE PRODUIT HOT DEAL - Centrée
   ============================================ */
.hero-dual-boxes .hotdeal-product-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    width: 95%;
    max-width: 280px;
}

.hero-dual-boxes .hotdeal-product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Image container */
.hero-dual-boxes .hotdeal-card-image {
    position: relative;
    width: 100%;
    height: 160px;
    max-height: 160px;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dual-boxes .hotdeal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    padding: 0;
}

.hero-dual-boxes .hotdeal-product-card:hover .hotdeal-card-image img {
    transform: scale(1.05);
}

/* Badge discount */
.hero-dual-boxes .hotdeal-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(184, 70, 31, 0.4);
}

/* Info produit */
.hero-dual-boxes .hotdeal-card-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Rating */
.hero-dual-boxes .hotdeal-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-dual-boxes .hotdeal-card-rating .stars {
    color: #fbbf24;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.hero-dual-boxes .hotdeal-card-rating .rating-count {
    color: #999;
    font-size: 10px;
}

/* Titre */
.hero-dual-boxes .hotdeal-card-title {
    font-size: 12px;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Prix */
.hero-dual-boxes .hotdeal-card-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.hero-dual-boxes .hotdeal-card-prices .price-new {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #B8461F 0%, #8B2F0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-dual-boxes .hotdeal-card-prices .price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

/* Desktop - Hot Deal carte produit */
@media (min-width: 769px) {
    .hero-dual-boxes .hero-hotdeal-box {
        padding: 16px;
    }
    
    .hero-dual-boxes .hotdeal-title {
        font-size: 18px;
    }
    
    .hero-dual-boxes .hotdeal-timer-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .hero-dual-boxes .hotdeal-card-image {
        height: 130px;
        max-height: 130px;
    }
    
    .hero-dual-boxes .hotdeal-card-info {
        padding: 10px;
    }
    
    .hero-dual-boxes .hotdeal-card-title {
        font-size: 13px;
    }
    
    .hero-dual-boxes .hotdeal-card-prices .price-new {
        font-size: 16px;
    }
}

/* ============================================
   RESPONSIVE - Tablette
   ============================================ */
@media (max-width: 900px) {
    .hero-section-new {
        padding: 12px 16px 24px;
    }
    
    .hero-carousel-full .hero-carousel-slides {
        height: 180px;
    }
    
    .hero-carousel-full .hero-slide__title {
        font-size: 22px;
    }
    
    .hero-carousel-full .hero-slide__overlay {
        padding: 20px;
    }
    
    .hero-dual-boxes {
        gap: 14px;
    }
    
    .hero-leaderboard-box,
    .hero-dual-boxes .hero-hotdeal-box {
        min-height: 220px;
        max-height: 260px;
        padding: 14px;
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
    .hero-section-new {
        padding: 8px 0 12px;
        margin-top: 8px;
    }
    
    .hero-carousel-full {
        margin-bottom: 14px;
    }
    
    .hero-carousel-full .hero-carousel-slides {
        height: 140px;
    }
    
    .hero-carousel-full .hero-slide__overlay {
        padding: 14px;
    }
    
    .hero-carousel-full .hero-slide__badge {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .hero-carousel-full .hero-slide__title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-carousel-full .hero-slide__btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero-dual-boxes {
        gap: 10px;
        padding: 0 12px;
    }
    
    .hero-leaderboard-box,
    .hero-dual-boxes .hero-hotdeal-box {
        min-height: 200px;
        max-height: 240px;
        padding: 12px;
        border-radius: 14px;
    }
    
    .hero-dual-boxes .hotdeal-card-image {
        height: 110px;
        max-height: 110px;
    }
    
    /* Leaderboard mobile */
    .leaderboard-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .leaderboard-title {
        font-size: 16px;
        gap: 8px;
    }
    
    .leaderboard-title__icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .leaderboard-prize {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .leaderboard-list {
        gap: 8px;
    }
    
    .leaderboard-item {
        padding: 10px 12px;
        border-radius: 8px;
        gap: 10px;
    }
    
    .leaderboard-item__rank {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    .leaderboard-item__avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .leaderboard-item__name {
        font-size: 12px;
    }
    
    .leaderboard-item__count {
        font-size: 10px;
    }
    
    .leaderboard-item__prize-amount {
        font-size: 13px;
    }
    
    .leaderboard-item__prize-label {
        font-size: 8px;
    }
    
    .leaderboard-footer {
        margin-top: 12px;
        padding-top: 10px;
    }
    
    .leaderboard-footer__target {
        font-size: 10px;
    }
    
    .leaderboard-footer__btn {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    /* Hot Deal mobile - Carte produit */
    .hero-dual-boxes .hotdeal-header {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 8px;
        padding-bottom: 6px;
        gap: 6px;
    }
    
    .hero-dual-boxes .hotdeal-header-top {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    
    .hero-dual-boxes .hotdeal-title {
        font-size: 13px;
        gap: 5px;
    }
    
    .hero-dual-boxes .hotdeal-title__icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    .hero-dual-boxes .hotdeal-timer-badge {
        font-size: 9px;
        padding: 3px 7px;
        margin-left: 0 !important;
    }
    
    .hero-dual-boxes .hotdeal-card-image {
        height: 85px;
        max-height: 85px;
    }
    
    .hero-dual-boxes .hotdeal-discount-badge {
        padding: 3px 6px;
        font-size: 9px;
        top: 6px;
        left: 6px;
    }
    
    .hero-dual-boxes .hotdeal-card-info {
        padding: 8px;
        gap: 4px;
    }
    
    .hero-dual-boxes .hotdeal-card-rating .stars {
        font-size: 9px;
    }
    
    .hero-dual-boxes .hotdeal-card-rating .rating-count {
        font-size: 8px;
    }
    
    .hero-dual-boxes .hotdeal-card-title {
        font-size: 11px;
    }
    
    .hero-dual-boxes .hotdeal-card-prices .price-new {
        font-size: 13px;
    }
    
    .hero-dual-boxes .hotdeal-card-prices .price-old {
        font-size: 10px;
    }
    
    /* Empty state mobile */
    .leaderboard-empty {
        padding: 14px;
    }
    
    .leaderboard-empty__icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .leaderboard-empty__text {
        font-size: 12px;
    }
    
    .leaderboard-empty__btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - Petit mobile
   ============================================ */
@media (max-width: 480px) {
    .hero-carousel-full .hero-carousel-slides {
        height: 120px;
    }
    
    .hero-carousel-full .hero-slide__overlay {
        padding: 12px;
    }
    
    .hero-carousel-full .hero-slide__title {
        font-size: 16px;
    }
    
    .hero-carousel-full .hero-slide__btn {
        padding: 6px 14px;
        font-size: 10px;
    }
    
    .hero-carousel-full .hero-slide__badge {
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .hero-dual-boxes {
        gap: 8px;
        padding: 0 10px;
    }
    
    .hero-leaderboard-box,
    .hero-dual-boxes .hero-hotdeal-box {
        min-height: 180px;
        max-height: 220px;
        padding: 10px;
    }
    
    .hero-dual-boxes .hotdeal-card-image {
        height: 90px;
        max-height: 90px;
    }
    
    .leaderboard-item {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .leaderboard-item__rank {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .leaderboard-item__avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .leaderboard-item__name {
        font-size: 11px;
    }
    
    .leaderboard-item__count {
        font-size: 9px;
    }
    
    .leaderboard-item__prize-amount {
        font-size: 12px;
    }
    
    /* Hot Deal petit mobile - Carte produit */
    .hero-dual-boxes .hotdeal-title {
        font-size: 11px;
        gap: 4px;
    }
    
    .hero-dual-boxes .hotdeal-title__icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
        border-radius: 5px;
    }
    
    .hero-dual-boxes .hotdeal-timer-badge {
        font-size: 8px;
        padding: 2px 5px;
    }
    
    .hero-dual-boxes .hotdeal-card-image {
        height: 65px;
        max-height: 65px;
    }
    
    .hero-dual-boxes .hotdeal-discount-badge {
        padding: 2px 5px;
        font-size: 8px;
        top: 4px;
        left: 4px;
    }
    
    .hero-dual-boxes .hotdeal-card-info {
        padding: 6px;
        gap: 3px;
    }
    
    .hero-dual-boxes .hotdeal-card-rating {
        display: none;
    }
    
    .hero-dual-boxes .hotdeal-card-title {
        font-size: 10px;
        -webkit-line-clamp: 1;
    }
    
    .hero-dual-boxes .hotdeal-card-prices .price-new {
        font-size: 12px;
    }
    
    .hero-dual-boxes .hotdeal-card-prices .price-old {
        font-size: 9px;
    }
}
