/* THE LEAN UP — Luxe / Chic — Blanc & Rose */
:root {
    --primary: #d4849a;
    --primary-dark: #b86b82;
    --primary-light: #f2d5dd;
    --bg: #ffffff;
    --bg-alt: #faf6f7;
    --text: #1a1a1a;
    --text-light: #777;
    --border: #e8e0e3;
    --gold: #d4849a;
    --gold-light: #e8a3b5;
    --danger: #c0392b;
    --success: #27ae60;
    --radius: 0;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --font: 'Inter', sans-serif;
    --font-title: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    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; }

/* ====== HEADER / NAV ====== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
    padding: 0 5%;
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}
.header-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.logo {
    font-family: var(--font-title);
    font-size: 22px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--text);
}
.header.scrolled .logo { color: var(--text); }
.header:not(.scrolled) .logo { color: #fff; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: 12px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text);
    transition: color 0.3s; position: relative;
}
.header:not(.scrolled) .nav a { color: #fff; }
.nav a:hover { color: var(--primary); }
.nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--primary);
    transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.nav-icons { display: flex; align-items: center; gap: 20px; }
.nav-icons a { position: relative; }
.nav-icons svg { width: 22px; height: 22px; stroke: var(--text); fill: none; stroke-width: 1.5; }
.header:not(.scrolled) .nav-icons svg { stroke: #fff; }
.cart-count {
    position: absolute; top: -8px; right: -10px;
    background: var(--primary); 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: 1002; }
.hamburger span { width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.header:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
    display: none; position: fixed; top: 0; right: -100%;
    width: 320px; height: 100vh;
    background: #fff; z-index: 1001;
    padding: 80px 40px 40px; transition: right 0.4s ease;
    flex-direction: column; gap: 0;
}
.mobile-nav.open { right: 0; display: flex; }
.mobile-nav a {
    font-size: 14px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text);
    padding: 16px 0; 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.4);
    z-index: 1000;
}
.mobile-overlay.open { display: block; }

/* ====== HERO ====== */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600') center/cover no-repeat;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 0 20px; }
.hero-content h1 {
    font-family: var(--font-title);
    font-size: 56px; font-weight: 400;
    letter-spacing: 8px; text-transform: uppercase;
    margin-bottom: 16px; line-height: 1.1;
}
.hero-content p {
    font-size: 15px; letter-spacing: 2px; font-weight: 300;
    opacity: 0.9; margin-bottom: 8px;
}
.hero-content .hero-desc {
    font-size: 14px; letter-spacing: 1px; opacity: 0.7;
    margin-top: 12px;
}
.hero-btn {
    display: inline-block; margin-top: 32px;
    padding: 14px 48px;
    border: 1px solid #fff; color: #fff;
    font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    transition: all 0.3s;
}
.hero-btn:hover { background: #fff; color: var(--text); }

/* ====== SECTIONS ====== */
.section { padding: 80px 5%; }
.section-title {
    font-family: var(--font-title);
    font-size: 32px; font-weight: 400;
    text-align: center; letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 12px;
}
.section-line {
    width: 60px; height: 1px; background: var(--primary);
    margin: 0 auto 48px;
}

/* ====== PRODUCTS GRID ====== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px; max-width: 1400px; margin: 0 auto;
}
.product-card { position: relative; }
.product-card .img-wrap {
    display: block; position: relative; overflow: hidden;
    aspect-ratio: 3/4; background: var(--bg-alt);
}
.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(--primary); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    padding: 4px 12px;
}
.product-card .info { padding: 16px 0; }
.product-card .cat {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-light);
}
.product-card h3 {
    font-size: 15px; font-weight: 500;
    margin: 6px 0; letter-spacing: 0.5px;
}
.product-card .price {
    font-size: 14px; font-weight: 600; color: var(--primary-dark);
}
.product-card .price .old {
    text-decoration: line-through; color: var(--text-light);
    font-weight: 400; margin-left: 8px; font-size: 13px;
}
.product-card .btns { margin-top: 12px; }
.btn { display: inline-block; padding: 10px 28px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; cursor: pointer; border: none; }
.btn-filled { background: var(--text); color: #fff; }
.btn-filled:hover { background: var(--primary); }
.btn-outline { border: 1px solid var(--text); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--text); color: #fff; }

/* ====== COLLECTIONS ====== */
.collections-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1400px; margin: 0 auto;
}
.collection-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4; cursor: pointer;
}
.collection-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    display: flex; align-items: flex-end; padding: 24px;
}
.collection-card .overlay span {
    color: #fff; font-size: 16px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
}

/* ====== REASSURANCE ====== */
.reassurance {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; padding: 80px 5%; background: var(--bg-alt);
}
.reassurance-item {
    text-align: center; padding: 30px 20px;
    border-radius: 12px; background: #fff;
    transition: all 0.3s ease;
}
.reassurance-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reassurance-item svg { width: 48px; height: 48px; stroke: var(--primary); fill: none; stroke-width: 1.5; margin: 0 auto 16px; }
.reassurance-item h4 { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.reassurance-item p { font-size: 13px; color: var(--text-light); }

/* ====== CARROUSEL VEDETTES ====== */
.carousel-section { overflow: hidden; position: relative; max-width: 1400px; margin: 0 auto; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.carousel-track .product-card { min-width: calc(33.333% - 16px); flex-shrink: 0; }
.carousel-arrows { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.carousel-arrow {
    width: 44px; height: 44px; border: 1px solid var(--border);
    background: #fff; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s;
}
.carousel-arrow:hover { border-color: var(--primary); }
.carousel-arrow svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 1.5; }

/* ====== PRODUCT PAGE ====== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 120px 5% 60px; }
.product-gallery { position: relative; }
.product-gallery .main-img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-alt); position: relative; cursor: zoom-in; }
.product-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.gallery-thumbs img { width: 72px; height: 90px; object-fit: cover; cursor: pointer; opacity: 0.6; transition: opacity 0.3s; border: 1px solid transparent; }
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; border-color: var(--primary); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(255,255,255,0.8); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; }
.gallery-nav svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 2; }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }

.product-info { padding-top: 20px; }
.product-info .cat { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }
.product-info h1 { font-family: var(--font-title); font-size: 28px; font-weight: 400; margin: 8px 0 16px; letter-spacing: 1px; }
.product-info .price { font-size: 22px; font-weight: 600; color: var(--primary-dark); margin-bottom: 24px; }
.product-info .price .old { font-size: 16px; }
.product-info .desc { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 24px; }

.size-selector { margin-bottom: 20px; }
.size-selector label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { padding: 10px 18px; border: 1px solid var(--border); background: #fff; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.3s; letter-spacing: 1px; }
.size-btn:hover, .size-btn.active { border-color: var(--text); background: var(--text); color: #fff; }
.size-btn.sold-out { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.stock-info { font-size: 12px; color: var(--success); margin: 10px 0; }

.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.qty-btn { width: 40px; height: 40px; border: 1px solid var(--border); background: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-input { width: 50px; height: 40px; border: 1px solid var(--border); border-left: none; border-right: none; text-align: center; font-size: 14px; font-weight: 500; }

.add-to-cart { width: 100%; padding: 16px; background: var(--text); color: #fff; border: none; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-bottom: 20px; }
.add-to-cart:hover { background: var(--primary); }

.product-reassurance { border-top: 1px solid var(--border); padding-top: 20px; }
.product-reassurance .item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.product-reassurance .item svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.product-reassurance .item span { font-size: 13px; color: var(--text-light); }

/* ====== CART ====== */
.cart-page { max-width: 900px; margin: 0 auto; padding: 120px 5% 60px; }
.cart-page h1 { font-family: var(--font-title); font-size: 28px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 32px; }
.cart-empty { text-align: center; padding: 80px 20px; color: var(--text-light); font-size: 15px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-align: left; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-light); }
.cart-table td { padding: 16px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table .cart-img { width: 72px; height: 90px; object-fit: cover; }
.cart-table .cart-product-info h4 { font-size: 14px; font-weight: 500; }
.cart-table .cart-product-info .sku { font-size: 11px; color: var(--text-light); }
.cart-table .cart-product-info .size { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.cart-remove { background: none; border: none; cursor: pointer; font-size: 18px; color: var(--text-light); }
.cart-remove:hover { color: var(--danger); }
.cart-summary { margin-top: 32px; text-align: right; }
.cart-summary .total { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.cart-summary .shipping { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }

/* ====== FORMS ====== */
.form-section { max-width: 500px; margin: 0 auto; padding: 120px 5% 60px; }
.form-section h1 { font-family: var(--font-title); font-size: 28px; letter-spacing: 3px; text-transform: uppercase; text-align: center; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); background: #fff;
    font-family: var(--font); font-size: 14px;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-btn { width: 100%; padding: 14px; background: var(--text); color: #fff; border: none; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.form-btn:hover { background: var(--primary); }
.form-toggle { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-light); }
.form-toggle a { color: var(--primary); font-weight: 500; }

/* Address form in cart */
.address-form { max-width: 600px; margin: 32px auto 0; padding: 32px; border: 1px solid var(--border); background: var(--bg-alt); }
.address-form h3 { font-family: var(--font-title); font-size: 20px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.address-suggestions { position: absolute; z-index: 10; background: #fff; border: 1px solid var(--border); width: 100%; max-height: 200px; overflow-y: auto; }
.address-suggestions div { padding: 10px 16px; cursor: pointer; font-size: 13px; }
.address-suggestions div:hover { background: var(--bg-alt); }

/* Auth choice modal */
.auth-choice { background: var(--bg-alt); padding: 32px; margin: 24px 0; text-align: center; }
.auth-choice h3 { font-family: var(--font-title); font-size: 18px; letter-spacing: 2px; margin-bottom: 20px; }
.auth-choice-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.auth-choice-btns .btn { font-size: 11px; }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-family: var(--font-title); font-size: 20px; margin-bottom: 24px; letter-spacing: 2px; text-transform: uppercase; }
.contact-info .item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-info .item svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-info .item p { font-size: 14px; line-height: 1.6; }
.contact-map { border-radius: 4px; overflow: hidden; min-height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ====== ACCOUNT ====== */
.account-page { max-width: 900px; margin: 0 auto; padding: 120px 5% 60px; }
.account-tabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
.account-tab { padding: 12px 24px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border-bottom: 2px solid transparent; color: var(--text-light); transition: all 0.3s; }
.account-tab.active { color: var(--text); border-bottom-color: var(--primary); }
.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 h4 { font-size: 14px; }
.status-badge { padding: 4px 12px; font-size: 10px; font-weight: 700; 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; }

/* ====== FOOTER ====== */
.footer { background: var(--text); color: #fff; padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.footer a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); padding: 4px 0; transition: color 0.3s; }
.footer a:hover { color: #fff; }
.footer p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-bottom { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ====== 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; }

/* ====== TOAST ====== */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--text); color: #fff; padding: 14px 28px; font-size: 13px; z-index: 10000; opacity: 0; transform: translateY(20px); transition: all 0.3s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: var(--danger); }

/* ====== LEGAL PAGES ====== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 120px 5% 60px; }
.legal-page h2 { font-family: var(--font-title); font-size: 28px; margin-bottom: 24px; }
.legal-page h3 { font-size: 18px; margin: 24px 0 12px; }
.legal-page p { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }

/* ====== FILTER BAR ====== */
.filter-bar { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 24px; border: 1px solid var(--border); background: #fff; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* ====== PAGE TITLE (catalog, contact...) ====== */
.page-hero { background: var(--bg-alt); padding: 120px 5% 40px; text-align: center; }
.page-hero h1 { font-family: var(--font-title); font-size: 32px; letter-spacing: 4px; text-transform: uppercase; }

/* ====== COOKIE BANNER ====== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text); color: #fff; padding: 16px 5%; display: flex; align-items: center; justify-content: space-between; z-index: 9998; font-size: 13px; }
.cookie-banner button { padding: 8px 20px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none; margin-left: 12px; }
.cookie-accept { background: var(--primary); color: #fff; }
.cookie-reject { background: transparent; border: 1px solid rgba(255,255,255,0.3) !important; color: #fff; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .reassurance { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; gap: 24px; padding-top: 90px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .hero-content h1 { font-size: 32px; letter-spacing: 4px; }
    .section { padding: 60px 5%; }
    .section-title { font-size: 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .collections-grid { grid-template-columns: 1fr; }
    .reassurance { grid-template-columns: 1fr 1fr; gap: 16px; padding: 40px 5%; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .carousel-track .product-card { min-width: 45vw; }
    .carousel-arrows { display: none; }
    .carousel-track { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; transform: none !important; }
    .carousel-track .product-card { scroll-snap-align: start; }
    .form-row { grid-template-columns: 1fr; }
    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
    .cart-table tr { padding: 16px 0; }
    .gallery-nav { display: none; }
    .account-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .account-tab { white-space: nowrap; flex-shrink: 0; }
}

@media (max-width: 480px) {
    .hero { min-height: 500px; }
    .hero-content h1 { font-size: 26px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .reassurance { grid-template-columns: 1fr; }
}
