@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Playfair+Display:wght@700&display=swap');

:root {
    /* Couleurs principales */
    --primary: #FFD700;
    --primary-dark: #FFB300;
    --secondary: #1a1a1a;
    --accent: #FF6B35;
    
    /* Couleurs de fond */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: #1e1e1e;
    
    /* Couleurs de texte */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    
    /* Couleurs d'état */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Ombres et effets */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Bordures */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Espacements */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

/* Mode clair */
[data-theme="light"] { display: none !important; }

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1446 0%, #2d1e5f 60%, #0a0a1a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal);
    min-height: 100vh;
    position: relative;
}

/* Fond étoilé animé */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1.5" fill="%23FFD700" opacity="0.7"/><circle cx="80" cy="40" r="1" fill="%23FFD700" opacity="0.5"/><circle cx="200" cy="120" r="1.2" fill="%23FFD700" opacity="0.6"/><circle cx="300" cy="60" r="1.3" fill="%23FFD700" opacity="0.4"/><circle cx="500" cy="200" r="1.7" fill="%23FFD700" opacity="0.7"/><circle cx="700" cy="100" r="1.1" fill="%23FFD700" opacity="0.5"/></svg>') repeat;
  animation: stars-move 60s linear infinite;
}
@keyframes stars-move {
  0% { background-position: 0 0; }
  100% { background-position: 200px 400px; }
}

/* ===== PRELOADER ULTRA PREMIUM ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow);
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-animation {
    margin-bottom: var(--spacing-xl);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
}

.logo-text {
    color: var(--primary);
    display: block;
    animation: slideInLeft 1s ease-out;
}

.logo-accent {
    color: var(--text-primary);
    display: block;
    animation: slideInRight 1s ease-out 0.3s both;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    margin: var(--spacing-lg) auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    animation: fadeIn 1s ease-out 1s both;
}

/* ===== NAVIGATION ULTRA MODERNE ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-main {
    color: var(--primary);
}

.logo-sub {
    color: var(--text-primary);
    margin-left: 4px;
}

.nav-search {
    flex: 1;
    max-width: 400px;
    margin: 0 var(--spacing-xl);
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 48px 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.search-btn:hover {
    color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.theme-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.theme-toggle .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

.cart-btn {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.cart-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.account-btn {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
}

.account-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

/* ===== NAVBAR USER MENU AMÉLIORÉ ===== */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: var(--spacing-lg);
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.user-btn:hover, .user-btn:focus {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.user-btn svg {
    margin-right: 0.5rem;
    color: var(--primary);
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,215,0,0.08);
    z-index: 1001;
    padding: 0.5rem 0;
    animation: fadeInUp 0.2s;
}

.user-menu.open .user-dropdown {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover, .dropdown-item.logout-btn:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: var(--bg-tertiary);
    margin: 0.3rem 0;
    opacity: 0.5;
}

.logout-btn {
    color: var(--error);
}

/* Avatar utilisateur (optionnel) */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
    border: 2px solid var(--primary);
    background: var(--bg-secondary);
}

/* Responsive ajustements */
@media (max-width: 768px) {
    .user-dropdown {
        right: auto;
        left: 0;
        min-width: 160px;
    }
    .user-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
    }
}

/* ===== HERO SECTION ULTRA PREMIUM ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(120deg, #2d1e5f 60%, #FFD700 100%);
    position: relative;
    overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, #1a1446 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.8) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: #FFD700;
    text-shadow: 0 2px 12px #2d1e5f, 0 0 2px #fff;
    letter-spacing: 1.5px;
}

.title-line {
    display: block;
    color: var(--text-primary);
    animation: slideInUp 1s ease-out 0.2s both;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite, slideInUp 1s ease-out 0.4s both;
    color: #40e0d0;
    text-shadow: 0 2px 12px #1a1446, 0 0 2px #fff;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #e0d7ff;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 1px 8px #2d1e5f;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    background: linear-gradient(90deg, #FFD700 60%, #40e0d0 100%);
    color: #1a1446;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s, box-shadow 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: 0 4px 24px 0 #FFD70033, 0 1px 8px #40e0d033;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px 0 #FFD70066, 0 2px 16px #7b2ff266;
}

.btn-secondary {
    background: linear-gradient(90deg, #7b2ff2 60%, #40e0d0 100%);
    color: #FFD700;
    border-radius: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 2px 12px #7b2ff233;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
    background: linear-gradient(90deg, #40e0d0 60%, #FFD700 100%);
    color: #1a1446;
    box-shadow: 0 4px 24px #40e0d066;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.floating-cards {
    position: relative;
    height: 400px;
}

.card-float {
    position: absolute;
    width: 200px;
    height: 280px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-normal);
}

.card-float:hover {
    transform: scale(1.05) rotate(5deg);
    z-index: 10;
}

.card-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    top: 0;
    left: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
    top: 60px;
    right: 0;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard 6s ease-in-out infinite 4s;
}

.hero-stats {
    position: absolute;
    bottom: var(--spacing-2xl);
    right: var(--spacing-2xl);
    display: flex;
    gap: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-xl);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    color: #FFD700;
    text-shadow: 0 2px 12px #2d1e5f, 0 0 2px #fff;
    letter-spacing: 1.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    color: #e0d7ff;
    text-shadow: 0 1px 8px #2d1e5f;
}

.collections-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.collection-card {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 4px 24px #1a144633, 0 1px 8px #FFD70033;
    border: 1.5px solid #FFD70033;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2d1e5f 80%, #FFD70022 100%);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.collection-card:hover {
    box-shadow: 0 8px 32px #FFD70055, 0 2px 16px #40e0d055;
    border-color: #FFD70099;
}

.collection-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, #1a1446cc 60%, #FFD700cc 100%);
    color: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 2px 12px #FFD70033;
    padding: var(--spacing-xl);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.collection-card:hover .collection-overlay {
    transform: translateY(0);
}

.collection-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.collection-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.collection-btn {
    background: linear-gradient(90deg, #FFD700 60%, #40e0d0 100%);
    color: #1a1446;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s, box-shadow 0.3s, color 0.3s;
    box-shadow: 0 4px 24px 0 #FFD70033, 0 1px 8px #40e0d033;
}

.collection-btn:hover {
    background: linear-gradient(90deg, #FFD700 80%, #7b2ff2 100%);
    color: #fff;
    box-shadow: 0 8px 32px 0 #FFD70066, 0 2px 16px #7b2ff266;
    transform: translateY(-2px) scale(1.04);
}

/* ===== PRODUITS ET CARTES ===== */
.product-card {
    position: relative;
    background: linear-gradient(135deg, #2d1e5f 80%, #FFD70022 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px #1a144633, 0 1px 8px #FFD70033;
    border: 1.5px solid #FFD70033;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 24px #1a144633, 0 1px 8px #FFD70033;
}

.product-card:hover {
    box-shadow: 0 8px 32px #FFD70055, 0 2px 16px #40e0d055;
    border-color: #FFD70099;
}

.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(90deg, #FFD700 60%, #7b2ff2 100%);
    color: #1a1446;
    border-radius: 8px;
    box-shadow: 0 2px 8px #FFD70055;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 6px;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.promo-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    color: #fff;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-add-cart svg {
    transition: transform var(--transition-fast);
}

.btn-add-cart:hover svg {
    transform: scale(1.1);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: var(--spacing-3xl) 0;
}

.section-filters {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.filter-select {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

/* ===== PROMOTIONS SECTION ===== */
.promotions-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.promotions-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-3xl) 0;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.about-visual {
    text-align: center;
}

.about-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-2xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

/* ===== FOOTER ULTRA MODERNE ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== MODAL PANIER ULTRA MODERNE ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: var(--spacing-xl);
    max-height: 400px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
}

.cart-empty h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.modal-footer {
    padding: var(--spacing-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.total-amount {
    color: var(--primary);
}

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
}

.toast {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .nav-container {
        padding: 0 var(--spacing-lg);
    }
    
    .nav-search {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-container {
        padding: 0 var(--spacing-md);
        height: 70px;
    }
    
    .nav-search {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--spacing-2xl);
        transition: left var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: var(--spacing-lg) var(--spacing-xl);
        margin: var(--spacing-sm) 0;
        border-radius: var(--border-radius);
        transition: all var(--transition-fast);
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: translateX(10px);
    }
    
    /* Menu hamburger */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all var(--transition-fast);
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero section mobile */
    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--spacing-2xl);
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .floating-cards {
        display: none;
    }
    
    /* Sections mobile */
    .section-filters {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .filter-select {
        width: 100%;
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    /* Modal mobile */
    .modal-content {
        width: 95%;
        max-width: 500px;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Typography mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Navigation très mobile */
    .nav-container {
        padding: 0 var(--spacing-sm);
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-actions {
        gap: var(--spacing-sm);
    }
    
    .account-btn span {
        display: none;
    }
    
    /* Hero très mobile */
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Grilles très mobile */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    /* Cards mobile */
    .collection-card {
        min-height: 250px;
    }
    
    .product-card {
        min-height: 300px;
    }
    
    /* Stats mobile */
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Formulaires mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Évite le zoom sur iOS */
    }
    
    /* Modal très mobile */
    .modal-content {
        width: 98%;
        margin: 10px auto;
        padding: var(--spacing-lg);
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    /* Toast mobile */
    .toast {
        width: 95%;
        left: 2.5%;
        right: 2.5%;
    }
}

@media (max-width: 360px) {
    /* Très petits écrans */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Orientation landscape sur mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        padding-top: var(--spacing-lg);
    }
    
    .nav-link {
        padding: var(--spacing-md) var(--spacing-lg);
        margin: var(--spacing-xs) 0;
    }
    
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Amélioration de l'accessibilité mobile */
@media (max-width: 768px) {
    /* Augmenter la taille des éléments cliquables */
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .collection-btn,
    .btn-add-cart {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Améliorer l'espacement tactile */
    .nav-actions {
        gap: var(--spacing-md);
    }
    
    .cart-btn,
    .theme-toggle,
    .account-btn {
        padding: var(--spacing-sm);
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Améliorer la lisibilité */
    .product-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .collection-overlay h3 {
        font-size: 1.2rem;
    }
    
    .collection-overlay p {
        font-size: 0.9rem;
    }
}

/* Optimisations pour les écrans haute densité */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .card-float img,
    .collection-image img,
    .product-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Support pour les écrans tactiles */
@media (hover: none) and (pointer: coarse) {
    .collection-card:hover .collection-image img,
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .collection-card:hover .collection-overlay,
    .product-card:hover .product-info {
        opacity: 1;
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .collection-btn:hover,
    .btn-add-cart:hover {
        transform: none;
    }
    
    /* Améliorer les interactions tactiles */
    .collection-card,
    .product-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .collection-btn:active,
    .btn-add-cart:active {
        transform: scale(0.98);
    }
}

/* ===== MENU MOBILE ===== */
.mobile-menu-toggle {
    display: none;
}

/* État du menu ouvert */
body.menu-open {
    overflow: hidden;
}

body.menu-open .navbar {
    background: rgba(10, 10, 10, 0.98);
}

/* Optimisations pour les écrans tactiles */
.touch-device .collection-card:hover .collection-image img,
.touch-device .product-card:hover .product-image img {
    transform: none;
}

.touch-device .collection-card:hover .collection-overlay,
.touch-device .product-card:hover .product-info {
    opacity: 1;
    transform: none;
}

.touch-device .btn-primary:hover,
.touch-device .btn-secondary:hover,
.touch-device .collection-btn:hover,
.touch-device .btn-add-cart:hover {
    transform: none;
}

/* Amélioration de l'accessibilité pour les lecteurs d'écran */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Support pour les écrans haute densité */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .card-float img,
    .collection-image img,
    .product-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Optimisations pour les écrans très petits */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Optimisations pour les écrans très larges */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1600px;
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .collections-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Amélioration de la performance sur mobile */
@media (max-width: 768px) {
    /* Réduire les animations sur mobile */
    .floating-cards {
        animation: none;
    }
    
    .card-float {
        animation: none;
    }
    
    /* Optimiser les transitions */
    .collection-card,
    .product-card {
        transition: transform var(--transition-fast);
    }
    
    /* Améliorer la lisibilité */
    .hero-subtitle {
        line-height: 1.5;
    }
    
    .section-subtitle {
        line-height: 1.4;
    }
}

/* Support pour les écrans pliables */
@media (max-width: 768px) and (min-height: 600px) {
    .hero-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Optimisations pour les écrans tactiles avec stylet */
@media (pointer: fine) and (hover: none) {
    .collection-card:hover .collection-overlay,
    .product-card:hover .product-info {
        opacity: 1;
        transform: none;
    }
}

/* Amélioration de la navigation au clavier */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.collection-btn:focus,
.btn-add-cart:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Support pour les préférences de contraste élevé */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 2px solid var(--primary);
    }
    
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
    
    .collection-card,
    .product-card {
        border: 1px solid var(--text-muted);
    }
}

/* Support pour les préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .hero-particles {
        animation: none;
    }
    
    .floating-cards {
        animation: none;
    }
    
    .card-float {
        animation: none;
    }
    
    .stat-item {
        animation: none;
    }
    
    .collection-card:hover .collection-image img,
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
} 

/* ===== PAGE CATÉGORIE ===== */

.category-container {
    max-width: 1400px;
    margin: 48px auto 0 auto;
    padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-3xl) var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    min-height: 70vh;
}

.category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}
.category-info {
    flex: 1 1 320px;
}
.category-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}
.category-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-sm);
}
.category-stats {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: var(--spacing-xs);
}
.category-image {
    flex: 0 0 220px;
    max-width: 220px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Filtres */
.filters-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-xl);
}
.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: flex-end;
    width: 100%;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 160px;
}
.filter-group label {
    font-size: 0.98rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 2px;
}
.filter-group input,
.filter-group select {
    padding: 8px 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border var(--transition-fast);
}
.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-dark);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    color: var(--text-secondary);
}
.empty-icon {
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}
.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}
.empty-state p {
    margin-bottom: var(--spacing-md);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
}
.page-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1.5px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 8px 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.page-btn.active,
.page-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary-dark);
}

/* Autres catégories */
.other-categories {
    margin-top: var(--spacing-3xl);
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-2xl) var(--spacing-xl);
}
.other-categories h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}
.category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
    color: var(--text-primary);
}
.category-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-lg);
    background: var(--primary);
    color: var(--secondary);
}
.category-card .category-image {
    height: 120px;
    background: var(--bg-secondary);
    overflow: hidden;
}
.category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.category-card .category-info {
    padding: var(--spacing-md);
}
.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.category-card p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.category-card .product-count {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }
    .category-image {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .category-container {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    .filters-section {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    .filters-form {
        gap: var(--spacing-md);
    }
    .other-categories {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}
@media (max-width: 480px) {
    .category-header h1 {
        font-size: 1.5rem;
    }
    .category-header p {
        font-size: 1rem;
    }
    .category-image {
        max-width: 100%;
        height: 120px;
    }
} 

/* ===== PAGES INFORMATIONS ULTRA-MODERNES ===== */
.info-layout {
  display: flex;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  overflow: hidden;
  min-height: 60vh;
}
.info-sidebar {
  min-width: 250px;
  max-width: 300px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border-right: 1px solid #e0e7ff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  z-index: 2;
}
.sidebar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.info-menu {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}
.info-link {
  display: block;
  padding: 0.7rem 1.2rem;
  border-radius: 1.2rem;
  color: #222;
  font-weight: 500;
  font-size: 1.08rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
}
.info-link.active, .info-link:hover, .info-link:focus {
  background: linear-gradient(90deg, #FFD700 0%, #FF6B35 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,215,0,0.10);
  outline: none;
}
.info-content {
  flex: 1;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 0;
  background: rgba(255,255,255,0.13);
  border-radius: 0 2rem 2rem 0;
  box-shadow: 0 2px 8px rgba(31,38,135,0.04);
}
.info-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
}
.info-content p {
  font-size: 1.13rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.info-list li a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.info-list li a:hover, .info-list li a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}
.contact-form {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  border: 1.5px solid rgba(255,215,0,0.07);
  width: 100%;
  margin-bottom: 32px;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .info-layout {
    flex-direction: column;
    align-items: stretch;
    max-width: 98vw;
    padding: 24px 0;
    gap: 0;
  }
  .info-sidebar {
    position: static;
    width: 100%;
    max-width: unset;
    min-width: unset;
    border-radius: 24px 24px 0 0;
    margin-bottom: 0;
    box-shadow: none;
    padding: 32px 16px 24px 16px;
    align-items: center;
  }
  .info-content {
    border-radius: 0 0 32px 32px;
    padding: 32px 12px 32px 12px;
    min-height: 400px;
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .info-sidebar {
    padding: 18px 6px 12px 6px;
  }
  .info-content {
    padding: 18px 2px 18px 2px;
  }
  .info-list {
    gap: 0.7rem;
  }
} 

.footer-column.footer-cgv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 180px;
  padding-bottom: 1.5rem;
}
.footer-cgv-link {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(255,215,0,0.08);
  padding: 0.7rem 1.3rem;
  border-radius: 1.2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255,215,0,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 1.2rem;
  letter-spacing: 0.5px;
}
.footer-cgv-link:hover, .footer-cgv-link:focus {
  background: linear-gradient(90deg, #FFD700 0%, #FF6B35 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,215,0,0.13);
  outline: none;
}
@media (max-width: 1024px) {
  .footer-column.footer-cgv {
    align-items: center;
    min-width: unset;
    padding-bottom: 0.5rem;
  }
} 

.cgv-main {
  background: rgba(255,255,255,0.13);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  max-width: 900px;
  margin: 4rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}
.cgv-main h1 {
  font-size: 2.3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.cgv-main p {
  color: var(--text-secondary);
  font-size: 1.13rem;
  margin-bottom: 1.2rem;
}
.cgv-section {
  margin-bottom: 2.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,215,0,0.07);
}
.cgv-section:last-child {
  border-bottom: none;
}
.cgv-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
}
.cgv-section ul {
  margin: 0.7rem 0 0.7rem 1.2rem;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 1.08rem;
}
.cgv-section li {
  margin-bottom: 0.4rem;
}
@media (max-width: 700px) {
  .cgv-main {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 1.2rem;
  }
  .cgv-main h1 {
    font-size: 1.5rem;
  }
  .cgv-section h2 {
    font-size: 1.08rem;
  }
} 

@media (max-width: 900px) {
  html, body { overflow-x: hidden !important; }
  .collections-grid, .products-grid, .promotions-grid, .testimonials-carousel, .testimonials-track {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .collection-image img, .product-image img, .testimonial-card img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .collection-card, .product-card, .testimonial-card {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .testimonials-section, .collections-section, .products-section, .promotions-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .mobile-menu-toggle span {
    background: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(255,215,0,0.18);
  }
}

@media (max-width: 600px) {
  .footer-content {
    padding: 0 var(--spacing-sm);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .footer-links {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-lg);
    width: 100%;
    margin: 0 auto;
  }
  .footer-column {
    margin-bottom: var(--spacing-md);
  }
  .footer-brand .footer-logo {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
  }
  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
  }
  .footer-column a {
    font-size: 0.98rem;
    margin-bottom: 0.5em;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
    padding-top: var(--spacing-md);
  }
  .footer-social {
    justify-content: center;
    gap: var(--spacing-sm);
  }
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .footer-legal p {
    font-size: 0.85rem;
  }
  .footer {
    width: 100vw;
    overflow-x: hidden;
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }
}

.mobile-only { display: none !important; }
@media (max-width: 900px) {
  .mobile-only { display: block !important; }
}

.collection-image img {
  background: none !important;
  border: none !important;
  object-fit: contain;
  box-shadow: none !important;
}

/* ===== PAGE PRODUIT (product.php) ===== */
.product-container {
  max-width: 1200px;
  margin: 100px auto 0 auto;
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.product-content {
  display: flex;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
}

.product-gallery {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-card);
}
.gallery-thumbnails {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}
.thumbnail {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.thumbnail.active, .thumbnail:hover {
  border-color: var(--primary);
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 2 1 400px;
  min-width: 320px;
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.product-header h1 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.stars svg {
  margin-right: 2px;
}
.rating-text {
  color: var(--text-secondary);
  font-size: 1rem;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}
.original-price {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 1.1rem;
}
.sale-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 8px;
}
.discount {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}
.product-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.product-stock {
  margin-bottom: var(--spacing-xs);
}
.stock-available {
  color: var(--success);
  font-weight: 600;
}
.stock-unavailable {
  color: var(--error);
  font-weight: 600;
}
.quantity-selector {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.quantity-btn {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.quantity-btn:hover {
  background: var(--primary);
  color: #000;
}
.add-to-cart-form input[type="number"] {
  width: 48px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  margin: 0 4px;
}
.product-meta {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--text-muted);
}
.meta-item {
  display: flex;
  gap: 4px;
}

/* Onglets produit */
.product-tabs {
  margin-top: var(--spacing-3xl);
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-2xl);
}
.tab-nav {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: #000;
}
.tab-content {
  min-height: 120px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.description-content {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.7;
}
.reviews-section {
  margin-top: var(--spacing-lg);
}
.add-review-form {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}
.add-review-form h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary);
}
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.rating-input input[type="radio"] {
  display: none;
}
.rating-input label {
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.rating-input label:hover svg,
.rating-input input[type="radio"]:checked + label svg {
  transform: scale(1.2);
  fill: var(--primary);
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.review-item {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xs);
}
.review-author {
  font-weight: 700;
  color: var(--primary);
}
.review-rating svg {
  margin-right: 2px;
}
.review-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.review-comment {
  color: var(--text-secondary);
  font-size: 1rem;
}
.no-reviews {
  color: var(--text-muted);
  font-style: italic;
}
.login-prompt {
  margin-bottom: var(--spacing-lg);
}

/* Produits similaires */
.similar-products {
  margin-top: var(--spacing-3xl);
}
.similar-products h2 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-content {
    flex-direction: column;
    gap: var(--spacing-2xl);
  }
  .product-gallery, .product-info {
    max-width: 100%;
  }
  .product-tabs {
    padding: var(--spacing-lg);
  }
}
@media (max-width: 600px) {
  .product-container {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  .product-info {
    padding: var(--spacing-lg);
  }
  .product-tabs {
    padding: var(--spacing-md);
  }
  .gallery-main {
    aspect-ratio: unset;
    height: 220px;
  }
  .gallery-thumbnails {
    gap: 2px;
  }
  .thumbnail {
    width: 40px;
    height: 40px;
  }
}

/* === BOUTONS PREMIUM === */
.btn-primary, .collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 0.95em 2.2em;
  font-size: 1.08rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  background: linear-gradient(90deg, #FFD700 0%, #40e0d0 100%);
  color: #1a1446;
  box-shadow: 0 6px 24px 0 #FFD70044, 0 1px 8px #40e0d044;
  letter-spacing: 1px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
  position: relative;
  cursor: pointer;
  outline: none;
}
.btn-primary:hover, .collection-btn:hover {
  background: linear-gradient(90deg, #FFD700 60%, #7b2ff2 100%);
  color: #fff;
  box-shadow: 0 12px 32px 0 #FFD70077, 0 2px 16px #7b2ff277;
  transform: translateY(-2px) scale(1.045);
}
.btn-primary svg, .collection-btn svg {
  margin-left: 0.5em;
  vertical-align: middle;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 0.95em 2.2em;
  font-size: 1.08rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  background: linear-gradient(90deg, #7b2ff2 0%, #40e0d0 100%);
  color: #FFD700;
  box-shadow: 0 4px 18px #7b2ff244;
  letter-spacing: 1px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
  cursor: pointer;
  outline: none;
}
.btn-secondary:hover {
  background: linear-gradient(90deg, #40e0d0 0%, #FFD700 100%);
  color: #1a1446;
  box-shadow: 0 8px 24px #40e0d077;
  transform: translateY(-2px) scale(1.045);
}
.btn-secondary svg {
  margin-left: 0.5em;
  vertical-align: middle;
}

/* === CARDS PREMIUM === */
.collection-card, .product-card, .testimonial-card {
  background: linear-gradient(135deg, #2d1e5f 80%, #FFD70022 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px #1a144655, 0 2px 16px #FFD70033;
  border: 2px solid #FFD70033;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.18s;
  min-width: 0;
}
.collection-card:hover, .product-card:hover, .testimonial-card:hover {
  box-shadow: 0 16px 48px #FFD70077, 0 4px 32px #40e0d077;
  border-color: #FFD700cc;
  transform: translateY(-6px) scale(1.025);
}
.product-image, .collection-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}
.product-image img, .collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
  transition: transform 0.22s;
}
.product-card:hover .product-image img, .collection-card:hover .collection-image img {
  transform: scale(1.06) rotate(-2deg);
}
.product-info {
  padding: 2.2em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  background: transparent;
}
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.2em;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #2d1e5f;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #40e0d0;
  margin-bottom: 0.2em;
  text-shadow: 0 1px 6px #1a1446;
}

/* === BADGES === */
.badge, .promo-badge, .new-badge {
  background: linear-gradient(90deg, #FFD700 60%, #7b2ff2 100%);
  color: #1a1446;
  border-radius: 12px;
  box-shadow: 0 2px 8px #FFD70055;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  font-size: 0.95em;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border: 1.5px solid #FFD70099;
}
.promo-badge { right: 18px; left: auto; background: linear-gradient(90deg, #FF6B35, #FFD700 100%); color: #fff; }
.new-badge { left: 18px; background: linear-gradient(90deg, #40e0d0 60%, #FFD700 100%); color: #1a1446; }

/* === OVERLAYS === */
.collection-overlay {
  background: linear-gradient(120deg, #1a1446ee 60%, #FFD700ee 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 12px #FFD70033;
  padding: 1.5em 1.2em;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  transform: translateY(100%);
  transition: transform 0.22s;
}
.collection-card:hover .collection-overlay {
  transform: translateY(0);
}

/* === STATS HERO === */
.hero-stats {
  display: flex;
  gap: 2.5em;
  justify-content: center;
  align-items: flex-end;
  margin-top: 2.5em;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}
.stat-item {
  background: linear-gradient(120deg, #FFD700cc 60%, #40e0d0cc 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px #FFD70033, 0 1px 8px #40e0d033;
  padding: 1.2em 2.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  margin-bottom: 1em;
  border: 2px solid #fff2;
  transition: box-shadow 0.22s, transform 0.18s;
}
.stat-item:hover {
  box-shadow: 0 8px 32px #FFD70055, 0 2px 16px #40e0d055;
  transform: scale(1.045);
}
.stat-number {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #1a1446;
  text-shadow: 0 2px 12px #FFD70099;
  margin-bottom: 0.2em;
}
.stat-label {
  font-size: 1.08rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px #1a1446;
}

/* === TITRES === */
.hero-title, .section-title {
  font-family: 'Playfair Display', serif;
  color: #FFD700;
  text-shadow: 0 2px 12px #2d1e5f, 0 0 2px #fff;
  letter-spacing: 1.5px;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5em;
}
.section-title {
  color: #40e0d0;
  text-shadow: 0 2px 12px #1a1446, 0 0 2px #fff;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.2em;
  }
  .collection-card, .product-card, .testimonial-card {
    min-width: 90vw !important;
    max-width: 98vw !important;
  }
  .hero-title, .section-title {
    font-size: 2rem !important;
  }
}
@media (max-width: 600px) {
  .btn-primary, .btn-secondary, .collection-btn {
    padding: 0.8em 1.2em;
    font-size: 1rem;
  }
  .hero-title, .section-title {
    font-size: 1.3rem !important;
  }
  .stat-item {
    padding: 1em 1.2em;
    min-width: 90px;
  }
}

/* === ANIMATIONS & EFFETS MODERNES === */

/* Animation de gradient dynamique */
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-primary, .collection-btn, .btn-secondary {
  background-size: 200% 200%;
  animation: gradient-move 3.5s ease-in-out infinite;
}

/* Effet halo/glow animé */
.btn-primary, .collection-btn, .btn-secondary {
  box-shadow: 0 0 0 0 #FFD70055, 0 6px 24px 0 #FFD70044, 0 1px 8px #40e0d044;
  position: relative;
  z-index: 1;
}
.btn-primary::after, .collection-btn::after, .btn-secondary::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 120%; height: 120%;
  border-radius: 40px;
  background: radial-gradient(circle, #FFD70055 0%, transparent 80%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: -1;
}
.btn-primary:hover::after, .collection-btn:hover::after, .btn-secondary:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Micro-interactions scale/shadow */
.btn-primary:active, .collection-btn:active, .btn-secondary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px #FFD70077;
}

/* Glassmorphism sur overlays et stats */
.collection-overlay, .stat-item {
  background: linear-gradient(120deg, #1a1446cc 60%, #FFD700cc 100%);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid #fff3;
  box-shadow: 0 2px 16px #FFD70033, 0 1px 8px #40e0d033;
}

/* Glow animé sur badges */
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 8px 2px #FFD70077, 0 2px 8px #FFD70055; }
  50% { box-shadow: 0 0 16px 6px #FFD700cc, 0 4px 16px #40e0d077; }
}
.badge, .promo-badge, .new-badge {
  animation: badge-glow 2.2s infinite alternate;
}

/* Cards : sparkles animés au survol */
@keyframes sparkle-move {
  0% { opacity: 0.7; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.2) translateY(-8px); }
  100% { opacity: 0.7; transform: scale(1) translateY(0); }
}
.card-sparkle {
  position: absolute;
  top: 18px; right: 24px;
  width: 22px; height: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}
.collection-card:hover .card-sparkle, .product-card:hover .card-sparkle {
  opacity: 1;
  animation: sparkle-move 1.2s infinite;
}

/* Ajout d'un sparkle SVG dans le HTML des cards (voir plus bas) */

/* Stats : icônes stylisées */
.stat-icon {
  width: 36px; height: 36px;
  margin-bottom: 0.3em;
  filter: drop-shadow(0 2px 8px #FFD70099);
  transition: filter 0.22s, transform 0.18s;
}
.stat-item:hover .stat-icon {
  filter: drop-shadow(0 4px 16px #40e0d0cc);
  transform: scale(1.12) rotate(-6deg);
}

/* Dégradé animé sur sections principales */
.hero-section, .about-section, .collections-section, .products-section, .promotions-section, .testimonials-section, .contact-section {
  background-size: 200% 200%;
  animation: gradient-move 8s ease-in-out infinite;
}

/* Transitions fluides partout */
.collection-card, .product-card, .testimonial-card, .stat-item, .btn-primary, .btn-secondary, .collection-btn, .badge, .promo-badge, .new-badge {
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.18s, background 0.25s, color 0.25s, filter 0.22s;
}

/* Responsive : sparkles et glassmorphism restent visibles */
@media (max-width: 600px) {
  .card-sparkle { width: 16px; height: 16px; top: 10px; right: 10px; }
  .stat-icon { width: 28px; height: 28px; }
}

/* === CARDS ULTRA PREMIUM === */
.collection-card, .product-card {
  perspective: 1200px;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 40px;
  position: relative;
  min-width: 0;
  margin: 0 auto;
  overflow: visible;
}
.card-inner {
  position: relative;
  border-radius: 40px;
  overflow: visible;
  background: transparent;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.28s, filter 0.28s;
  box-shadow: 0 8px 40px 0 #1a1446cc, 0 2px 24px #40e0d055;
  z-index: 1;
}
.collection-card:hover .card-inner, .product-card:hover .card-inner {
  transform: rotateY(8deg) scale(1.045) translateY(-8px);
  box-shadow: 0 24px 64px #FFD70099, 0 8px 32px #40e0d099;
  filter: brightness(1.08) saturate(1.1);
}
.card-border {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: 0;
  border-radius: 44px;
  background: linear-gradient(120deg, #FFD700, #40e0d0, #7b2ff2, #FFD700);
  background-size: 300% 300%;
  animation: gradient-move 5s linear infinite;
  filter: blur(2px) brightness(1.2);
  pointer-events: none;
}
.card-inner > .card-border {
  pointer-events: none;
}
.card-image {
  position: relative;
  z-index: 2;
  border-radius: 36px 36px 0 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 32px #FFD70033, 0 1px 8px #40e0d033;
  margin-bottom: -1.2em;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card-inner:hover .card-image {
  transform: scale(1.06) rotate(-2deg) translateY(-6px);
  box-shadow: 0 12px 48px #FFD70077, 0 4px 24px #40e0d077;
}
.card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 36px 36px 0 0;
  transition: filter 0.22s;
}
.card-inner:hover .card-image img {
  filter: brightness(1.08) saturate(1.1);
}
.card-overlay {
  position: relative;
  z-index: 3;
  background: linear-gradient(120deg, #1a1446cc 60%, #FFD700cc 100%);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2px 16px #FFD70033, 0 1px 8px #40e0d033;
  padding: 1.7em 1.3em 1.5em 1.3em;
  margin-top: -1.2em;
  min-height: 120px;
  transition: transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.22s;
  overflow: visible;
}
.card-inner:hover .card-overlay {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #FFD70077, 0 2px 16px #40e0d077;
}
.card-badge {
  position: absolute;
  top: -18px;
  left: 24px;
  background: linear-gradient(90deg, #FFD700 60%, #40e0d0 100%);
  color: #1a1446;
  border-radius: 18px;
  box-shadow: 0 2px 12px #FFD70099, 0 1px 8px #40e0d099;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 22px;
  font-size: 1.08em;
  border: 2px solid #fff8;
  z-index: 10;
  text-shadow: 0 1px 6px #fff8;
  animation: badge-glow 2.2s infinite alternate;
}
.card-badge.ribbon {
  left: auto; right: 24px;
  background: linear-gradient(90deg, #FF6B35 60%, #FFD700 100%);
  color: #fff;
}
.card-sparkle {
  position: absolute;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.card-sparkle.s1 { top: 18px; right: 24px; width: 22px; height: 22px; }
.card-sparkle.s2 { bottom: 24px; left: 32px; width: 16px; height: 16px; }
.card-sparkle.s3 { top: 32px; left: 32px; width: 14px; height: 14px; }
.collection-card:hover .card-sparkle, .product-card:hover .card-sparkle {
  opacity: 1;
  animation: sparkle-move 1.2s infinite;
}

/* Responsive */
@media (max-width: 900px) {
  .collection-card, .product-card { border-radius: 28px; }
  .card-inner { border-radius: 28px; }
  .card-image, .card-overlay { border-radius: 24px 24px 0 0; }
  .card-overlay { border-radius: 0 0 24px 24px; }
}
@media (max-width: 600px) {
  .collection-card, .product-card { border-radius: 18px; }
  .card-inner { border-radius: 18px; }
  .card-image, .card-overlay { border-radius: 12px 12px 0 0; }
  .card-overlay { border-radius: 0 0 12px 12px; }
  .card-badge { font-size: 0.95em; padding: 6px 14px; top: -10px; left: 10px; }
  .card-sparkle.s1 { width: 14px; height: 14px; top: 10px; right: 10px; }
  .card-sparkle.s2 { width: 10px; height: 10px; bottom: 10px; left: 10px; }
  .card-sparkle.s3 { width: 8px; height: 8px; top: 18px; left: 18px; }
}

/* === CARDS PREMIUM SIMPLIFIÉES === */
.collection-card, .product-card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 32px;
  position: relative;
  min-width: 0;
  margin: 0 auto;
  overflow: visible;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card-inner {
  position: relative;
  border-radius: 32px;
  overflow: visible;
  background: transparent;
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
  box-shadow: 0 6px 32px 0 #1a1446cc, 0 1px 12px #40e0d055;
  z-index: 1;
}
.collection-card:hover .card-inner, .product-card:hover .card-inner {
  transform: scale(1.025);
  box-shadow: 0 16px 48px #FFD70077, 0 4px 24px #40e0d077;
  filter: brightness(1.04) saturate(1.05);
}
.card-border { display: none; }
.card-image {
  position: relative;
  z-index: 2;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px #FFD70022, 0 1px 6px #40e0d022;
  margin-bottom: -1em;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card-inner:hover .card-image {
  transform: scale(1.03);
  box-shadow: 0 8px 32px #FFD70055, 0 2px 12px #40e0d055;
}
.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  transition: filter 0.18s;
}
.card-inner:hover .card-image img {
  filter: brightness(1.04) saturate(1.05);
}
.card-overlay {
  position: relative;
  z-index: 3;
  background: rgba(26,20,70,0.82);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 1px 8px #FFD70022;
  padding: 1.3em 1.1em 1.1em 1.1em;
  margin-top: -1em;
  min-height: 90px;
  transition: box-shadow 0.18s, background 0.18s;
  color: #fff;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 18px;
  background: linear-gradient(90deg, #FFD700 60%, #40e0d0 100%);
  color: #1a1446;
  border-radius: 14px;
  box-shadow: 0 2px 8px #FFD70055;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  font-size: 1em;
  border: 1.5px solid #fff8;
  z-index: 10;
  text-shadow: 0 1px 4px #fff8;
  animation: badge-glow 2.2s infinite alternate;
}
.card-badge.ribbon {
  left: auto; right: 18px;
  background: linear-gradient(90deg, #FF6B35 60%, #FFD700 100%);
  color: #fff;
}
.card-sparkle {
  position: absolute;
  top: 16px; right: 20px;
  width: 18px; height: 18px;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.collection-card:hover .card-sparkle, .product-card:hover .card-sparkle {
  opacity: 1;
  animation: sparkle-move 1.2s infinite;
}

/* Responsive */
@media (max-width: 900px) {
  .collection-card, .product-card { border-radius: 18px; }
  .card-inner { border-radius: 18px; }
  .card-image, .card-overlay { border-radius: 12px 12px 0 0; }
  .card-overlay { border-radius: 0 0 12px 12px; }
}
@media (max-width: 600px) {
  .collection-card, .product-card { border-radius: 10px; }
  .card-inner { border-radius: 10px; }
  .card-image, .card-overlay { border-radius: 8px 8px 0 0; }
  .card-overlay { border-radius: 0 0 8px 8px; }
  .card-badge { font-size: 0.92em; padding: 4px 10px; top: 6px; left: 8px; }
  .card-sparkle { width: 10px; height: 10px; top: 6px; right: 8px; }
  .card-inner:hover, .collection-card:hover .card-inner, .product-card:hover .card-inner {
    transform: none !important;
    box-shadow: 0 6px 24px #FFD70044, 0 1px 8px #40e0d044;
  }
}

/* === SYSTÈME DE CARDS UNIFIÉ === */
.card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 24px;
  position: relative;
  min-width: 0;
  margin: 0 auto;
  overflow: visible;
  transition: box-shadow 0.22s, transform 0.18s;
  display: flex;
  flex-direction: column;
  max-width: 340px;
}
.card:hover {
  transform: scale(1.025);
  box-shadow: 0 16px 48px #FFD70077, 0 4px 24px #40e0d077;
  filter: brightness(1.04) saturate(1.05);
}
.card-image {
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px #FFD70022, 0 1px 6px #40e0d022;
  margin-bottom: -1em;
  transition: box-shadow 0.18s, transform 0.18s;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card:hover .card-image {
  transform: scale(1.03);
  box-shadow: 0 8px 32px #FFD70055, 0 2px 12px #40e0d055;
}
.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: filter 0.18s;
}
.card:hover .card-image img {
  filter: brightness(1.04) saturate(1.05);
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 18px;
  background: linear-gradient(90deg, #FFD700 60%, #40e0d0 100%);
  color: #1a1446;
  border-radius: 14px;
  box-shadow: 0 2px 8px #FFD70055;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  font-size: 1em;
  border: 1.5px solid #fff8;
  z-index: 10;
  text-shadow: 0 1px 4px #fff8;
  animation: badge-glow 2.2s infinite alternate;
}
.card-badge.ribbon {
  left: auto; right: 18px;
  background: linear-gradient(90deg, #FF6B35 60%, #FFD700 100%);
  color: #fff;
}
.card-sparkle {
  position: absolute;
  top: 16px; right: 20px;
  width: 18px; height: 18px;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.card:hover .card-sparkle {
  opacity: 1;
  animation: sparkle-move 1.2s infinite;
}
.card-content {
  position: relative;
  z-index: 3;
  background: rgba(26,20,70,0.82);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 1px 8px #FFD70022;
  padding: 1.1em 1em 1em 1em;
  margin-top: -1em;
  min-height: 90px;
  transition: box-shadow 0.18s, background 0.18s;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.2em;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #2d1e5f;
}
.card-price {
  font-size: 1.12rem;
  font-weight: 700;
  color: #40e0d0;
  margin-bottom: 0.2em;
  text-shadow: 0 1px 6px #1a1446;
}
.card .btn-add-cart, .card .collection-btn {
  margin-top: 0.7em;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .card, .card-inner { border-radius: 14px; }
  .card-image, .card-content { border-radius: 10px 10px 0 0; }
  .card-content { border-radius: 0 0 10px 10px; }
}
@media (max-width: 600px) {
  .card, .card-inner { border-radius: 7px; }
  .card-image, .card-content { border-radius: 6px 6px 0 0; }
  .card-content { border-radius: 0 0 6px 6px; }
  .card-badge { font-size: 0.92em; padding: 4px 10px; top: 6px; left: 8px; }
  .card-sparkle { width: 10px; height: 10px; top: 6px; right: 8px; }
  .card:hover, .card-inner:hover {
    transform: none !important;
    box-shadow: 0 6px 24px #FFD70044, 0 1px 8px #40e0d044;
  }
}

/* Neutralisation des anciens styles cards */
.product-card, .collection-card, .testimonial-card {
  all: unset;
  display: contents;
}

/* Neutralisation complète des anciens styles cards et badges */
.product-card, .collection-card, .testimonial-card, .collection-btn, .badge, .promo-badge, .new-badge {
  all: unset !important;
  display: contents !important;
}
.products-grid, .collections-grid, .promotions-grid {
  gap: 2.2em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  padding: 0;
  margin: 0 auto;
  background: none;
  box-shadow: none;
}