/* Ma Bobo — Pro/Classic E-commerce */
:root {
    --primary: #1a1a1a;
    --primary-light: #333;
    --accent: #c8a96e;
    --accent-light: #d4b87a;
    --bg: #ffffff;
    --bg-alt: #f8f7f5;
    --text: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --border: #e5e5e5;
    --card-bg: #fff;
    --danger: #e74c3c;
    --success: #27ae60;
    --radius: 0px;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === HEADER / NAV === */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 10px rgba(0,0,0,0.08); }
.site-header.scrolled .nav-link, .site-header.scrolled .logo-text { color: var(--text) !important; }
.site-header.scrolled .cart-count { background: var(--primary); }

.nav-container {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
}

.logo-text {
    font-size: 22px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: #fff;
    transition: color 0.3s;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: #fff;
    transition: color 0.3s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icon { position: relative; color: #fff; transition: color 0.3s; }
.nav-icon svg { width: 20px; height: 20px; }
.cart-count {
    position: absolute; top: -8px; right: -10px;
    background: var(--accent); color: #fff;
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--text); }

/* Mobile nav */
.mobile-nav {
    display: none; position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: #fff; z-index: 150; padding: 80px 30px 30px;
    transition: right 0.4s ease; box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}
.mobile-nav.open { right: 0; display: block; }
.mobile-nav a {
    display: block; padding: 14px 0; font-size: 14px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; color: var(--text);
    border-bottom: 1px solid var(--border);
}
.mobile-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 140;
}
.mobile-overlay.open { display: block; }

/* === HERO === */
.hero {
    position: relative; height: 90vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background-size: cover; background-position: center;
    background-image: url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1600');
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; padding: 0 20px; }
.hero-sub {
    font-size: 12px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 16px; opacity: 0.9;
}
.hero-title {
    font-size: 52px; font-weight: 300; line-height: 1.15;
    margin-bottom: 20px; letter-spacing: 2px;
}
.hero-desc { font-size: 16px; opacity: 0.85; margin-bottom: 32px; line-height: 1.7; }
.hero-btn {
    display: inline-block; padding: 16px 48px;
    background: #fff; color: var(--text);
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    transition: var(--transition);
}
.hero-btn:hover { background: var(--accent); color: #fff; }

/* === SECTIONS === */
.section { padding: 80px 5%; }
.section-title {
    text-align: center; font-size: 13px; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; margin-bottom: 50px;
    position: relative;
}
.section-title::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--accent); margin: 16px auto 0;
}

/* === PRODUCT CARDS === */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px; max-width: 1400px; margin: 0 auto;
}
.product-card {
    background: var(--card-bg); overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-card .img-wrap {
    position: relative; overflow: hidden; display: block;
    height: 380px;
}
.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(--danger); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    padding: 4px 10px;
}
.product-card .info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card .cat {
    font-size: 11px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.product-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.product-card .price {
    font-size: 16px; font-weight: 700; margin-bottom: 16px;
}
.product-card .price .old {
    text-decoration: line-through; color: var(--text-muted);
    font-weight: 400; font-size: 13px; margin-left: 8px;
}
.product-card .btns { margin-top: auto; }
.btn { display: inline-block; padding: 12px 28px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: var(--transition); text-align: center; }
.btn-filled { background: var(--primary); color: #fff; }
.btn-filled:hover { background: var(--accent); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* === CARROUSEL VEDETTES === */
.carousel-section { padding: 80px 5%; overflow: hidden; }
.carousel-container { position: relative; max-width: 1400px; margin: 0 auto; }
.carousel-inner { display: flex; gap: 24px; transition: transform 0.5s ease; }
.carousel-inner .product-card { min-width: calc(33.333% - 16px); flex-shrink: 0; }
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; background: #fff;
    border: 1px solid var(--border); display: flex;
    align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: var(--transition);
}
.carousel-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.carousel-arrow:hover svg { stroke: #fff; }
.carousel-arrow svg { width: 20px; height: 20px; stroke: var(--text); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }

/* === COLLECTIONS === */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1400px; margin: 0 auto; }
.collection-card {
    position: relative; height: 450px; overflow: hidden;
    display: flex; align-items: flex-end; cursor: pointer;
}
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card .overlay {
    position: relative; z-index: 2; width: 100%;
    padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}
.collection-card .overlay h3 {
    font-size: 20px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}

/* === REASSURANCE === */
.reassurance { background: var(--bg-alt); }
.reassurance-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1200px; margin: 0 auto;
}
.reassurance-item {
    text-align: center; padding: 30px 20px;
    background: #fff; border-radius: 12px;
    transition: var(--transition);
}
.reassurance-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reassurance-item svg { width: 48px; height: 48px; stroke: var(--accent); margin-bottom: 16px; }
.reassurance-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.reassurance-item p { font-size: 13px; color: var(--text-muted); }

/* === PRODUCT DETAIL === */
.product-detail { max-width: 1200px; margin: 0 auto; padding: 120px 20px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.pd-gallery { position: relative; }
.pd-main-img { width: 100%; height: 550px; object-fit: cover; cursor: zoom-in; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-thumbs img { width: 80px; height: 80px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border 0.2s; }
.pd-thumbs img.active { border-color: var(--accent); }
.pd-gallery-arrows { position: absolute; top: 50%; left: 0; right: 0; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.pd-arrow { pointer-events: all; width: 40px; height: 40px; background: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; margin: 0 8px; }
.pd-arrow:hover { background: #fff; }
.pd-arrow svg { width: 18px; height: 18px; }
.pd-info h1 { font-size: 28px; font-weight: 300; letter-spacing: 1px; margin-bottom: 8px; }
.pd-info .pd-cat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.pd-info .pd-price { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.pd-info .pd-price .old { text-decoration: line-through; color: var(--text-muted); font-weight: 400; font-size: 16px; margin-left: 10px; }
.pd-info .pd-desc { color: var(--text-light); line-height: 1.8; margin: 20px 0; font-size: 14px; }
.pd-sizes { margin-bottom: 20px; }
.pd-sizes label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.sizes-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
    padding: 10px 18px; border: 1px solid var(--border);
    font-size: 12px; font-weight: 600; cursor: pointer;
    transition: var(--transition);
}
.size-btn:hover { border-color: var(--primary); }
.size-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.size-btn.sold-out { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.pd-stock { font-size: 13px; color: var(--success); margin-bottom: 16px; }
.pd-qty { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pd-qty button { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.pd-qty input { width: 50px; text-align: center; border: 1px solid var(--border); padding: 8px; font-size: 14px; }
.btn-add-cart {
    width: 100%; padding: 16px; background: var(--primary); color: #fff;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; transition: var(--transition);
}
.btn-add-cart:hover { background: var(--accent); }
.pd-reassurance { margin-top: 24px; padding: 20px; border: 1px solid var(--border); }
.pd-reassurance-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 13px; color: var(--text-light); }
.pd-reassurance-item svg { width: 20px; height: 20px; stroke: var(--accent); flex-shrink: 0; }

/* === LIGHTBOX === */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; transition: opacity 0.3s; }
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 36px; cursor: pointer; }

/* === FILTER BAR === */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    padding: 10px 24px; font-size: 11px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    border: 1px solid var(--border); background: #fff;
    cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* === CART === */
.cart-page { max-width: 900px; margin: 0 auto; padding: 120px 20px 60px; }
.cart-page h1 { font-size: 28px; font-weight: 300; letter-spacing: 2px; margin-bottom: 40px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 12px 8px; border-bottom: 2px solid var(--primary); }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table .cart-img { width: 80px; height: 80px; object-fit: cover; }
.cart-table .cart-name { font-weight: 600; font-size: 14px; }
.cart-table .cart-size { font-size: 12px; color: var(--text-muted); }
.cart-table .cart-sku { font-size: 11px; color: var(--text-muted); }
.cart-qty-ctrl { display: flex; align-items: center; gap: 6px; }
.cart-qty-ctrl button { width: 28px; height: 28px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.cart-qty-ctrl span { min-width: 24px; text-align: center; }
.cart-remove { color: var(--danger); cursor: pointer; font-size: 18px; }
.cart-total-row { text-align: right; padding: 20px 0; font-size: 20px; font-weight: 700; }

/* Cart steps */
.cart-step { display: none; margin-top: 30px; }
.cart-step.active { display: block; }
.auth-choice { display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto; text-align: center; }
.auth-choice .btn { width: 100%; }
.shipping-form { max-width: 600px; }
.shipping-form .form-group { margin-bottom: 16px; }
.shipping-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.shipping-form input, .shipping-form select {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    font-size: 14px; font-family: inherit; transition: border 0.2s;
}
.shipping-form input:focus, .shipping-form select:focus { border-color: var(--primary); outline: none; }
.shipping-summary { background: var(--bg-alt); padding: 24px; margin-top: 20px; }
.shipping-summary .line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.shipping-summary .line.total { font-weight: 700; font-size: 18px; border-top: 2px solid var(--primary); padding-top: 12px; margin-top: 8px; }
.address-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--border); max-height: 200px; overflow-y: auto; z-index: 50; }
.address-suggestions div { padding: 10px 16px; cursor: pointer; font-size: 13px; }
.address-suggestions div:hover { background: var(--bg-alt); }

/* === AUTH === */
.auth-page { max-width: 500px; margin: 0 auto; padding: 140px 20px 60px; }
.auth-page h1 { font-size: 28px; font-weight: 300; letter-spacing: 2px; margin-bottom: 10px; text-align: center; }
.auth-tabs { display: flex; justify-content: center; gap: 24px; margin-bottom: 30px; }
.auth-tab { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 8px 0; border-bottom: 2px solid transparent; cursor: pointer; transition: 0.2s; }
.auth-tab.active { border-color: var(--primary); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form .form-group { margin-bottom: 16px; }
.auth-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
.auth-form input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); font-size: 14px; font-family: inherit; }
.auth-form input:focus { border-color: var(--primary); outline: none; }
.auth-form .btn-filled { width: 100%; margin-top: 10px; }
.auth-error { color: var(--danger); font-size: 13px; text-align: center; margin-bottom: 12px; }

/* === ACCOUNT === */
.account-page { max-width: 900px; margin: 0 auto; padding: 120px 20px 60px; }
.account-tabs { display: flex; gap: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--border); }
.account-tab { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 10px 0; border-bottom: 2px solid transparent; cursor: pointer; }
.account-tab.active { border-color: var(--primary); }
.account-section { display: none; }
.account-section.active { display: block; }
.order-card { border: 1px solid var(--border); padding: 20px; margin-bottom: 16px; }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.order-header h3 { font-size: 15px; font-weight: 600; }
.badge { display: inline-block; padding: 4px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-paid { background: #d4edda; color: #155724; }
.badge-shipped { background: #cce5ff; color: #004085; }
.badge-delivered { background: #d1e7dd; color: #0f5132; }
.badge-cancelled { background: #f8d7da; color: #721c24; }
.order-items { font-size: 13px; color: var(--text-light); }
.order-items .item-line { padding: 4px 0; }
.track-btn { display: inline-block; padding: 10px 24px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }
.profile-form .form-group { margin-bottom: 16px; }
.profile-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
.profile-form input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); font-size: 14px; }
.profile-form input:focus { border-color: var(--primary); outline: none; }
.profile-form input[disabled] { background: var(--bg-alt); }

/* === CONTACT === */
.contact-page { max-width: 800px; margin: 0 auto; padding: 120px 20px 60px; }
.contact-page h1 { font-size: 28px; font-weight: 300; letter-spacing: 2px; margin-bottom: 40px; text-align: center; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-info-item { text-align: center; padding: 30px; }
.contact-info-item svg { width: 32px; height: 32px; stroke: var(--accent); margin: 0 auto 16px; }
.contact-info-item h3 { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.contact-info-item p { font-size: 14px; color: var(--text-light); }
.map-container { margin-top: 40px; }
.map-container iframe { width: 100%; height: 400px; border: none; }

/* === SUCCESS === */
.success-page { max-width: 600px; margin: 0 auto; padding: 140px 20px 60px; text-align: center; }
.success-icon svg { width: 80px; height: 80px; stroke: var(--success); margin-bottom: 24px; }
.success-page h1 { font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.success-page p { color: var(--text-light); margin-bottom: 30px; }

/* === LEGAL PAGE === */
.legal-page { max-width: 800px; margin: 0 auto; padding: 120px 20px 60px; }
.legal-page h1 { font-size: 28px; font-weight: 300; letter-spacing: 2px; margin-bottom: 30px; }
.legal-content h2 { font-size: 20px; margin: 24px 0 12px; }
.legal-content h3 { font-size: 16px; margin: 16px 0 8px; }
.legal-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }

/* === FOOTER === */
.site-footer { background: var(--primary); color: #fff; padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.7); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.4); }

/* === TOAST === */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: #fff; padding: 14px 28px; font-size: 13px; font-weight: 500; z-index: 10000; transform: translateY(100px); opacity: 0; transition: all 0.4s; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: var(--danger); }

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: #fff; padding: 16px 30px; display: flex; align-items: center; justify-content: space-between; z-index: 9998; font-size: 13px; }
.cookie-banner button { padding: 8px 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px; cursor: pointer; margin-left: 10px; }
.cookie-accept { background: var(--accent); color: #fff; border: none; }
.cookie-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
.reveal { animation: revealFallback 0.8s ease 0.3s forwards; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-content > * { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.hero-content .hero-sub { animation-delay: 0.2s; }
.hero-content .hero-title { animation-delay: 0.4s; }
.hero-content .hero-desc { animation-delay: 0.6s; }
.hero-content .hero-btn { animation-delay: 0.8s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .carousel-inner .product-card { min-width: calc(50% - 12px); }
    .collections-grid { grid-template-columns: 1fr; }
    .collection-card { height: 300px; }
    .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; gap: 30px; padding-top: 100px; }
    .pd-main-img { height: 400px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-container { padding: 14px 20px; }
    .logo-text { font-size: 18px; }
    .hero { height: 70vh; min-height: 500px; }
    .hero-title { font-size: 32px; }
    .section { padding: 50px 5%; }
    .carousel-section { padding: 50px 5%; }
    .carousel-arrow { display: none; }
    .carousel-inner {
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory; transform: none !important;
    }
    .carousel-inner .product-card { min-width: 45vw; scroll-snap-align: start; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card .img-wrap { height: 220px; }
    .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
    .cart-table tr { border-bottom: 1px solid var(--border); padding: 16px 0; }
    .pd-gallery-arrows { display: none; }
    .filter-bar { gap: 8px; }
    .filter-btn { padding: 8px 14px; font-size: 10px; }
}
