/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    /* Couleurs principales */
    --brand-pink: #e83e8c;
    --brand-pink-dark: #d6336c;
    --brand-pink-soft: #f8d4e4;
    --brand-navy: #1a2a3a;
    --brand-navy-dark: #0d1a2a;
    --brand-navy-light: #2a3a4a;
    --brand-blue: #2c6e9e;
    --brand-blue-soft: #e8f0fe;
    
    /* Couleurs neutres */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Couleurs fonctionnelles */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --error: #ef4444;
    --error-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 10px 30px -10px rgba(232, 62, 140, 0.25);
    --shadow-card: 0 4px 20px -8px rgba(26, 42, 58, 0.15);
    
    /* Bordures */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-navy);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    width: auto;
    max-width: 100%;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-navy);
    transition: color var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-pink);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-pink);
    border-radius: 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Desktop only - cache sur mobile */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    
    .nav {
        display: none !important;
    }
}

/* ============================================
   SELECTEUR DE LANGUE
   ============================================ */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--brand-pink);
    color: white;
}

.lang-btn i:first-child {
    font-size: 1rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown,
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all 0.2s;
    text-decoration: none;
}

.lang-dropdown a:hover {
    background: var(--gray-100);
    color: var(--brand-pink);
}

.lang-dropdown a.active {
    background: var(--brand-pink-soft);
    color: var(--brand-pink);
    font-weight: 500;
}

.lang-dropdown a img {
    width: 20px;
    height: auto;
}

/* ============================================
   USER DROPDOWN
   ============================================ */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn:hover {
    background: var(--brand-pink);
    color: white;
}

.user-btn i:first-child {
    font-size: 1.125rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.user-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: var(--gray-100);
    color: var(--brand-pink);
}

.dropdown-content hr {
    margin: 0.25rem 0;
    border-color: var(--gray-200);
}

/* ============================================
   CART BUTTON
   ============================================ */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--brand-navy);
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: var(--brand-pink);
    color: white;
    transform: translateY(-2px);
}

.cart-btn i {
    font-size: 1.125rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--brand-pink);
    color: white;
    font-size: 0.625rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--brand-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--brand-pink);
    color: white;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

.mobile-nav {
    display: none !important;
    border-top: 1px solid var(--gray-200);
    background: white;
    width: 100%;
}

.mobile-nav.active {
    display: block !important;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-nav-inner a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-navy);
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
}

.mobile-nav-inner a:last-child {
    border-bottom: none;
}

.mobile-nav-inner hr {
    margin: 0.75rem 0;
    border-color: var(--gray-200);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--brand-pink);
    color: var(--brand-pink);
}

.btn-outline:hover {
    background: var(--brand-pink);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand-navy);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-navy-dark);
    transform: translateY(-2px);
}

.btn-pink {
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-pink:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--brand-navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--brand-navy-dark);
}

.btn-light {
    background: white;
    color: var(--brand-navy);
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--brand-navy);
}

.btn-link {
    background: none;
    border: none;
    color: var(--brand-pink);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-link:hover {
    text-decoration: underline;
}

/* ============================================
   ALERTS & FLASH MESSAGES
   ============================================ */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-error {
    background: var(--error-light);
    color: var(--error);
    border-left: 4px solid var(--error);
}

.alert-warning {
    background: var(--warning-light);
    color: var(--warning);
    border-left: 4px solid var(--warning);
}

.alert-info {
    background: var(--info-light);
    color: var(--info);
    border-left: 4px solid var(--info);
}

/* ============================================
   HERO CARROUSSEL
   ============================================ */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
    text-align: left;
    margin: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: var(--brand-pink);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.hero-feature i {
    font-size: 1.125rem;
    color: var(--brand-pink);
}

/* Swiper */
.hero-swiper {
    height: 100%;
}

.hero-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--brand-pink);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--brand-pink);
}

/* ============================================
   RESPONSIVE HERO
   ============================================ */
@media (max-width: 1024px) {
    .hero-slide {
        min-height: 500px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-content {
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 450px;
        background-position: 70% center;
    }
    .hero-overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-features {
        gap: 0.75rem;
    }
    .hero-feature {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    .hero-feature span {
        display: none;
    }
    .hero-feature i {
        font-size: 1rem;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.section-header p {
    margin-top: 0.5rem;
    color: var(--gray-500);
}

.section-tag {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-pink);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.view-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-pink);
    transition: color var(--transition);
}

.view-all:hover {
    text-decoration: underline;
}

/* ============================================
   CATÉGORIES
   ============================================ */
.categories-section {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-pink);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 1.75rem;
    color: var(--brand-pink);
}

.category-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.category-card a {
    color: var(--brand-pink);
    font-weight: 500;
}

/* ============================================
   PRODUITS GRID & CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.promo-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--brand-pink);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    z-index: 2;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-info h3 a {
    color: var(--brand-navy);
    transition: color var(--transition);
}

.product-info h3 a:hover {
    color: var(--brand-pink);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.old-price {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity var(--transition);
}

.btn-add-cart:hover {
    opacity: 0.9;
}

.btn-add-cart-large {
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart-large:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.stock-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--success);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.in-stock {
    color: var(--success);
}

.out-of-stock {
    color: var(--error);
}

.low-stock {
    color: var(--warning);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-detail .product-category {
    font-size: 0.875rem;
    color: var(--brand-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-info-detail h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
}

.stars i {
    font-size: 0.875rem;
}

.product-price-detail {
    margin-bottom: 1rem;
}

.product-price-detail .current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.product-price-detail .old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--gray-500);
    margin-left: 0.5rem;
}

.discount-badge {
    background: var(--brand-pink);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.product-stock {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.product-description {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.product-description h3 {
    margin-bottom: 1rem;
}

.product-description p {
    color: var(--gray-600);
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector label {
    font-size: 0.875rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-decrease,
.qty-increase {
    width: 32px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: var(--brand-pink);
    color: white;
}

.quantity-controls input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    font-size: 0.875rem;
}

.product-meta {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--brand-pink);
}

/* Reviews Section */
.product-reviews {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.product-reviews h3 {
    margin-bottom: 1.5rem;
}

.review-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.review-header strong {
    font-size: 0.875rem;
}

.review-stars {
    color: #fbbf24;
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.review-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.review-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Similar Products */
.similar-products {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.similar-products h3 {
    margin-bottom: 1.5rem;
}

/* ============================================
   PRODUCTS PAGE (SIDEBAR + FILTERS)
   ============================================ */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.products-sidebar {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-pink);
    display: inline-block;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.2s;
}

.filter-list li a:hover,
.filter-list li a.active {
    color: var(--brand-pink);
    padding-left: 0.5rem;
}

.sort-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
}

.search-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.clear-search {
    color: var(--brand-pink);
    font-size: 0.875rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.pagination a:hover,
.pagination a.active {
    background: var(--brand-pink);
    color: white;
    border-color: var(--brand-pink);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page h1,
.checkout-page h1,
.confirmation-page h1,
.contact-page h1,
.about-page h1,
.delivery-page h1,
.promotions-page h1,
.account-page h1,
.login-page h1,
.register-page h1,
.forgot-password-page h1 {
    margin: 2rem 0;
    text-align: center;
}

.empty-cart {
    text-align: center;
    padding: 4rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.empty-cart p {
    margin-bottom: 1rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.cart-items {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--brand-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--brand-pink);
    color: white;
}

.qty-value {
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    margin-left: 0.5rem;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: var(--error);
}

.cart-summary {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-300);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row strong {
    font-size: 1.25rem;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.checkout-form {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.order-summary {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-300);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.125rem;
    border-top: 2px solid var(--gray-300);
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */
.confirmation-card {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.confirmation-icon i {
    font-size: 2.5rem;
    color: var(--success);
}

.confirmation-card h1 {
    margin: 0.5rem 0;
}

.order-details {
    text-align: left;
    margin-top: 2rem;
}

.order-info {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info-card h3,
.contact-form-card h3 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--brand-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-pink);
    font-size: 1rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-pink);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--brand-pink);
}

.value-card h3 {
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   DELIVERY PAGE
   ============================================ */
.delivery-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--gray-600);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.delivery-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.delivery-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.delivery-icon i {
    font-size: 1.75rem;
    color: var(--brand-pink);
}

.delivery-card h3 {
    margin-bottom: 0.5rem;
}

.delivery-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.delivery-zones h3 {
    margin-bottom: 1rem;
}

.delivery-zones ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
}

.delivery-zones ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.delivery-zones ul li i {
    color: var(--success);
}

/* ============================================
   PROMOTIONS PAGE
   ============================================ */
.promotions-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray-600);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.promotion-card {
    background: linear-gradient(135deg, var(--brand-pink-soft), white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.promotion-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-pink);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.promotion-card h3 {
    margin-bottom: 0.5rem;
}

.promotion-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.promotion-date {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ============================================
   ACCOUNT PAGE
   ============================================ */
.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.account-sidebar {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.2s;
}

.account-nav a:hover,
.account-nav a.active {
    background: var(--brand-pink-soft);
    color: var(--brand-pink);
}

.account-nav a i {
    width: 20px;
}

.account-content {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.dashboard-welcome {
    margin-bottom: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.stat-card i {
    font-size: 2rem;
    color: var(--brand-pink);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.recent-orders h3 {
    margin-bottom: 1rem;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.orders-table th {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.orders-table td {
    font-size: 0.875rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: var(--warning-light);
    color: var(--warning);
}

.status-processing {
    background: var(--info-light);
    color: var(--info);
}

.status-shipped {
    background: var(--brand-pink-soft);
    color: var(--brand-pink);
}

.status-delivered {
    background: var(--success-light);
    color: var(--success);
}

.status-cancelled {
    background: var(--error-light);
    color: var(--error);
}

/* Addresses */
.addresses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.address-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
}

.address-type {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand-pink);
    margin-bottom: 0.5rem;
}

.default-badge {
    display: inline-block;
    background: var(--success-light);
    color: var(--success);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.address-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* ============================================
   AUTH PAGES (Login, Register, Forgot Password)
   ============================================ */
.auth-card {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1rem;
}

.auth-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.auth-form input,
.auth-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.auth-form input:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: var(--brand-pink);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.auth-links a {
    font-size: 0.875rem;
    color: var(--brand-pink);
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ============================================
   FORM GROUP GENERIC
   ============================================ */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-pink);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 10% auto;
    max-width: 500px;
    border-radius: var(--radius-lg);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

.modal-content .close:hover {
    color: var(--error);
}

.modal-content h3 {
    padding: 1.5rem 1.5rem 0;
}

.modal-content form {
    padding: 1.5rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.rating-input i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
}

.rating-input i:hover,
.rating-input i.fas {
    color: #fbbf24;
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.error {
    border-left: 4px solid var(--error);
}

.notification i {
    font-size: 1.25rem;
}

.notification.success i {
    color: var(--success);
}

.notification.error i {
    color: var(--error);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-dark));
    color: var(--white);
    padding: 2rem 0;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.promo-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* ============================================
   SECTEURS DESSERVIS
   ============================================ */
.sectors-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sector-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sector-icon i {
    font-size: 2rem;
    color: var(--brand-pink);
}

.sector-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.sector-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--brand-pink-soft);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--gray-600);
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--brand-navy);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   FEATURES & CONTACT
   ============================================ */
.features-contact {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.features-box {
    background: linear-gradient(135deg, var(--brand-blue-soft), var(--white), var(--brand-pink-soft));
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.script-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--brand-pink);
    margin-bottom: 0.5rem;
}

.features-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.contact-box {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark));
    border-radius: var(--radius-2xl);
    padding: 2rem;
    color: var(--white);
}

.contact-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}

.contact-phone:hover {
    color: var(--brand-pink);
}

.contact-phone i {
    color: var(--brand-pink);
}

.contact-address {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.contact-address i {
    color: var(--brand-pink);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark));
    padding: 3rem 0;
    color: var(--white);
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    opacity: 0.8;
}

.newsletter-form {
    min-width: 350px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.newsletter-form button {
    background: var(--brand-pink);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--brand-pink-dark);
}

.newsletter-form small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--brand-navy-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo-white img {
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
    height: 48px;
    width: auto;
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--brand-pink);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 0.875rem;
}

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-pink);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand-pink);
    transform: translateX(5px);
}

.footer-col ul li a:hover i {
    opacity: 1;
}

.contact-info li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    color: var(--brand-pink);
    width: 20px;
    margin-top: 0.125rem;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li a:hover {
    color: var(--brand-pink);
}

/* Footer Badges */
.footer-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.certifications {
    display: flex;
    gap: 1.5rem;
}

.certifications span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.certifications span i {
    color: var(--brand-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-credit i {
    margin: 0 0.25rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--brand-pink);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brand-pink-dark);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 1.125rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .categories-grid,
    .sectors-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .footer-grid,
    .contact-grid,
    .about-grid,
    .cart-grid,
    .checkout-grid,
    .account-layout,
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .view-all {
        display: none;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-inner {
        padding: 0 0.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .cart-btn {
        width: 36px;
        height: 36px;
    }
    
    .lang-btn span:first-of-type {
        display: none;
    }
    
    .lang-btn {
        padding: 0.5rem;
    }
    
    .categories-grid,
    .sectors-grid,
    .testimonials-grid,
    .values-grid,
    .promotions-grid,
    .addresses-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .footer-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-badges {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .delivery-zones ul {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .certifications {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 90%;
    }
    
    .orders-table {
        font-size: 0.75rem;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 0.5rem;
    }
}


/* ============================================
   STYLE PACKAGES - VERSION MODERNE
   ============================================ */

/* Section packages */
.packages-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff9fb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Décoration de fond */
.packages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 62, 140, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.packages-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 42, 58, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Container */
.packages-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* En-tête */
.packages-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.packages-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.12), rgba(232, 62, 140, 0.06));
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-pink, #e83e8c);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(232, 62, 140, 0.2);
    margin-bottom: 1rem;
}

.packages-badge svg {
    width: 14px;
    height: 14px;
}

.packages-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-navy, #1a2a3a);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.packages-title span {
    background: linear-gradient(135deg, var(--brand-pink, #e83e8c), var(--brand-pink-dark, #d6336c));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.packages-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Grille */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Carte package */
.package-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(232, 62, 140, 0.08);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px -12px rgba(232, 62, 140, 0.25);
    border-color: rgba(232, 62, 140, 0.15);
}

/* Image */
.package-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

/* Overlay gradient */
.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.package-card:hover .package-overlay {
    opacity: 0.8;
}

/* Badge promotion */
.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #e83e8c, #d6336c);
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.4);
    z-index: 3;
    letter-spacing: 0.03em;
}

.package-badge svg {
    width: 12px;
    height: 12px;
}

/* Icône catégorie */
.package-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    color: var(--brand-pink, #e83e8c);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    z-index: 3;
    transition: all 0.3s;
}

.package-card:hover .package-icon {
    transform: scale(0.95);
    background: linear-gradient(135deg, #e83e8c, #d6336c);
    color: white;
}

.package-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Titre sur l'image */
.package-title-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 3;
    letter-spacing: -0.02em;
}

/* Contenu */
.package-content {
    padding: 1.5rem;
}

.package-description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Liste des caractéristiques */
.package-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #495057;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #10b981;
}

/* Prix */
.package-price {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.package-current-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-pink, #e83e8c);
    letter-spacing: -0.02em;
}

.package-old-price {
    font-size: 1rem;
    color: #adb5bd;
    text-decoration: line-through;
}

/* Bouton */
.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, #1a2a3a, #0d1a2a);
    border: none;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.package-btn:hover::before {
    left: 100%;
}

.package-btn:hover {
    background: linear-gradient(135deg, #e83e8c, #d6336c);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px rgba(232, 62, 140, 0.4);
}

.package-btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.package-btn:hover svg {
    transform: translateX(4px);
}

/* Animation d'entrée */
.package-item {
    opacity: 0;
    transform: translateY(30px);
    animation: packageFadeInUp 0.6s ease forwards;
}

.package-item:nth-child(1) { animation-delay: 0.1s; }
.package-item:nth-child(2) { animation-delay: 0.2s; }
.package-item:nth-child(3) { animation-delay: 0.3s; }
.package-item:nth-child(4) { animation-delay: 0.4s; }
.package-item:nth-child(5) { animation-delay: 0.5s; }
.package-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes packageFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de brillance au survol */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
    pointer-events: none;
    z-index: 5;
}

.package-card:hover::after {
    left: 150%;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .packages-title {
        font-size: 2rem;
    }
    
    .packages-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .packages-container {
        padding: 0 1rem;
    }
    
    .packages-title {
        font-size: 1.75rem;
    }
    
    .packages-subtitle {
        font-size: 0.875rem;
    }
    
    .packages-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .package-current-price {
        font-size: 1.5rem;
    }
    
    .package-title-overlay {
        font-size: 1.1rem;
    }
    
    .package-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .package-icon svg {
        width: 1rem;
        height: 1rem;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 3rem 0;
    }
    
    .package-content {
        padding: 1.25rem;
    }
    
    .package-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .package-description {
        font-size: 0.8rem;
    }
    
    .package-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}


/* ============================================
   UTILITAIRES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.5rem; }
.p-6 { padding: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

