/* ============================================
   GOALBAM — CSS COMPLET
   Polices: Bebas Neue + Inter
   Icons: Tabler Icons
   ============================================ */

/* === VARIABLES === */
:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-lighter: #1e1e1e;
    --gold: #BA7517;
    --gold-light: #D4922A;
    --gold-dark: #8B5A10;
    --gold-glow: rgba(186, 117, 23, 0.15);
    --ivory: #f4ede3;
    --ivory-dark: #e8ddd0;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #cccccc;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #222222;
    --text-primary: var(--ivory);
    --text-secondary: rgba(244, 237, 211, 0.6);
    --text-muted: rgba(244, 237, 211, 0.35);
    --border-color: rgba(186, 117, 23, 0.2);
    --border-color-strong: rgba(186, 117, 23, 0.5);
    --bg-card: #121212;
    --bg-card-hover: #1a1a1a;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 30px rgba(186, 117, 23, 0.3);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: .025em; color: var(--ivory); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { color: var(--text-secondary); line-height: 1.7; }

/* === LAYOUT === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(44px, 6vw, 80px) 0; }
.section-alt {
    background-color: var(--black-light);
    background-image: linear-gradient(45deg, transparent 47%, rgba(212,146,42,.035) 48%, rgba(212,146,42,.035) 52%, transparent 53%), linear-gradient(-45deg, transparent 47%, rgba(212,146,42,.025) 48%, rgba(212,146,42,.025) 52%, transparent 53%);
    background-size: 52px 52px;
}
.section-header { text-align: center; margin-bottom: clamp(20px, 3vw, 38px); }
.section-sub { font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title { font-family: var(--font-display); font-style: normal; font-weight: 400; letter-spacing: .03em; }

/* === HEADER === */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}
.site-header.scrolled { background: rgba(10, 10, 10, 0.98); }
.site-header .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    height: 72px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 26px; width: auto; display: block; transition: var(--transition-fast); }
.logo:hover img { filter: drop-shadow(0 0 12px rgba(186,117,23,0.55)); }
.footer-brand .logo img { height: 32px; }

.main-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-secondary);
    position: relative; padding: 4px 0;
    transition: var(--transition-fast);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--transition-base);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); color: var(--text-secondary);
    font-size: 1.25rem; transition: var(--transition-fast);
}
.icon-btn:hover { background: var(--black-lighter); color: var(--gold); }

.cart-badge {
    position: absolute; top: 6px; right: 6px;
    background: var(--gold); color: var(--black);
    font-size: 0.6rem; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.icon-btn { position: relative; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; cursor: pointer;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--ivory); border-radius: 2px;
    transition: var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === SEARCH BAR === */
.search-bar {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 998;
    background: rgba(10,10,10,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color); padding: 14px 24px;
}
.search-bar[hidden] { display: none; }
.search-bar-inner {
    max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 10px;
    background: var(--black-lighter); border: 1px solid var(--border-color); border-radius: var(--radius-md);
    padding: 10px 14px;
}
.search-bar-inner > i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.search-bar-inner input {
    flex: 1; min-width: 0; background: none; border: none; color: var(--ivory); font-size: .95rem; outline: none;
}
.search-bar-inner input::placeholder { color: var(--text-muted); }
.search-bar-inner button {
    color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; flex-shrink: 0;
    transition: var(--transition-fast);
}
.search-bar-inner button:hover { color: var(--gold); }

/* === HERO === */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    overflow: hidden; padding: 128px max(24px, calc((100vw - 1184px) / 2)) 104px;
    isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center 35%;
    opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 73% 48%, rgba(186,117,23,0.22) 0%, transparent 68%),
                linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.88) 32%, rgba(10,10,10,0.56) 60%, rgba(10,10,10,0.5) 100%),
                linear-gradient(180deg, rgba(10,10,10,0.34) 0%, rgba(10,10,10,0.18) 52%, rgba(10,10,10,0.72) 100%);
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.42), transparent 22%, transparent 72%, rgba(0,0,0,0.75));
}
.hero-content { position: relative; z-index: 1; text-align: left; max-width: 690px; }
.hero-sub {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 22px;
}
.hero-sub::before { content: ''; display: block; width: 36px; height: 1px; background: currentColor; }
.hero-title {
    font-family: var(--font-display); font-style: normal; font-weight: 400;
    font-size: clamp(3.4rem, 6.8vw, 6.7rem); line-height: 0.96; letter-spacing: -0.035em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory) 58%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem); line-height: 1.75; color: rgba(244,237,227,0.76); margin-bottom: 44px;
    max-width: 540px;
}
.hero-desc span { color: var(--gold-light); padding: 0 3px; }
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.hero-actions .btn { min-width: 202px; padding: 16px 24px; border-radius: 2px; }
.hero-actions .btn i { font-size: 1.05rem; transition: transform var(--transition-base); }
.hero-actions .btn:hover i { transform: translate(3px, -3px); }
.hero-actions .btn-ghost { border-color: rgba(244,237,227,0.48); background: rgba(10,10,10,0.14); backdrop-filter: blur(5px); }
.hero-actions .btn-ghost:hover { border-color: var(--gold-light); background: rgba(186,117,23,0.15); color: var(--ivory); }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    min-width: 104px; padding: 8px 12px; border: 1px solid rgba(212,146,42,.9); border-radius: var(--radius-full);
    background: rgba(10,10,10,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: var(--gold-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 1.8px;
    text-transform: uppercase; animation: bounce 2s infinite;
    box-shadow: 0 4px 18px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.3);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-md);
    font-size: 0.86rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
    transition: var(--transition-base); cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black); box-shadow: 0 4px 20px rgba(186,117,23,0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(186,117,23,0.4);
}
.btn-ghost {
    border: 1px solid var(--border-color-strong); color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.btn-white { background: var(--ivory); color: var(--black); }
.btn-white:hover { background: var(--white); transform: translateY(-2px); }
.btn-whatsapp {
    background: #25D366; color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* === TRUST BAR === */
.trust-bar { position: relative; overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(255,235,184,.72); border-bottom: 1px solid rgba(104,60,8,.62); background: linear-gradient(105deg, #9a5c0e 0%, #d79a32 26%, #f2ca72 50%, #d79a32 74%, #9a5c0e 100%); box-shadow: inset 0 1px 18px rgba(255,248,218,.4), 0 8px 22px rgba(0,0,0,.3); }
.trust-bar::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%); opacity: .55; }
.trust-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.announcement-bar { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.announcement-bar > i { color: var(--black); font-size: 1.45rem; }
.announcement-bar p { color: var(--black); font-size: 1rem; font-weight: 700; letter-spacing: .1px; transition: opacity 300ms ease, transform 300ms ease; }
.announcement-bar p.is-changing { opacity: 0; transform: translateY(-7px); }

/* === COLLECTIONS GRID === */
.collections-grid {
    display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.collections-grid::-webkit-scrollbar { height: 4px; }
.collection-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    flex: 0 0 168px; min-height: 176px; scroll-snap-align: start;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    background: radial-gradient(circle at 50% 28%, #241f17, var(--black-lighter) 72%);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}
.collection-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.cc-bg { position: absolute; z-index: 0; inset: 0; background-size: cover; background-position: center; opacity: 0.5; transition: opacity var(--transition-base); }
.cc-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.6) 45%, rgba(10,10,10,.94) 100%); }
.collection-card:hover .cc-bg { opacity: 0.65; }
.cc-badge {
    position: relative; z-index: 2; width: 68px; height: 68px; margin-top: 18px; flex-shrink: 0;
    border-radius: var(--radius-md); background: var(--ivory);
    display: flex; align-items: center; justify-content: center; padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,.35); transition: var(--transition-base);
}
.cc-badge img { width: 100%; height: 100%; object-fit: contain; }
.collection-card:hover .cc-badge { transform: translateY(-4px); }
.cc-content { position: relative; z-index: 3; padding: 12px 14px 16px; text-align: center; width: 100%; }
.cc-tag {
    display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
    background: var(--gold); color: var(--black);
    font-size: 0.58rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    margin-bottom: 6px;
}
.collection-card h3 { font-family: var(--font-display); font-style: normal; font-size: 1.05rem; margin-bottom: 2px; }
.collection-card p { display: none; }
.cc-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.65rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
    color: var(--gold);
    transition: var(--transition-base);
}

/* === PRODUCTS GRID === */
.products-slider { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.products-slider::-webkit-scrollbar { height: 4px; }
.products-slider .product-card { min-width: 280px; scroll-snap-align: start; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); grid-auto-rows: 1fr; gap: 24px; }

.product-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 10px; overflow: hidden; display: flex; flex-direction: column;
    min-height: 100%; transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base); cursor: pointer;
}
.products-grid .product-card, .products-slider .product-card { height: 100%; }
.product-card:hover {
    border-color: rgba(212,146,42,0.65); transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.28);
}
.product-image {
    aspect-ratio: 1; background: radial-gradient(circle at 50% 35%, #29231c, var(--black-lighter) 70%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform 500ms cubic-bezier(.2,.75,.25,1); }
.product-card:hover .product-image img { transform: scale(1.055); }
.product-overlay {
    position: absolute; inset: 0; background: rgba(10,10,10,0.44);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition-base);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 18px; display: flex; flex: 1; flex-direction: column; }
.product-category { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.product-name { font-family: var(--font-display); font-style: normal; font-size: 1.25rem; line-height: 1.15; color: var(--ivory); margin-bottom: 13px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-current { font-weight: 600; color: var(--gold); font-size: 1rem; }
.price-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.tag {
    padding: 4px 8px; border-radius: var(--radius-full); background: rgba(244,237,227,0.06);
    font-size: 0.58rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
}
.tag-authentic { background: rgba(186,117,23,0.15); color: var(--gold); border: 1px solid var(--border-color); }
.tag-new { background: rgba(76,175,80,0.15); color: #4CAF50; border: 1px solid rgba(76,175,80,0.3); }
.tag-hot { background: rgba(244,67,54,0.15); color: #f44336; border: 1px solid rgba(244,67,54,0.3); }

/* === PAGE HEADER === */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    border-bottom: 1px solid var(--border-color);
}
.page-title { font-family: var(--font-display); font-style: normal; text-align: center; margin-bottom: 8px; }
.page-desc { text-align: center; color: var(--text-secondary); }

/* === COLLECTIONS LAYOUT === */
.collections-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 40px 0; }
.filters-sidebar { position: sticky; top: 100px; height: fit-content; }
.filter-group { margin-bottom: 28px; }
.filter-group h3 {
    font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.filter-group label { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; }
.filter-group label input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer;
}
.filter-group label span { font-size: 0.85rem; color: var(--text-secondary); }
.collections-toolbar { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
.collections-toolbar select {
    background: var(--black-lighter); border: 1px solid var(--border-color);
    color: var(--ivory); padding: 8px 16px; border-radius: var(--radius-md);
    font-size: 0.85rem; cursor: pointer;
}

/* === PRODUCT DETAIL === */
.product-detail { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(42px, 7vw, 104px); padding: clamp(110px, 12vw, 150px) 0; }
.gallery-main { margin-bottom: 14px; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--border-color); border-radius: 12px; background: radial-gradient(circle at 50% 32%, #29231c, var(--black-lighter) 72%); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: clamp(18px, 4vw, 42px); cursor: zoom-in; user-select: none; touch-action: pan-y; transition: opacity 180ms ease, transform 500ms cubic-bezier(.2,.75,.25,1); }
@media (hover: hover) and (pointer: fine) { .gallery-main:hover img { transform: scale(1.075); } }
.gallery-main img.is-changing { opacity: 0; transform: scale(.985); }
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 8px; scroll-snap-type: x mandatory; }
.gallery-thumb {
    width: 76px; height: 76px; flex: 0 0 76px; background: var(--black-lighter); border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition-fast);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.product-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.badge {
    padding: 4px 12px; border-radius: var(--radius-full);
    background: var(--gold); color: var(--black);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.product-id { font-size: 0.75rem; color: var(--text-muted); }
.product-title { font-family: var(--font-display); font-style: normal; font-size: clamp(2.7rem, 4.5vw, 4.25rem); line-height: .98; margin-bottom: 22px; }
.product-price { margin-bottom: 20px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.current-price { font-size: clamp(1.75rem, 3vw, 2.3rem); font-weight: 700; color: var(--gold-light); }
.price-note { font-size: 0.8rem; color: var(--text-secondary); }
.product-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 28px; }
.option-group { margin-bottom: 20px; }
.option-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn {
    padding: 8px 18px; border-radius: var(--radius-md);
    background: var(--black-lighter); border: 1px solid var(--border-color);
    color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
    transition: var(--transition-fast); cursor: pointer;
}
.option-btn:hover { border-color: var(--gold); color: var(--gold); }
.option-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: var(--black-lighter); border: 1px solid var(--border-color);
    color: var(--text-secondary); font-weight: 600;
    transition: var(--transition-fast); cursor: pointer;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
/* Taille épuisée (stock géré depuis le dashboard) */
.size-btn:disabled {
    opacity: 0.35; cursor: not-allowed;
    text-decoration: line-through;
    border-color: var(--border-color);
}
.size-btn:disabled:hover { border-color: var(--border-color); color: var(--text-secondary); }
.option-optional { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--text-muted); font-size: 0.75rem; }
.flocage-toggle { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.flocage-fields { display: grid; grid-template-columns: 1fr 100px; gap: 10px; }
.flocage-fields[hidden] { display: none; }
.flocage-warning {
    margin-top: 10px; padding: 10px 14px; border-radius: var(--radius-md);
    background: rgba(186,117,23,0.1); border: 1px solid var(--border-color-strong);
    color: var(--gold-light); font-size: 0.8rem; font-weight: 600; line-height: 1.5;
}
.flocage-warning[hidden] { display: none; }
.flocage-fields input {
    padding: 12px 14px; border-radius: var(--radius-md);
    background: var(--black-lighter); border: 1px solid var(--border-color);
    color: var(--ivory); font-size: 0.9rem;
}
.flocage-fields input::placeholder { color: var(--text-muted); }
.flocage-fields input:focus { border-color: var(--gold); }
.product-actions { display: flex; gap: 12px; margin: 28px 0; }
.product-actions .btn { flex: 1; min-height: 56px; }
.product-actions .btn-whatsapp { box-shadow: 0 10px 26px rgba(37,211,102,.18); }
.product-features { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border-color); }
.feat { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-secondary); }
.feat i { color: var(--gold); }

/* === HISTORY === */
.history-content { padding: 40px 0; max-width: 900px; margin: 0 auto; }
.history-block { margin-bottom: 48px; text-align: center; }
.history-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-glow); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.history-icon i { font-size: 1.5rem; color: var(--gold); }
.history-block h2 { font-family: var(--font-display); font-style: normal; margin-bottom: 16px; }
.history-block p { font-size: 1rem; line-height: 1.8; max-width: 600px; margin: 0 auto; }
.history-values { text-align: center; }
.history-values h2 { margin-bottom: 32px; font-family: var(--font-display); font-style: normal; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
    transition: var(--transition-base);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.8rem; }

/* === COMMUNITY === */
.community-content { padding: 40px 0; max-width: 1000px; margin: 0 auto; }
.community-intro { text-align: center; margin-bottom: 60px; }
.community-intro h2 { font-family: var(--font-display); font-style: normal; margin-bottom: 16px; }
.community-intro p { max-width: 600px; margin: 0 auto 32px; }
.community-socials { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-md);
    background: var(--black-lighter); border: 1px solid var(--border-color);
    color: var(--ivory); font-weight: 500;
    transition: var(--transition-fast);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.community-reviews h2 { text-align: center; margin-bottom: 8px; font-family: var(--font-display); font-style: normal; }
.reviews-note { text-align: center; font-size: 0.8rem; font-style: italic; color: var(--text-muted); margin-bottom: 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 24px;
    transition: var(--transition-base);
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; display: flex; gap: 2px; }
.review-card p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.review-card strong { font-size: 0.8rem; color: var(--gold); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; padding: 28px 0; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; cursor: pointer;
}
.faq-question h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; }
.faq-question i { color: var(--gold); transition: var(--transition-base); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding-bottom: 16px; font-size: 0.95rem; line-height: 1.7; }
.faq-answer p:last-of-type { padding-bottom: 20px; }
.faq-link {
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px;
    font-size: 0.85rem; font-weight: 600; color: var(--gold); border-bottom: 1px solid transparent;
}
.faq-link:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.faq-contact { text-align: center; padding: 40px 0; }
.faq-contact h3 { font-family: var(--font-display); font-style: normal; margin-bottom: 8px; }
.faq-contact p { margin-bottom: 24px; }
.faq-contact-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === RETURN POLICY === */
.return-policy-content { max-width: 820px; margin: 0 auto; padding: 40px 0 60px; }
.return-intro { text-align: center; font-size: 1rem; margin-bottom: 40px; }
.return-block { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border-color); }
.return-block:last-of-type { border-bottom: none; }
.return-block h2 {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-style: normal; font-size: 1.4rem;
    color: var(--ivory); margin-bottom: 14px;
}
.return-block h2 i { color: var(--gold); font-size: 1.3rem; }
.return-block p { margin-bottom: 12px; }
.return-block h3 { font-size: 0.95rem; color: var(--gold); margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; }
.return-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 12px; }
.return-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; }
.return-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }
.return-list { padding-left: 20px; margin-bottom: 12px; }
.return-list li { color: var(--text-secondary); line-height: 1.7; list-style: disc; margin-bottom: 4px; }
.return-block-warning { background: rgba(186,117,23,0.08); border: 1px solid var(--border-color-strong); border-radius: var(--radius-lg); padding: 24px; border-bottom: 1px solid var(--border-color-strong); }
.return-block-warning h2 i { color: var(--gold-light); }
.return-summary { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.return-summary h2 { font-family: var(--font-display); font-style: normal; font-size: 1.2rem; margin-bottom: 12px; }
.return-summary p { margin-bottom: 16px; }
.return-back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.return-back-link:hover { color: var(--gold); }

@media (max-width: 600px) {
    .return-grid { grid-template-columns: 1fr; }
    .faq-contact-actions { flex-direction: column; align-items: stretch; }
}

/* === FOOTER === */
.site-footer { background: var(--black-light); border-top: 1px solid var(--border-color); margin-top: 56px; }
.footer-main { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-brand .logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: var(--font-display); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-secondary); transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 24px; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--black-lighter); border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: 1.1rem;
    transition: var(--transition-fast);
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: white; font-size: 1.75rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition-base); animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === OFFER MODAL === */
body.modal-open { overflow: hidden; }
.offer-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.offer-modal[hidden] { display: none; }
.offer-modal-backdrop { position: absolute; inset: 0; background: rgba(10,10,10,.82); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.offer-modal-panel {
    position: relative; z-index: 1; width: min(640px, 100%); max-height: 88vh; overflow-y: auto;
    background: var(--bg-card); border: 1px solid var(--border-color-strong); border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg);
}
.offer-modal-close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
    background: var(--black-lighter); border: 1px solid var(--border-color); color: var(--ivory);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition-fast);
}
.offer-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.offer-modal-panel h2 { font-family: var(--font-display); font-style: normal; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; padding-right: 40px; }
.offer-modal-sub { font-size: .9rem; color: var(--text-secondary); margin-bottom: 24px; }
.offer-slots { display: grid; gap: 16px; margin-bottom: 24px; }
.offer-slot { border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 18px; background: rgba(10,10,10,.35); }
.offer-slot h3 { font-family: var(--font-display); font-style: normal; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 12px; }
.offer-slot-row { display: grid; grid-template-columns: 1fr 90px; gap: 10px; margin-bottom: 12px; }
.offer-slot-row select {
    padding: 12px 14px; border-radius: var(--radius-md); background: var(--black-lighter);
    border: 1px solid var(--border-color); color: var(--ivory); font-size: .85rem; cursor: pointer;
}
.offer-flocage-check { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-secondary); cursor: pointer; margin-bottom: 10px; }
.offer-flocage-check input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.offer-flocage-fields { display: grid; grid-template-columns: 1fr 90px; gap: 10px; }
.offer-flocage-fields[hidden] { display: none; }
.offer-flocage-fields input {
    padding: 10px 12px; border-radius: var(--radius-md); background: var(--black-lighter);
    border: 1px solid var(--border-color); color: var(--ivory); font-size: .85rem;
}
.offer-flocage-fields input::placeholder { color: var(--text-muted); }
.offer-summary { border-top: 1px solid var(--border-color); padding-top: 18px; margin-bottom: 20px; display: grid; gap: 8px; }
.offer-summary-line { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; color: var(--text-secondary); }
.offer-summary-line strong { color: var(--ivory); font-weight: 600; }
.offer-summary-line .strike { text-decoration: line-through; color: var(--text-muted); font-weight: 500; }
.offer-saving-line strong { color: #4CAF50; }
.offer-total-line { border-top: 1px solid var(--border-color); padding-top: 12px; margin-top: 4px; font-size: 1rem; }
.offer-total-line strong { color: var(--gold-light); font-size: 1.3rem; font-family: var(--font-display); font-weight: 400; }
.offer-submit { width: 100%; min-height: 56px; }

/* === MA SÉLECTION === */
.btn-add-selection {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 12px; padding: 10px; border-radius: var(--radius-md);
    border: 1px solid var(--border-color); background: transparent; color: var(--text-secondary);
    font-size: 0.78rem; font-weight: 600; letter-spacing: .3px;
    transition: var(--transition-fast); cursor: pointer;
}
.btn-add-selection:hover { border-color: var(--gold); color: var(--gold); }
.btn-add-selection.is-added { border-color: #4CAF50; color: #4CAF50; }
/* Maillot en rupture : ajout impossible */
.btn-add-selection:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-add-selection:disabled:hover { border-color: var(--border-color); color: var(--text-secondary); }

.selection-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--black-lighter); border: 2px solid var(--gold); color: var(--gold);
    font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.4); transition: var(--transition-base); cursor: pointer;
}
.selection-float:hover { transform: scale(1.08); background: var(--gold); color: var(--black); }
.selection-float[hidden] { display: none; }

.selection-items { display: grid; gap: 14px; max-height: 50vh; overflow-y: auto; margin-bottom: 20px; padding-right: 4px; }
.selection-item { display: flex; gap: 14px; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 14px; background: rgba(10,10,10,.35); }
.selection-item-media { width: 64px; height: 64px; flex-shrink: 0; border-radius: var(--radius-md); background: var(--black-lighter); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.selection-item-media img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.selection-item-body { flex: 1; min-width: 0; }
.selection-item-body h3 { font-family: var(--font-display); font-style: normal; font-size: 1rem; margin-bottom: 10px; }
.selection-item-row { display: flex; gap: 10px; margin-bottom: 10px; }
.selection-item-row select {
    flex: 1; padding: 8px 10px; border-radius: var(--radius-md); background: var(--black-lighter);
    border: 1px solid var(--border-color); color: var(--ivory); font-size: .82rem;
}
.selection-remove {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--radius-md);
    background: var(--black-lighter); border: 1px solid var(--border-color); color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); cursor: pointer;
}
.selection-remove:hover { border-color: #f44336; color: #f44336; }
.selection-summary { border-top: 1px solid var(--border-color); padding-top: 16px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.selection-summary span { font-size: .9rem; color: var(--text-secondary); }
.selection-summary strong { color: var(--gold-light); font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.selection-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.selection-actions .btn-whatsapp { flex: 1; min-width: 200px; }
.selection-empty { text-align: center; padding: 24px 0; color: var(--text-muted); font-size: .9rem; }

@media (max-width: 480px) {
    .offer-slot-row, .offer-flocage-fields { grid-template-columns: 1fr; }
    .selection-actions { flex-direction: column; align-items: stretch; }
    .selection-actions .btn-whatsapp { min-width: 0; }
}

/* === ANIMATIONS === */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === PAGE TRANSITIONS === */
.page { display: none; }
.page.active { display: block; }

/* === BRAND CONTENT === */
.brand-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-benefit { padding: 30px 24px; border: 1px solid var(--border-color); border-radius: 10px; background: var(--bg-card); }
.brand-benefit > i { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 22px; border-radius: 50%; background: var(--gold-glow); color: var(--gold-light); font-size: 1.25rem; }
.brand-benefit h3 { font-size: 1.15rem; margin-bottom: 9px; }
.brand-benefit p { font-size: .85rem; line-height: 1.65; }


.brand-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.brand-stat { min-height: 148px; display: flex; flex-direction: column; justify-content: center; padding: 24px; text-align: center; border-right: 1px solid var(--border-color); }
.brand-stat:last-child { border-right: 0; }
.brand-stat strong { color: var(--gold-light); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-style: normal; font-weight: 400; line-height: 1; }
.brand-stat span { margin-top: 10px; color: var(--text-secondary); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }

.community-drop { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(20px, 4vw, 52px); align-items: center; max-width: 1120px; margin: 0 auto; padding: clamp(32px, 5vw, 64px); border: 1px solid var(--border-color); border-radius: 12px; background: var(--bg-card); }
.community-drop > i { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(37,211,102,.12); color: #25D366; font-size: 1.9rem; }
.community-drop .section-sub { margin-bottom: 10px; }
.community-drop .section-title { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.3rem); }
.community-drop p:not(.section-sub) { max-width: 650px; line-height: 1.7; }
.community-drop .btn { min-height: 54px; padding-inline: 23px; white-space: nowrap; }

/* === PROMO BANNER === */
.promo-banner { padding: 30px 0; }
.promo-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-xl); padding: 60px;
}
.promo-tag {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
    background: rgba(0,0,0,0.2); color: var(--ivory);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 12px;
}
.offer-saving { display: inline-block; margin-left: 8px; padding: 4px 10px; border: 1px solid rgba(10,10,10,.35); border-radius: var(--radius-full); color: var(--black); font-size: .65rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.offer-previous { font-weight: 600; text-decoration: line-through; }
.promo-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--black); margin-bottom: 12px; }
.promo-text p { color: rgba(10,10,10,0.7); margin-bottom: 24px; }
.promo-shirt { display: flex; justify-content: center; align-items: center; min-height: 200px; }
.promo-shirt img { width: min(100%, 280px); max-height: 280px; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(0,0,0,.22)); }
/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .collections-layout { grid-template-columns: 220px 1fr; gap: 24px; }
    .product-detail { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-benefits { grid-template-columns: repeat(2, 1fr); }
    .community-drop { grid-template-columns: auto 1fr; }
    .community-drop .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed; top: 72px; left: 0; right: 0; height: calc(100vh - 72px);
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; gap: 24px;
        opacity: 0; visibility: hidden; transition: var(--transition-base);
        overflow-y: auto;
    }
    .main-nav.open { opacity: 1; visibility: visible; }
    .main-nav .nav-link { font-size: 1rem; }
    .hamburger { display: flex; }
    .collections-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
    .promo-inner { grid-template-columns: 1fr; text-align: center; padding: 40px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-socials { justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero {
        align-items: flex-end; min-height: 100svh;
        padding: 112px 24px 88px;
    }
    .hero-gradient {
        background: radial-gradient(ellipse 95% 56% at 65% 35%, rgba(186,117,23,0.2), transparent 70%),
                    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.54) 44%, rgba(10,10,10,0.97) 82%, var(--black) 100%);
    }
    .hero-content { max-width: 570px; }
    .hero-title { font-size: clamp(3.05rem, 12.5vw, 4.65rem); }
    .hero-desc { max-width: 490px; margin-bottom: 30px; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 390px; }
    .hero-actions .btn { width: 100%; }
    .hero-scroll { display: none; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .products-slider { gap: 14px; padding-right: 24px; }
    .products-slider .product-card { min-width: min(78vw, 285px); }
    .product-info { padding: 14px; }
    .product-name { font-size: 1.08rem; }
    .product-price { gap: 5px; flex-wrap: wrap; }
    .price-current { font-size: .92rem; }
    .product-detail { padding: 104px 0 72px; gap: 34px; }
    .gallery-main { border-radius: 10px; }
    .gallery-thumbs { margin-right: -2px; }
    .product-actions { flex-direction: column; }
    .flocage-fields { grid-template-columns: 1fr; }
    .trust-inner { padding: 0 16px; }
    .announcement-bar { justify-content: flex-start; gap: 12px; min-height: 52px; }
    .announcement-bar > i { flex: 0 0 auto; font-size: 1.3rem; }
    .announcement-bar p { text-align: left; font-size: .86rem; font-weight: 700; line-height: 1.45; }
    .brand-benefits { gap: 12px; }
    .brand-benefit { padding: 24px 20px; }
    .brand-stats { grid-template-columns: repeat(2, 1fr); }
    .brand-stat { min-height: 130px; border-bottom: 1px solid var(--border-color); }
    .brand-stat:nth-child(2n) { border-right: 0; }
    .brand-stat:nth-last-child(-n+2) { border-bottom: 0; }
    .community-drop { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
    .community-drop .btn { grid-column: auto; justify-self: stretch; }
}

@media (max-width: 480px) {
    .hero { padding: 104px 20px 42px; }
    .hero-sub { margin-bottom: 14px; font-size: 0.65rem; letter-spacing: 3px; }
    .hero-title { font-size: clamp(2.7rem, 13vw, 3.5rem); margin-bottom: 20px; }
    .hero-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 24px; }
    .hero-desc br { display: none; }
    .hero-actions .btn { min-width: 0; padding: 14px 18px; }
    .products-grid { grid-template-columns: 1fr; gap: 16px; }
    .product-image { aspect-ratio: 1.08; }
    .product-title { font-size: 2.7rem; }
    .gallery-thumb { width: 66px; height: 66px; flex-basis: 66px; }
    .brand-benefits { grid-template-columns: 1fr; }
    .brand-stat { padding: 18px 10px; }
    .brand-stat strong { font-size: 2rem; }
    .brand-stat span { font-size: .67rem; }
    .community-drop > i { width: 52px; height: 52px; font-size: 1.55rem; }
    h2 { font-size: 1.75rem; }
    .values-grid { grid-template-columns: 1fr; }
    .section { padding: 46px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll { animation: none; }
    .hero-slide { transition: none; }
    .hero-actions .btn, .hero-actions .btn i { transition: none; }
}
