/* ===== LA CANTINE — Luxe / Chic ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --rose: #f2c4ce;
    --rose-light: #fce4ec;
    --rose-dark: #d4919e;
    --gray-100: #f8f8f8;
    --gray-200: #efefef;
    --gray-300: #ddd;
    --gray-500: #888;
    --gray-700: #444;
    --gold: #b89b72;
    --danger: #e74c3c;
    --success: #27ae60;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--font-body); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5%; transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06); padding: 12px 5%;
}
.navbar .logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--white); transition: var(--transition); }
.navbar.scrolled .logo { color: var(--black); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--rose); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--black); }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: var(--white); transition: var(--transition); position: relative; }
.navbar.scrolled .nav-icons a { color: var(--black); }
.nav-icons a:hover { color: var(--rose); }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--rose); color: var(--black); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); z-index: 2000; padding: 80px 30px 30px; transition: right 0.4s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1); visibility: hidden; }
.mobile-menu.open { right: 0; visibility: visible; }
.mobile-menu a { display: block; padding: 16px 0; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--gray-200); color: var(--black); }
.mobile-menu .close-menu { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 28px; cursor: pointer; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.mobile-overlay.open { display: block; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--black); }

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
    background: url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1600') center/cover no-repeat;
    text-align: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; z-index: 1; color: var(--white); }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(40px,8vw,80px); font-weight: 700; letter-spacing: 8px; margin-bottom: 16px; }
.hero-content .subtitle { font-size: 14px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; color: var(--rose-light); }
.hero-content p { font-size: 16px; font-weight: 300; max-width: 500px; margin: 0 auto 40px; opacity: 0.9; }
.btn-hero { display: inline-block; padding: 16px 48px; border: 1.5px solid var(--white); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; transition: var(--transition); }
.btn-hero:hover { background: var(--white); color: var(--black); }

/* ===== SECTIONS ===== */
.section { padding: 100px 5%; }
.section-title { font-family: var(--font-display); font-size: 36px; text-align: center; margin-bottom: 12px; font-weight: 600; }
.section-line { width: 60px; height: 1.5px; background: var(--rose); margin: 0 auto 60px; }
.section-subtitle { text-align: center; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }

/* ===== VEDETTES CARROUSEL ===== */
.vedettes-section { background: var(--gray-100); }
.carousel-wrapper { position: relative; overflow: hidden; margin: 0 -10px; }
.carousel-inner { display: flex; gap: 24px; transition: transform 0.5s ease; padding: 10px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: var(--white); border: 1px solid var(--gray-300); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: var(--transition); box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.carousel-arrow:hover { background: var(--black); border-color: var(--black); }
.carousel-arrow:hover svg { stroke: var(--white); }
.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }
.carousel-arrow svg { width: 18px; height: 18px; stroke: var(--black); stroke-width: 2; fill: none; }

/* ===== PRODUCT CARD ===== */
.product-card { flex: 0 0 calc(33.333% - 18px); background: var(--white); border-radius: 2px; overflow: hidden; transition: var(--transition); }
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.product-card .img-wrap { position: relative; display: block; overflow: hidden; height: 350px; background: var(--gray-100); }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .img-wrap img { transform: scale(1.05); }
.badge-promo { position: absolute; top: 12px; left: 12px; background: var(--rose); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 12px; z-index: 2; }
.product-card .info { padding: 20px; }
.product-card .cat { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); }
.product-card h3 { font-family: var(--font-display); font-size: 18px; margin: 6px 0 10px; font-weight: 500; }
.product-card .price { font-size: 16px; font-weight: 600; }
.product-card .price .old { font-size: 13px; color: var(--gray-500); text-decoration: line-through; margin-left: 8px; font-weight: 400; }
.product-card .btns { margin-top: 14px; }
.btn { display: inline-block; padding: 10px 24px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); cursor: pointer; border: none; text-align: center; }
.btn-filled { background: var(--black); color: var(--white); }
.btn-filled:hover { background: var(--rose-dark); }
.btn-outline { border: 1.5px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ===== COLLECTIONS ===== */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card { position: relative; overflow: hidden; height: 450px; cursor: pointer; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.collection-card:hover img { transform: scale(1.08); }
.collection-card .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: flex-end; padding: 30px; transition: var(--transition); }
.collection-card:hover .overlay { background: rgba(0,0,0,0.45); }
.collection-card .overlay h3 { font-family: var(--font-display); color: var(--white); font-size: 26px; font-weight: 600; letter-spacing: 2px; }

/* ===== RÉASSURANCE ===== */
.reassurance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 0; }
.reassurance-item { text-align: center; padding: 40px 20px; border-radius: 12px; background: var(--gray-100); transition: var(--transition); }
.reassurance-item:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.06); }
.reassurance-item svg { width: 48px; height: 48px; stroke: var(--rose-dark); stroke-width: 1.5; fill: none; margin: 0 auto 16px; display: block; }
.reassurance-item h4 { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.reassurance-item p { font-size: 13px; color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 80px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; margin-bottom: 50px; }
.footer h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 20px; font-weight: 500; }
.footer p, .footer a { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 2; }
.footer a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== BOUTIQUE PAGE ===== */
.page-header { padding: 140px 5% 60px; background: var(--black); text-align: center; color: var(--white); }
.page-header h1 { font-family: var(--font-display); font-size: 42px; letter-spacing: 4px; }
.filters-bar { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding: 40px 5% 20px; }
.filter-btn { padding: 10px 24px; border: 1.5px solid var(--gray-300); background: transparent; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition); color: var(--black); }
.filter-btn.active, .filter-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; padding: 20px 5% 80px; }

/* ===== FICHE PRODUIT ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 120px 5% 80px; max-width: 1200px; margin: 0 auto; }
.product-gallery { position: relative; }
.product-gallery .main-img { width: 100%; height: 550px; object-fit: cover; cursor: zoom-in; border-radius: 2px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs img { width: 80px; height: 80px; object-fit: cover; cursor: pointer; opacity: 0.6; transition: var(--transition); border: 2px solid transparent; }
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; border-color: var(--black); }
.gallery-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 12px; pointer-events: none; }
.gallery-arrow { width: 40px; height: 40px; background: rgba(255,255,255,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: var(--transition); border: none; }
.gallery-arrow:hover { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.gallery-arrow svg { width: 16px; height: 16px; stroke: var(--black); stroke-width: 2; fill: none; }
.product-info .breadcrumb { font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }
.product-info .breadcrumb a:hover { color: var(--black); }
.product-info h1 { font-family: var(--font-display); font-size: 32px; font-weight: 600; margin-bottom: 16px; }
.product-info .price-detail { font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.product-info .price-detail .old { font-size: 18px; text-decoration: line-through; color: var(--gray-500); margin-left: 12px; }
.product-info .desc { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 30px; }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.size-btn { width: 48px; height: 48px; border: 1.5px solid var(--gray-300); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; cursor: pointer; transition: var(--transition); }
.size-btn:hover { border-color: var(--black); }
.size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.size-btn.sold-out { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.stock-info { font-size: 13px; color: var(--success); margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; gap: 0; margin-bottom: 24px; }
.qty-control button { width: 44px; height: 44px; border: 1.5px solid var(--gray-300); background: transparent; font-size: 18px; cursor: pointer; transition: var(--transition); }
.qty-control button:hover { border-color: var(--black); }
.qty-control input { width: 60px; height: 44px; border: 1.5px solid var(--gray-300); border-left: none; border-right: none; text-align: center; font-size: 15px; font-weight: 500; }
.btn-add-cart { width: 100%; padding: 16px; background: var(--black); color: var(--white); border: none; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-bottom: 20px; }
.btn-add-cart:hover { background: var(--rose-dark); }
.product-reassurance { border: 1px solid var(--gray-200); padding: 20px; }
.product-reassurance .item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.product-reassurance .item svg { width: 20px; height: 20px; stroke: var(--gray-500); stroke-width: 1.5; fill: none; flex-shrink: 0; }
.product-reassurance .item span { font-size: 13px; color: var(--gray-700); }
.product-reassurance .item a { color: var(--rose-dark); text-decoration: underline; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; transition: opacity 0.3s; cursor: pointer; }
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; cursor: default; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 36px; cursor: pointer; }

/* ===== PANIER ===== */
.cart-section { padding: 120px 5% 80px; max-width: 900px; margin: 0 auto; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 0; border-bottom: 2px solid var(--black); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.cart-table .cart-img { width: 80px; height: 100px; object-fit: cover; }
.cart-table .cart-name { font-weight: 500; }
.cart-table .cart-taille { display: inline-block; padding: 2px 8px; background: var(--gray-100); font-size: 11px; margin-top: 4px; }
.cart-table .remove-btn { background: none; border: none; cursor: pointer; font-size: 18px; color: var(--gray-500); transition: var(--transition); }
.cart-table .remove-btn:hover { color: var(--danger); }
.cart-total-section { margin-top: 40px; text-align: right; }
.cart-total-section .line { display: flex; justify-content: flex-end; gap: 40px; margin-bottom: 10px; font-size: 15px; }
.cart-total-section .total { font-size: 22px; font-weight: 700; font-family: var(--font-display); }

/* ===== AUTH / FORMS ===== */
.auth-section { padding: 140px 5% 80px; max-width: 500px; margin: 0 auto; }
.auth-tabs { display: flex; gap: 0; margin-bottom: 40px; border-bottom: 2px solid var(--gray-200); }
.auth-tab { padding: 14px 32px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); background: none; border-left: none; border-right: none; border-top: none; font-weight: 500; }
.auth-tab.active { border-bottom-color: var(--black); font-weight: 700; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-300); font-size: 14px; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--black); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; padding: 16px; background: var(--black); color: var(--white); border: none; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.btn-submit:hover { background: var(--rose-dark); }

/* ===== CHECKOUT ADDRESS ===== */
.checkout-step { display: none; margin-top: 40px; }
.checkout-step.active { display: block; }
.auth-choice { display: flex; flex-direction: column; gap: 12px; margin: 30px 0; }
.auth-choice .btn { text-align: center; width: 100%; }
.shipping-cost { background: var(--gray-100); padding: 20px; margin: 20px 0; border-radius: 2px; }
.address-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--gray-300); max-height: 200px; overflow-y: auto; z-index: 100; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.address-suggestions div { padding: 10px 14px; cursor: pointer; font-size: 13px; border-bottom: 1px solid var(--gray-200); }
.address-suggestions div:hover { background: var(--gray-100); }

/* ===== COMPTE CLIENT ===== */
.account-section { padding: 120px 5% 80px; max-width: 900px; margin: 0 auto; }
.account-tabs { display: flex; gap: 0; margin-bottom: 40px; border-bottom: 2px solid var(--gray-200); }
.account-tab { padding: 14px 32px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); background: none; font-weight: 500; }
.account-tab.active { border-bottom-color: var(--black); font-weight: 700; }
.order-card { border: 1px solid var(--gray-200); padding: 24px; margin-bottom: 16px; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.order-status { padding: 4px 12px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.status-en_attente { background: #fff3cd; color: #856404; }
.status-payee { background: #d4edda; color: #155724; }
.status-expediee { background: #cce5ff; color: #004085; }
.status-livree { background: #d1ecf1; color: #0c5460; }
.status-annulee { background: #f8d7da; color: #721c24; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item svg { width: 24px; height: 24px; stroke: var(--rose-dark); stroke-width: 1.5; fill: none; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray-500); }
.map-container { width: 100%; height: 400px; border: 1px solid var(--gray-200); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 30px; right: 30px; padding: 16px 28px; background: var(--black); color: var(--white); font-size: 14px; z-index: 10000; opacity: 0; transform: translateY(20px); transition: var(--transition); border-radius: 2px; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: var(--danger); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--black); color: var(--white); padding: 16px 5%; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9000; font-size: 13px; }
.cookie-banner button { padding: 10px 24px; border: none; cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.cookie-accept { background: var(--rose); color: var(--black); }
.cookie-reject { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3) !important; }

/* ===== SUCCESS PAGE ===== */
.success-section { padding: 140px 5% 80px; text-align: center; max-width: 600px; margin: 0 auto; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; }
.success-icon svg { width: 40px; height: 40px; stroke: var(--white); stroke-width: 2; fill: none; }

/* ===== LEGAL PAGES ===== */
.legal-section { padding: 140px 5% 80px; max-width: 800px; margin: 0 auto; }
.legal-section h1 { font-family: var(--font-display); font-size: 36px; margin-bottom: 30px; }
.legal-section h2 { font-size: 20px; margin: 30px 0 12px; font-weight: 600; }
.legal-section p, .legal-section li { font-size: 15px; line-height: 1.8; color: var(--gray-700); }

/* ===== REVEAL ANIMATIONS ===== */
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); animation: revealFallback 0.8s ease 0.3s forwards; }
.reveal.visible { opacity: 1; transform: translateY(0); animation: none; transition: opacity 0.6s ease, transform 0.6s ease; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .collections-grid { grid-template-columns: 1fr; }
    .collection-card { height: 300px; }
    .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 30px; padding-top: 100px; }
    .product-gallery .main-img { height: 400px; }
    .gallery-arrows { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .product-card { flex: 0 0 45vw; }
    .carousel-arrow { display: none; }
    .carousel-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; transform: none !important; }
    .product-card { scroll-snap-align: start; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 4%; }
    .reassurance-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cart-table th:nth-child(n+3), .cart-table td:nth-child(n+3) { display: none; }
    .hero-content h1 { letter-spacing: 4px; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
    .section { padding: 60px 4%; }
    .page-header { padding: 120px 4% 40px; }
    .page-header h1 { font-size: 28px; }
    .product-card { flex: 0 0 70vw; }
    .auth-section, .account-section { padding: 120px 4% 60px; }
}
