/* ===================================
   GLAMOUR PARFUMS - STYLE LUXUEUX
   =================================== */

/* Variables CSS */
:root {
    /* Palette de couleurs - Luxe Oriental */
    --gold: #d4af37;
    --gold-light: #e8c547;
    --gold-dark: #b8941f;
    --black: #0a0a0a;
    --black-light: #141414;
    --black-lighter: #1a1a1a;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --white: #ffffff;
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Espacements */
    --section-padding: 120px;
    --container-width: 1280px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Effets */
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   PARTICLES & EFFETS DE FOND
   =================================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===================================
   LOGO - AMÉLIORÉ ET RESPONSIVE
   =================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: clamp(32px, 5vw, 44px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
    animation: logoPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Animation pulse améliorée */
@keyframes logoPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
        filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.65));
    }
}

/* Effet hover sur le logo */
.logo:hover .logo-img {
    animation: none;
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.7));
}

/* Light mode logo */
body.light-mode .logo {
    color: var(--gold-dark);
}

body.light-mode .logo-img {
    filter: drop-shadow(0 0 8px rgba(184, 148, 31, 0.4));
}

body.light-mode .logo:hover .logo-img {
    filter: drop-shadow(0 0 14px rgba(184, 148, 31, 0.6));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    z-index: -2;
}

.smoke-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><filter id="smoke"><feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="3" result="noise"/><feDisplacementMap in="SourceGraphic" in2="noise" scale="100"/></filter><rect width="100%" height="100%" filter="url(%23smoke)" opacity="0.3"/></svg>');
    opacity: 0.4;
    animation: smoke 20s infinite linear;
    z-index: -1;
}

@keyframes smoke {
    0% { transform: translateX(0) translateY(0) scale(1); }
    50% { transform: translateX(-20px) translateY(-10px) scale(1.05); }
    100% { transform: translateX(0) translateY(0) scale(1); }
}

.gold-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: dust 15s infinite ease-in-out;
    z-index: -1;
}

@keyframes dust {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-title .highlight {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cream-dark);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-medium);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   SECTIONS COMMUNES
   =================================== */
.collections,
.popular-section,
.about-section,
.contact-section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--cream-dark);
    font-size: 1.1rem;
}

/* ===================================
   COLLECTIONS & PRODUITS
   =================================== */
.collections {
    background: var(--black-light);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* ===================================
   DELIVERY SELECTOR & PRICE STYLING
   =================================== */
.delivery-selector-container {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.delivery-selector-container:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.15);
}

.delivery-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--cream);
}

.delivery-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.select-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 320px;
}

.select-wrapper select {
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    color: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 35px 10px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--gold);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Dynamic price breakdown styling */
.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-price .global-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.product-price .price-breakdown {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.6);
    font-weight: 400;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .delivery-selector-container {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .select-wrapper {
        max-width: 100%;
    }
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--black-lighter);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-gold), var(--shadow-deep);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-medium);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view,
.add-to-cart {
    padding: 12px 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.quick-view {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
}

.quick-view:hover {
    background: var(--cream);
    color: var(--black);
}

.add-to-cart {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.add-to-cart:hover {
    background: var(--gold-light);
    box-shadow: var(--glow-gold);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-notes {
    font-size: 0.85rem;
    color: var(--cream-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

/* ===================================
   SECTION IMMERSIVE
   =================================== */
.immersive-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.immersive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, var(--black-light) 0%, var(--black) 50%, var(--black-light) 100%);
    z-index: -1;
}

.floating-fragrance {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 25%);
    animation: fragranceFloat 20s infinite ease-in-out;
}

@keyframes fragranceFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(30px, -20px) scale(1.1); opacity: 0.8; }
    66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.6; }
}

.immersive-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.immersive-icon {
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 30px;
    animation: rotate 10s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.immersive-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
}

.immersive-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--cream-dark);
    margin-bottom: 50px;
}

.immersive-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream-dark);
}

/* ===================================
   CAROUSEL POPULAIRE
   =================================== */
.popular-section {
    background: var(--black);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .carousel-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 25%;
    }
}

.popular-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.popular-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.popular-card:hover img {
    transform: scale(1.1);
}

.popular-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
}

.popular-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.popular-info p {
    font-size: 0.85rem;
    color: var(--cream-dark);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.8);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===================================
   À PROPOS
   =================================== */
.about-section {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    border-radius: 10px;
}

.frame-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text {
    color: var(--cream-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.5rem;
}

/* ===================================
   CONTACT
   =================================== */
.contact-section {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-text {
    color: var(--cream-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--cream-dark);
    font-size: 0.9rem;
}

/* Formulaire */
.contact-form {
    background: var(--black-lighter);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--cream-dark);
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group textarea:valid {
    border-bottom-color: var(--gold);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 0.75rem;
    color: var(--gold);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black-lighter);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--cream-dark);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--cream-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--cream-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--cream-dark);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--cream-dark);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--cream-dark);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===================================
   PANIER MODAL
   =================================== */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
}

.cart-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--black-light);
    transform: translateX(100%);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.cart-modal.active .cart-content {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: var(--cream-dark);
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #ff4444;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.cart-total span:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    transition: var(--transition-medium);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===================================
   ANIMATIONS AU SCROLL
   =================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: var(--transition-medium);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .immersive-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .carousel-slide {
        min-width: 50%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        min-width: 100%;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ===================================
   SCROLLBAR PERSONNALISÉE
   =================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===================================
   PACK OFFER BANNER
   =================================== */
.pack-offer-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pack-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pack-offer-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--black);
}

.pack-badge {
    display: inline-block;
    background: var(--black);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pack-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pack-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.pack-description strong {
    background: var(--black);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 5px;
}

.pack-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-separator {
    font-size: 2rem;
    font-weight: 300;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.price-note {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack-economy {
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0,0,0,0.1);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: 10px;
}

/* ===================================
   CART SUMMARY BAR - AMÉLIORÉ
   =================================== */
.cart-summary-bar {
    background: linear-gradient(135deg, var(--black-lighter) 0%, rgba(30, 30, 30, 0.95) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 40px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: sticky;
    top: 100px;
    z-index: 100;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        var(--glow-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animation d'entrée */
.cart-summary-bar.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.cart-summary-bar.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cart-summary-bar.has-selection {
    animation: glow-pulse-enhanced 2s ease-in-out infinite;
    border-color: var(--gold-light);
}

@keyframes glow-pulse-enhanced {
    0%, 100% { 
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(212, 175, 55, 0.3),
            0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.5),
            0 0 0 2px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.5);
    }
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.summary-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.summary-count {
    font-weight: 500;
    white-space: nowrap;
}

#selected-count {
    color: var(--gold);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.summary-divider {
    color: var(--gold-dark);
    opacity: 0.6;
}

.summary-price {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.summary-promo {
    margin-top: 4px;
}

.promo-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: promo-pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    white-space: nowrap;
}

@keyframes promo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); }
}

#order-btn {
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 40px);
    white-space: nowrap;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    min-height: 48px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#order-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--black-light);
    border-color: rgba(212, 175, 55, 0.2);
}

#order-btn:not(:disabled) {
    animation: btn-ready-enhanced 1.5s ease-in-out infinite;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    font-weight: 600;
}

@keyframes btn-ready-enhanced {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.3);
    }
}

#order-btn:not(:disabled):hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

/* Light mode cart summary bar */
body.light-mode .cart-summary-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-color: var(--gold);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.15);
}

body.light-mode .cart-summary-bar.has-selection {
    animation: glow-pulse-light 2s ease-in-out infinite;
}

@keyframes glow-pulse-light {
    0%, 100% { 
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(212, 175, 55, 0.4),
            0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% { 
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.15),
            0 0 0 2px rgba(212, 175, 55, 0.5),
            0 0 35px rgba(212, 175, 55, 0.3);
    }
}

body.light-mode #order-btn:not(:disabled) {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

body.light-mode #selected-count {
    color: var(--gold-dark);
}

/* ===================================
   PRODUCT SELECTION STATES
   =================================== */
.product-card {
    position: relative;
    transition: var(--transition-medium);
}

.product-card.selected {
    border: 2px solid var(--gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-10px);
}

.product-card.selected .selected-indicator {
    opacity: 1;
    transform: scale(1);
}

.selected-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-fast);
    z-index: 10;
}

.select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 5px;
    margin-top: 10px;
}

.select-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

.select-btn.selected {
    background: #22c55e;
    color: white;
}

.select-btn.selected .select-icon::before {
    content: '✓';
}

.product-card.selected .select-btn {
    background: #22c55e;
    color: white;
}

/* Animation lors de la sélection */
@keyframes select-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.product-card.selecting {
    animation: select-pop 0.3s ease;
}

/* ===================================
   ORDER MODAL
   =================================== */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.order-content {
    position: relative;
    background: var(--black-light);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: var(--transition-medium);
}

.order-modal.active .order-content {
    transform: scale(1);
}

.order-header {
    text-align: center;
    margin-bottom: 30px;
}

.order-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.order-header p {
    color: var(--cream-dark);
}

.order-items {
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.order-item-name {
    font-weight: 500;
}

.order-item-price {
    color: var(--gold);
    font-weight: 600;
}

.order-summary {
    background: var(--black-lighter);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.order-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-line.total {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid var(--gold);
    margin-top: 15px;
}

.promo-savings {
    color: #22c55e;
    font-size: 0.9rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form .form-group {
    margin-bottom: 0;
}

.order-form input,
.order-form textarea {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    background: var(--black);
    color: var(--cream);
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Sélecteur de destination dans le modal commande */
.modal-destination-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gold);
}

.modal-destination-select {
    width: 100%;
    padding: 12px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--cream);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s, background 0.5s ease, color 0.5s ease;
}

.modal-destination-select:focus {
    border-color: var(--gold);
}



.order-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.order-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 80px 30px 40px;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }

    body.light-mode .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .pack-pricing {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-separator {
        transform: rotate(90deg);
    }
    
    /* Cart Summary Bar - Tablette */
    .cart-summary-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 18px 25px;
        position: sticky;
        top: 90px;
        margin-top: 10px;
    }
    
    .cart-summary-bar .summary-content {
        flex: 1 1 auto;
        min-width: 200px;
    }
    
    .cart-summary-bar .summary-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cart-summary-bar .summary-divider {
        display: inline;
    }
    
    #order-btn {
        min-width: 180px;
    }
}

/* ===================================
   THEME TOGGLE - DAY/NIGHT MODE
   =================================== */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    transform: scale(1.1);
}

.theme-icon {
    position: absolute;
    font-size: 1.3rem;
    transition: var(--transition-medium);
}

.theme-icon.sun {
    opacity: 0;
    transform: translateY(20px) rotate(90deg);
}

.theme-icon.moon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Mode Jour - Light Mode */
body.light-mode {
    --black: #f5f0e8;
    --black-light: #ffffff;
    --black-lighter: #faf8f5;
    --cream: #1a1a1a;
    --cream-dark: #333333;
    --cream-darker: #555555;
    --gold: #b8941f;
    --gold-light: #d4af37;
    --gold-dark: #8a6d12;
    --glow-gold: 0 0 30px rgba(184, 148, 31, 0.2);
    --shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--black);
    color: var(--cream);
}

body.light-mode .header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    border-bottom: 1px solid rgba(184, 148, 31, 0.2);
}

body.light-mode .product-card {
    background: var(--black-lighter);
    border: 1px solid rgba(184, 148, 31, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .product-card:hover {
    box-shadow: var(--glow-gold), 0 15px 35px rgba(0, 0, 0, 0.1);
}

body.light-mode .hero-bg {
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.25) 0%, transparent 70%),
        linear-gradient(180deg, #f5f0e8 0%, #ffffff 100%);
}

body.light-mode .collections {
    background: #ffffff;
}

body.light-mode .about-section {
    background: #faf8f5;
}

body.light-mode .footer {
    background: #ffffff;
    border-top: 1px solid rgba(184, 148, 31, 0.15);
}

body.light-mode .cart-summary-bar {
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1), var(--glow-gold);
}

body.light-mode .order-content,
body.light-mode .contact-form {
    background: #ffffff;
    border: 1px solid rgba(184, 148, 31, 0.2);
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: #faf8f5;
    color: var(--cream);
    border-bottom-color: rgba(184, 148, 31, 0.3);
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    border-bottom-color: var(--gold);
}

body.light-mode .theme-icon.sun {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

body.light-mode .theme-icon.moon {
    opacity: 0;
    transform: translateY(-20px) rotate(-90deg);
}

body.light-mode .particle {
    background: var(--gold-dark);
    box-shadow: 0 0 8px var(--gold);
}

/* Mode Jour - Sélecteur de destination */
body.light-mode .delivery-selector-container {
    background: rgba(245, 240, 232, 0.8);
    border: 1px solid rgba(184, 148, 31, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .delivery-selector-container:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 25px rgba(184, 148, 31, 0.15);
}

body.light-mode .delivery-label {
    color: #1a1a1a;
}

body.light-mode .select-wrapper select {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(184, 148, 31, 0.3);
}

body.light-mode .select-wrapper select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(184, 148, 31, 0.15);
}

body.light-mode .select-wrapper::after {
    color: var(--gold);
}

/* Mode Jour - Sélecteur de destination dans le modal commande */
body.light-mode .modal-destination-label {
    color: var(--gold-dark);
}

body.light-mode .modal-destination-select {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(184, 148, 31, 0.35);
}

body.light-mode .modal-destination-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(184, 148, 31, 0.15);
}

body.light-mode .modal-destination-select option {
    background: #ffffff;
    color: #1a1a1a;
}


/* Transition douce pour tous les éléments */
body, 
body * {
    transition: background-color 0.5s ease, 
                color 0.5s ease, 
                border-color 0.5s ease,
                box-shadow 0.5s ease;
}


/* ===================================
   PAGES LÉGALES - SEO OPTIMISÉ
   =================================== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

/* Breadcrumb SEO */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.breadcrumb ol {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--gold);
}

.breadcrumb a {
    color: var(--cream-dark);
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* Legal Content Structure */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 20px 0 10px;
}

.legal-updated {
    color: var(--cream-dark);
    font-size: 0.9rem;
    font-style: italic;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.legal-card {
    background: var(--black-lighter);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.legal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin: 25px 0 15px;
}

.legal-card h3:first-child {
    margin-top: 0;
}

.legal-card ul {
    list-style: none;
    padding-left: 0;
}

.legal-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.legal-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.legal-card ul.no-collect li::before {
    content: '✓';
    color: #22c55e;
}

/* Highlight Card */
.legal-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.commitment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.commitment-badges .badge {
    background: var(--gold);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.data-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.data-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: var(--black);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.right-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.right-item h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 10px;
}

.right-item p {
    font-size: 0.9rem;
    color: var(--cream-dark);
}

/* How to Exercise */
.how-to-exercise {
    background: var(--black);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid var(--gold);
}

/* Security List */
.security-list {
    list-style: none !important;
}

.security-list li {
    padding: 12px 0 !important;
    padding-left: 35px !important;
    font-size: 1rem;
}

.security-list li::before {
    display: none !important;
}

/* Contact Big */
.contact-legal.big {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.contact-legal.big p {
    font-size: 1.2rem;
    margin: 15px 0;
}

.response-time {
    text-align: center;
    color: var(--gold);
    margin-top: 20px;
    font-weight: 500;
}

/* Legal Footer */
.legal-footer {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-card {
        padding: 20px;
    }
    
    .data-table {
        font-size: 0.8rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb ol {
        flex-wrap: wrap;
    }
}

/* Light Mode Legal Pages */
body.light-mode .legal-card {
    background: #ffffff;
    border: 1px solid rgba(184, 148, 31, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .data-table th {
    background: rgba(184, 148, 31, 0.1);
}

body.light-mode .right-item,
body.light-mode .how-to-exercise {
    background: #faf8f5;
}

body.light-mode .contact-legal.big {
    background: rgba(184, 148, 31, 0.05);
}

/* Print Styles */
@media print {
    .header, .theme-toggle, .mobile-toggle, .footer {
        display: none;
    }
    
    .legal-page {
        padding: 40px 0;
    }
    
    .legal-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}




/* ===================================
   CAROUSEL POPULAIRE - ANIMATIONS AMÉLIORÉES
   =================================== */

/* Animation d'entrée des cartes */
.carousel-slide {
    min-width: 100%;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.carousel-slide:nth-child(1) { animation-delay: 0.1s; }
.carousel-slide:nth-child(2) { animation-delay: 0.2s; }
.carousel-slide:nth-child(3) { animation-delay: 0.3s; }
.carousel-slide:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carte populaire améliorée */
.popular-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.popular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.popular-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.popular-card:hover::before {
    left: 100%;
}

.popular-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popular-card:hover img {
    transform: scale(1.15);
}

/* Info overlay amélioré avec animation */
.popular-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.popular-card:hover .popular-info {
    transform: translateY(0);
    opacity: 1;
    padding-bottom: 30px;
}

.popular-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.popular-card:hover .popular-info h4 {
    transform: translateY(0);
    opacity: 1;
}

.popular-info p {
    font-size: 0.9rem;
    color: var(--gold);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.15s;
}

.popular-card:hover .popular-info p {
    transform: translateY(0);
    opacity: 1;
}

/* Boutons carousel améliorés */
.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.carousel-btn:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-btn:hover {
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.carousel-btn:hover svg {
    color: var(--black);
    transform: translateX(3px);
}

.carousel-btn.prev:hover svg {
    transform: translateX(-3px);
}

/* Dots améliorés */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Transition fluide entre slides */
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .carousel-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 25%;
    }
    
    .popular-card {
        border-radius: 20px;
    }
}

/* ===================================
   RESPONSIVE MOBILE - CORRECTIONS
   =================================== */

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero */
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    /* Grille produits */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-image {
        aspect-ratio: 3/4;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    /* Filtres scrollables */
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 12px 18px;
        font-size: 0.8rem;
        min-height: 44px;
    }
    
    /* Cart Summary Bar fixe en bas - AMÉLIORÉ */
    #cart-summary-bar.cart-summary-bar {
        position: fixed !important;
        bottom: 10px !important;
        left: 10px !important;
        right: 10px !important;
        top: auto !important;
        border-radius: 16px !important;
        padding: 14px 18px 14px 18px !important;
        z-index: 999 !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-bottom: none !important;
        border-top: 2px solid var(--gold) !important;
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4), 0 -2px 15px rgba(212, 175, 55, 0.15) !important;
        animation: slideUpBar 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        min-height: 75px;
        max-width: calc(100% - 20px);
    }
    
    @keyframes slideUpBar {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    #cart-summary-bar .summary-content {
        flex: 1;
        min-width: 0;
        gap: 4px;
    }
    
    #cart-summary-bar .summary-info {
        flex-direction: row;
        gap: 8px;
        font-size: 0.85rem;
        flex-wrap: wrap;
        line-height: 1.4;
        overflow: hidden;
    }
    
    #cart-summary-bar .summary-count {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        font-size: 0.85rem;
    }
    
    #cart-summary-bar #selected-count {
        font-size: 1.1rem;
        color: var(--gold);
        font-weight: 700;
    }
    
    #cart-summary-bar .summary-price {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--gold);
        white-space: nowrap;
    }
    
    #cart-summary-bar .summary-divider {
        color: var(--gold-dark);
        display: none;
    }
    
    #cart-summary-bar .summary-promo {
        margin-top: 2px;
        font-size: 0.7rem;
    }
    
    #cart-summary-bar .promo-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
        border-radius: 12px;
    }
    
    #cart-summary-bar .btn {
        padding: 12px 20px;
        font-size: 0.75rem;
        min-height: 48px;
        white-space: nowrap;
        flex-shrink: 0;
        letter-spacing: 0.5px;
        border-radius: 10px;
    }
    
    /* Animation d'apparition du bouton commander */
    #cart-summary-bar .btn:not(:disabled) {
        animation: btnPulseMobile 1.5s ease-in-out infinite;
    }
    
    @keyframes btnPulseMobile {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
        }
        50% { 
            transform: scale(1.02);
            box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.3);
        }
    }
    
    /* Lighmode mobile */
    body.light-mode #cart-summary-bar.cart-summary-bar {
        background: rgba(255, 255, 255, 0.98) !important;
        border-top: 2px solid var(--gold) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15), 0 -2px 20px rgba(212, 175, 55, 0.15) !important;
    }
    
    body {
        padding-bottom: 100px;
    }
    
    /* Order Modal */
    .order-content {
        width: 92%;
        max-width: none;
        margin: 15px auto;
        padding: 20px;
        border-radius: 12px;
    }
    
    .order-form input,
    .order-form textarea {
        font-size: 16px;
        padding: 14px;
    }
    
    /* Carousel dots */
    .dot {
        width: 12px;
        height: 12px;
        min-height: 44px;
        min-width: 44px;
        background-clip: content-box;
        padding: 16px;
        box-sizing: content-box;
    }
    
    /* Toast */
    .toast {
        bottom: 100px;
        left: 15px;
        right: 15px;
        transform: translateY(100px);
        width: auto;
        text-align: center;
        font-size: 0.85rem;
        padding: 12px 18px;
        border-radius: 8px;
    }
    
    /* Stats */
    .immersive-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* About */
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
        gap: 5px;
    }
    
    /* Contact */
    .contact-details {
        gap: 15px;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        background: rgba(212, 175, 55, 0.05);
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-radius: 12px;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    /* Animation d'entrée staggered quand revealed */
    .contact-item.reveal-on-scroll {
        opacity: 0;
        transform: translateX(-30px);
    }
    
    .contact-item.reveal-on-scroll.revealed {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .contact-item.reveal-on-scroll.revealed:nth-child(1) { transition-delay: 0.1s; }
    .contact-item.reveal-on-scroll.revealed:nth-child(2) { transition-delay: 0.2s; }
    .contact-item.reveal-on-scroll.revealed:nth-child(3) { transition-delay: 0.3s; }
    
    .contact-item:active {
        transform: scale(0.98);
        background: rgba(212, 175, 55, 0.1);
    }
    
    .contact-item .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.3rem;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .contact-item:active .contact-icon {
        transform: scale(1.1);
        background: rgba(212, 175, 55, 0.25);
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-grid {
        gap: 25px;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    /* Navigation mobile */
    .nav-menu {
        max-width: 280px;
        padding: 60px 20px 20px;
    }
    
    .nav-actions {
        gap: 10px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    /* Boutons */
    .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
        letter-spacing: 1px;
        min-height: 44px;
    }
    
    /* Header */
    .header {
        height: 70px;
    }
    
    .header.scrolled {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .mobile-toggle {
        width: 44px;
        height: 44px;
        justify-content: center;
        gap: 6px;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* Pack banner */
    .pack-title {
        font-size: 1.4rem;
    }
    
    .pack-price {
        font-size: 1.6rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Tres petits ecrans */
@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    /* Cart Summary Bar - Très petits écrans */
    #cart-summary-bar.cart-summary-bar {
        left: 8px !important;
        right: 8px !important;
        bottom: 8px !important;
        padding: 12px 14px !important;
        min-height: 68px;
        gap: 8px;
        border-radius: 14px !important;
    }
    
    #cart-summary-bar .summary-content {
        gap: 3px;
        min-width: 0;
        flex: 1;
    }
    
    #cart-summary-bar .summary-info {
        font-size: 0.8rem;
        gap: 6px;
        flex-direction: row;
        align-items: center;
    }
    
    #cart-summary-bar .summary-count {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    #cart-summary-bar #selected-count {
        font-size: 1rem;
    }
    
    #cart-summary-bar .summary-price {
        font-size: 1.05rem;
        white-space: nowrap;
    }
    
    #cart-summary-bar .btn {
        padding: 10px 14px;
        font-size: 0.7rem;
        min-height: 44px;
        letter-spacing: 0.3px;
        white-space: nowrap;
        border-radius: 8px;
    }
    
    /* Logo très petits écrans */
    .logo {
        gap: 6px;
    }
    
    .logo-icon {
        font-size: 1.2rem;
    }
    
    body {
        padding-bottom: 90px;
    }
}

/* ===================================
   SECTION LES PLUS AIMÉS - AMÉLIORÉE
   =================================== */

/* Améliorations générales du carousel */
.popular-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.popular-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.5;
}

.popular-section .section-header {
    margin-bottom: 50px;
}

/* Container du carousel amélioré */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

/* Wrapper avec ombre portée */
.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
    position: relative;
}

.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Track avec animation fluide */
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Slide avec animation d'entrée */
.carousel-slide {
    min-width: 100%;
    padding: 0 12px;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.carousel-slide:nth-child(1) { animation-delay: 0.1s; }
.carousel-slide:nth-child(2) { animation-delay: 0.2s; }
.carousel-slide:nth-child(3) { animation-delay: 0.3s; }
.carousel-slide:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carte populaire améliorée */
.popular-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--black-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.popular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.popular-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.popular-card:hover::before {
    left: 100%;
}

/* Image avec effet zoom */
.popular-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popular-card:hover img {
    transform: scale(1.12);
}

/* Info avec fond dégradé amélioré */
.popular-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 20px 20px;
    background: linear-gradient(transparent 0%, rgba(10, 10, 10, 0.7) 30%, rgba(10, 10, 10, 0.95) 100%);
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.popular-card:hover .popular-info {
    transform: translateY(0);
    opacity: 1;
    padding-bottom: 25px;
    background: linear-gradient(transparent 0%, rgba(10, 10, 10, 0.8) 20%, rgba(10, 10, 10, 0.98) 100%);
}

.popular-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.popular-card:hover .popular-info h4 {
    transform: translateY(0);
    opacity: 1;
}

.popular-info p {
    font-size: 0.9rem;
    color: var(--cream-dark);
    font-style: italic;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.15s;
}

.popular-card:hover .popular-info p {
    transform: translateY(0);
    opacity: 1;
}

/* Boutons carousel améliorés */
.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.carousel-btn:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-btn:hover {
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.carousel-btn:hover svg {
    color: var(--black);
    transform: translateX(3px);
}

.carousel-btn.prev:hover svg {
    transform: translateX(-3px);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Dots indicateurs améliorés */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.dot:hover {
    border-color: var(--gold);
    transform: scale(1.2);
}

/* ===================================
   RESPONSIVE CAROUSEL - TABLETTE
   =================================== */
@media (min-width: 768px) {
    .carousel-slide {
        min-width: 50%;
        padding: 0 15px;
    }
    
    .popular-card {
        border-radius: 18px;
    }
    
    .popular-info h4 {
        font-size: 1.4rem;
    }
    
    .popular-info p {
        font-size: 0.95rem;
    }
}

/* ===================================
   RESPONSIVE CAROUSEL - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 25%;
        padding: 0 15px;
    }
    
    .popular-card {
        border-radius: 20px;
        aspect-ratio: 4/5;
    }
    
    .popular-info h4 {
        font-size: 1.5rem;
    }
}

/* ===================================
   RESPONSIVE CAROUSEL - MOBILE
   =================================== */
@media (max-width: 480px) {
    .popular-section {
        padding: 50px 0;
    }
    
    .popular-section .section-header {
        margin-bottom: 30px;
    }
    
    .popular-section .section-title {
        font-size: 1.5rem;
    }
    
    /* Container plus compact */
    .carousel-container {
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Wrapper pleine largeur */
    .carousel-wrapper {
        border-radius: 12px;
        margin: 0 -5px;
    }
    
    /* Slide mobile */
    .carousel-slide {
        min-width: 85%;
        padding: 0 8px;
    }
    
    /* Carte mobile optimisée */
    .popular-card {
        border-radius: 12px;
        aspect-ratio: 3/4;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    }
    
    .popular-card:active {
        transform: scale(0.98);
    }
    
    /* Info toujours visible sur mobile */
    .popular-info {
        padding: 30px 15px 15px;
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(transparent 0%, rgba(10, 10, 10, 0.6) 20%, rgba(10, 10, 10, 0.9) 100%);
    }
    
    .popular-info h4 {
        font-size: 1.1rem;
        transform: translateY(0);
        opacity: 1;
    }
    
    .popular-info p {
        font-size: 0.8rem;
        transform: translateY(0);
        opacity: 0.9;
    }
    
    /* Boutons carousel mobile */
    .carousel-btn {
        width: 40px;
        height: 40px;
        border-width: 1px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Cacher les boutons sur très petits écrans, utiliser swipe */
    @media (max-width: 380px) {
        .carousel-btn {
            display: none;
        }
        
        .carousel-slide {
            min-width: 88%;
        }
    }
    
    /* Dots plus grands pour touch */
    .carousel-dots {
        gap: 15px;
        margin-top: 25px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        min-width: 44px;
        min-height: 44px;
        background-clip: content-box;
        padding: 16px;
        box-sizing: content-box;
        border-width: 2px;
    }
    
    .dot.active {
        transform: scale(1.2);
    }
    
    /* Indicateur de swipe */
    .carousel-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 10px;
        width: 30px;
        height: 30px;
        background: rgba(212, 175, 55, 0.3);
        border-radius: 50%;
        transform: translateY(-50%);
        animation: swipeHint 2s ease-in-out infinite;
        pointer-events: none;
        z-index: 10;
        opacity: 0.6;
    }
    
    @keyframes swipeHint {
        0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.3; }
        50% { transform: translateY(-50%) translateX(-10px); opacity: 0.6; }
    }
    
    /* Supprimer l'animation après le premier swipe */
    .carousel-wrapper.swiped::before {
        display: none;
    }
}

/* ===================================
   TRÈS PETITS ÉCRANS
   =================================== */
@media (max-width: 360px) {
    .carousel-slide {
        min-width: 90%;
        padding: 0 5px;
    }
    
    .popular-card {
        border-radius: 10px;
    }
    
    .popular-info h4 {
        font-size: 1rem;
    }
    
    .popular-info p {
        font-size: 0.75rem;
    }
}

/* iPhone notch safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 480px) {
        #cart-summary-bar.cart-summary-bar {
            padding-bottom: calc(14px + env(safe-area-inset-bottom)) !important;
            left: 10px !important;
            right: 10px !important;
            bottom: calc(10px + env(safe-area-inset-bottom)) !important;
            border-radius: 16px !important;
        }
        
        body {
            padding-bottom: calc(110px + env(safe-area-inset-bottom));
        }
        
        .toast {
            bottom: calc(120px + env(safe-area-inset-bottom));
        }
    }
}
