/**
 * Shop Hero Section Styles
 * 
 * @package LinTeas
 * @version 1.0.0 (Phase 2)
 * 
 * Styles pour la bannière "Thés Chinois Authentiques"
 * Basé sur catalogue-premium.html
 */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.shop-hero {
    background: linear-gradient(135deg, #7FB3A3 0%, #ACD7D2 100%);
    padding: 40px 20px;
    margin-bottom: 0;
}

.shop-hero__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.shop-hero__text {
    flex: 1;
    max-width: 600px;
}

.shop-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.shop-hero__description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
}

/* Stats */
.shop-hero__stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.shop-hero__stat {
    text-align: center;
}

.shop-hero__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
}

.shop-hero__stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
    .shop-hero__content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .shop-hero__text {
        max-width: 100%;
    }
    
    .shop-hero__title {
        font-size: 36px;
    }
    
    .shop-hero__stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .shop-hero {
        padding: 40px 20px;
    }
    
    .shop-hero__title {
        font-size: 28px;
    }
    
    .shop-hero__description {
        font-size: 14px;
    }
    
    .shop-hero__stat-number {
        font-size: 48px;
    }
    
    .shop-hero__stats {
        gap: 30px;
    }
}

