:root {
  --paper: #f4f1e8;
  --paper-deep: #e9e3d6;
  --surface: #fffdf8;
  --surface-2: #f8f5ee;
  --surface-3: #eeeee7;
  --ink: #111813;
  --muted: #687069;
  --soft-muted: #8c938d;
  --green: #123d2d;
  --green-2: #1f5b43;
  --green-3: #2b7759;
  --acid: #c9ff4a;
  --acid-2: #e2ff96;
  --danger: #a74332;
  --line: rgba(17, 24, 19, .13);
  --line-strong: rgba(17, 24, 19, .24);
  --shadow-sm: 0 14px 34px rgba(21, 31, 24, .08);
  --shadow-md: 0 28px 74px rgba(21, 31, 24, .13);
  --shadow-lg: 0 42px 120px rgba(12, 25, 17, .20);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 34px;
  --container: 1280px;
}

html[data-theme="dark"] {
  --paper: #0d1410;
  --paper-deep: #111b15;
  --surface: #151f19;
  --surface-2: #1b2820;
  --surface-3: #223128;
  --ink: #f4f3eb;
  --muted: #a6b1aa;
  --soft-muted: #7f8d84;
  --green: #d9ff82;
  --green-2: #b6e867;
  --green-3: #8cc653;
  --acid: #c9ff4a;
  --acid-2: #dfff8c;
  --danger: #ff9a83;
  --line: rgba(244, 243, 235, .13);
  --line-strong: rgba(244, 243, 235, .23);
  --shadow-sm: 0 18px 42px rgba(0, 0, 0, .22);
  --shadow-md: 0 30px 80px rgba(0, 0, 0, .32);
  --shadow-lg: 0 44px 130px rgba(0, 0, 0, .48);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
input, select, textarea { min-width: 0; }
:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; }
::selection { background: var(--acid); color: #102016; }

.container { width: min(var(--container), calc(100% - 56px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 1px; background: currentColor; content: ""; }
html[data-theme="dark"] .eyebrow { color: var(--acid); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .025em;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #fff; box-shadow: 0 14px 28px rgba(18, 61, 45, .22); }
.button-primary:hover { background: var(--green-2); box-shadow: 0 18px 34px rgba(18, 61, 45, .28); }
html[data-theme="dark"] .button-primary { color: #102016; }
.button-accent { background: var(--acid); color: #102016; box-shadow: 0 14px 30px rgba(201, 255, 74, .17); }
.button-accent:hover { background: var(--acid-2); }
.button-outline { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--green); background: var(--surface); }
.button-light { background: #fffdf8; color: #15372a; }

/* Header */
.announcement-bar { position: relative; z-index: 70; background: #0f2d22; color: #f8f7ef; }
.announcement-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 11px; letter-spacing: .01em; }
.announcement-inner p { margin: 0; }
.announcement-inner strong { color: var(--acid); }
.announcement-inner div { display: flex; gap: 22px; color: rgba(255,255,255,.78); }
.announcement-inner a:hover { color: var(--acid); }

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
html[data-theme="dark"] .site-header { background: rgba(13, 20, 16, .91); }
.nav-shell { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-glasses { position: relative; width: 54px; height: 28px; color: var(--green); }
.brand-glasses::before, .brand-glasses::after {
  position: absolute;
  top: 4px;
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 45% 45% 55% 55%;
  content: "";
}
.brand-glasses::before { left: 1px; transform: rotate(3deg); }
.brand-glasses::after { right: 1px; transform: rotate(-3deg); }
.brand-glasses i { position: absolute; top: 11px; left: 23px; width: 8px; height: 2px; background: currentColor; }
.brand-glasses i::before, .brand-glasses i::after { position: absolute; top: -5px; width: 11px; height: 2px; background: currentColor; content: ""; }
.brand-glasses i::before { right: 29px; transform: rotate(12deg); }
.brand-glasses i::after { left: 29px; transform: rotate(-12deg); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: .025em; }
.brand-copy small { margin-top: 6px; font-size: 7px; font-weight: 900; letter-spacing: .28em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 36px); }
.desktop-nav a { position: relative; padding: 29px 0 27px; font-size: 11px; font-weight: 800; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--green); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon, .menu-trigger { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); }
.nav-icon:hover, .menu-trigger:hover { border-color: var(--green); }
.theme-toggle span { grid-area: 1 / 1; transition: opacity .2s ease, transform .2s ease; }
html[data-theme="light"] .theme-moon, html[data-theme="dark"] .theme-sun { opacity: 0; transform: scale(.6); }
.cart-trigger { min-height: 43px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 10px 8px 16px; border-radius: 999px; background: var(--green); color: #fff; font-size: 11px; font-weight: 850; }
html[data-theme="dark"] .cart-trigger { color: #102016; }
.cart-trigger b { min-width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: #102016; font-size: 10px; }
.menu-trigger { display: none; align-content: center; gap: 5px; }
.menu-trigger i { width: 18px; height: 2px; background: currentColor; transition: transform .2s ease; }
.menu-trigger.is-open i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-trigger.is-open i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { display: none; max-height: 0; overflow: hidden; border-top: 1px solid transparent; transition: max-height .3s ease; }
.mobile-menu.is-open { max-height: 520px; border-color: var(--line); }
.mobile-menu-inner { display: grid; gap: 0; padding-block: 14px 24px; }
.mobile-menu a { padding: 13px 3px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 22px; }
.mobile-menu .button { margin-top: 18px; font-family: var(--sans); font-size: 12px; }

/* Home hero */
.hero { position: relative; isolation: isolate; overflow: hidden; padding: 74px 0 34px; }
.hero::before { position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 78% 28%, rgba(201,255,74,.22), transparent 26%), radial-gradient(circle at 12% 86%, rgba(35,92,67,.11), transparent 32%); content: ""; }
.hero::after { position: absolute; z-index: -1; top: -220px; right: -180px; width: 620px; height: 620px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: clamp(48px, 7vw, 108px); }
.hero-copy { padding-bottom: 20px; }
.hero h1 { max-width: 700px; margin: 22px 0 26px; font-family: var(--serif); font-size: clamp(60px, 6.2vw, 99px); font-weight: 400; letter-spacing: -.055em; line-height: .91; }
.hero h1 em, .section-heading h2 em, .inner-hero h1 em { color: var(--green-2); font-weight: 400; }
html[data-theme="dark"] .hero h1 em, html[data-theme="dark"] .section-heading h2 em, html[data-theme="dark"] .inner-hero h1 em { color: var(--acid); }
.hero-copy > p { max-width: 610px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.proof-avatars { display: flex; }
.proof-avatars i { width: 35px; height: 35px; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--paper); border-radius: 50%; background: var(--green); color: #fff; font-size: 8px; font-style: normal; font-weight: 850; }
.proof-avatars i:first-child { margin-left: 0; background: #b97f6f; }
.proof-avatars i:nth-child(2) { background: #5d748a; }
.hero-proof > span:last-child { display: grid; }
.hero-proof b { color: #d18a26; letter-spacing: .08em; }
.hero-proof small { color: var(--muted); }
.hero-visual { position: relative; min-height: 640px; }
.hero-frame { position: absolute; inset: 0 54px 22px 0; overflow: hidden; border-radius: 36px; background: var(--surface); box-shadow: var(--shadow-lg); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,27,18,.55)); content: ""; }
.hero-frame-copy { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: #fff; }
.hero-frame-copy small { display: block; margin-bottom: 5px; font-size: 9px; font-weight: 850; letter-spacing: .17em; }
.hero-frame-copy strong { max-width: 360px; display: block; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.15; }
.hero-frame-copy span { min-width: 80px; height: 80px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-size: 28px; }
.hero-float { position: absolute; z-index: 3; right: 0; bottom: 0; width: 250px; padding: 14px; border: 1px solid rgba(255,255,255,.7); border-radius: 24px; background: rgba(255,253,248,.88); box-shadow: var(--shadow-md); backdrop-filter: blur(15px); }
html[data-theme="dark"] .hero-float { border-color: var(--line); background: rgba(23,32,26,.9); }
.hero-float img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
.hero-float div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 4px 3px; }
.hero-float small { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.hero-float strong { font-size: 12px; }
.hero-seal { position: absolute; z-index: 4; top: 38px; right: 20px; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: #102016; font-size: 10px; font-weight: 900; letter-spacing: .12em; line-height: 1.35; text-align: center; transform: rotate(8deg); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 24px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stats span { display: flex; align-items: baseline; gap: 9px; color: var(--muted); font-size: 11px; }
.hero-stats strong { color: var(--ink); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.hero-stats .scroll-cue { justify-self: end; font-weight: 800; letter-spacing: .15em; }

.trust-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--green); color: #fff; }
html[data-theme="dark"] .trust-strip { color: #102016; }
.trust-track { width: max-content; min-height: 48px; display: flex; align-items: center; gap: 0; animation: marquee 26s linear infinite; }
.trust-track span { min-width: 280px; padding-inline: 34px; font-size: 10px; font-weight: 850; letter-spacing: .075em; text-align: center; }
.trust-track span::before { margin-right: 12px; color: var(--acid); content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 112px 0; }
.section-tight { padding: 72px 0; }
.section-soft { border-block: 1px solid var(--line); background: var(--surface-2); }
.section-dark { background: #102d22; color: #fff; }
.section-heading { max-width: 820px; margin-bottom: 50px; }
.section-heading h2 { margin: 15px 0 18px; font-family: var(--serif); font-size: clamp(43px, 4.5vw, 70px); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; }
.section-heading > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; }
.split-heading p { justify-self: end; max-width: 450px; }

.category-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 300px 300px; gap: 18px; }
.category-card { position: relative; isolation: isolate; overflow: hidden; min-height: 280px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.category-card:first-child { grid-row: 1 / 3; }
.category-card:last-child { grid-column: 2 / 4; }
.category-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: var(--shadow-md); }
.category-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.category-card:hover > img { transform: scale(1.035); }
.category-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(6,20,13,.02) 20%, rgba(6,20,13,.78) 100%); }
.category-index { position: absolute; z-index: 2; top: 22px; left: 22px; min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; color: #fff; font-size: 10px; }
.category-content { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; color: #fff; }
.category-content small { font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.category-content h3 { margin: 4px 0 4px; font-family: var(--serif); font-size: clamp(28px, 2.5vw, 42px); font-weight: 400; line-height: 1.05; }
.category-content p { max-width: 400px; margin: 0 0 14px; color: rgba(255,255,255,.78); font-size: 12px; }
.category-content strong { font-size: 10px; letter-spacing: .08em; }
.category-lens-visual { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, #173f2f, #10251c); }
.category-lens-visual::before, .category-lens-visual::after { position: absolute; width: 230px; height: 230px; border: 2px solid rgba(201,255,74,.65); border-radius: 50%; content: ""; }
.category-lens-visual::before { left: 16%; }
.category-lens-visual::after { right: 16%; }
.category-lens-visual b { position: relative; z-index: 1; color: var(--acid); font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: .82; text-align: center; }

/* One-model-at-a-time runway */
.model-runway-section { position: relative; overflow: hidden; background: var(--surface-2); border-block: 1px solid var(--line); }
.model-runway-section::before { position: absolute; top: -280px; right: -180px; width: 620px; height: 620px; border: 1px solid var(--line); border-radius: 50%; content: ""; pointer-events: none; }
.model-slider-shell { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--surface); box-shadow: var(--shadow-md); }
.model-slider-viewport { overflow: hidden; touch-action: pan-y; cursor: grab; }
.model-slider-viewport:active { cursor: grabbing; }
.model-slider-track { display: flex; will-change: transform; transition: transform .72s cubic-bezier(.2,.75,.2,1); }
.model-slide { min-width: 100%; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); min-height: 570px; }
.model-slide-media { position: relative; overflow: hidden; background: var(--surface-3); }
.model-slide-media img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; transition: transform 6s ease; }
.model-slide[aria-hidden="false"] .model-slide-media img, .model-slide:hover .model-slide-media img { transform: scale(1.035); }
.model-slide-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(4,16,10,.48)); content: ""; }
.model-slide-number, .model-slide-badge { position: absolute; z-index: 2; top: 22px; padding: 9px 12px; border-radius: 999px; background: rgba(255,253,248,.9); color: #15372a; font-size: 8px; font-weight: 900; letter-spacing: .12em; backdrop-filter: blur(10px); }
.model-slide-number { right: 22px; }
.model-slide-badge { left: 22px; text-transform: uppercase; }
.model-slide-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 72px); }
.model-slide-copy h3 { margin: 18px 0 16px; font-family: var(--serif); font-size: clamp(48px, 5vw, 76px); font-weight: 400; letter-spacing: -.05em; line-height: .94; }
.model-slide-copy > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; }
.model-slide-meta { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 0; margin: 34px 0; border-block: 1px solid var(--line); }
.model-slide-meta > span { min-height: 82px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 14px 16px; border-right: 1px solid var(--line); }
.model-slide-meta > span:first-child { padding-left: 0; }
.model-slide-meta > span:last-child { border-right: 0; }
.model-slide-meta small { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.model-slide-meta strong { font-size: 12px; }
.runway-colors { display: flex; align-items: center; min-height: 20px; }
.runway-color { width: 20px; height: 20px; margin-left: -3px; border: 2px solid var(--surface); border-radius: 50%; background: var(--runway-color); box-shadow: 0 0 0 1px var(--line-strong); }
.runway-color:first-child { margin-left: 0; }
.model-slide-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.model-slider-controls { min-height: 74px; display: grid; grid-template-columns: auto 1fr 180px; align-items: center; gap: 24px; padding: 15px 22px; border-top: 1px solid var(--line); }
.model-slider-arrows { display: flex; gap: 8px; }
.model-slider-arrows button { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-2); font-size: 17px; transition: transform .2s ease, border-color .2s ease; }
.model-slider-arrows button:hover { transform: translateY(-2px); border-color: var(--green); }
.model-slider-dots { display: flex; justify-content: center; gap: 8px; }
.model-slider-dots button { width: 8px; height: 8px; padding: 0; border-radius: 999px; background: var(--line-strong); transition: width .25s ease, background .25s ease; }
.model-slider-dots button.active { width: 30px; background: var(--green); }
.model-slider-progress { height: 3px; overflow: hidden; border-radius: 999px; background: var(--paper-deep); }
.model-slider-progress i { display: block; width: 12.5%; height: 100%; background: var(--green); transition: width .55s ease; }

/* Product cards: fixed image ratio, stable content and buttons on every host */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #eceee8; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-media img { transform: scale(1.018); }
.product-media.image-error::before, .modal-visual.image-error::before { position: absolute; inset: 0; display: grid; place-items: center; background: var(--surface-3); color: var(--muted); content: "Image indisponible"; }
.product-media.image-error img, .modal-visual.image-error img { opacity: 0; }
.product-badge { position: absolute; top: 15px; left: 15px; max-width: calc(100% - 82px); padding: 8px 11px; border-radius: 999px; background: rgba(255,253,248,.9); color: #173629; font-size: 8px; font-weight: 900; letter-spacing: .11em; line-height: 1.1; text-transform: uppercase; box-shadow: 0 8px 24px rgba(0,0,0,.09); backdrop-filter: blur(10px); }
.favorite-button { position: absolute; top: 13px; right: 13px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(255,253,248,.92); color: #173629; font-size: 19px; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.favorite-button.is-active { background: var(--green); color: #fff; }
.product-body { flex: 1; display: flex; flex-direction: column; padding: 23px 22px 21px; }
.product-kicker { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product-kicker span { color: var(--green-2); font-size: 8px; font-weight: 900; letter-spacing: .17em; line-height: 1.5; text-transform: uppercase; }
.product-kicker strong { flex: 0 0 auto; color: var(--green-2); font-size: 14px; }
.product-card h3 { margin: 10px 0 5px; font-family: var(--serif); font-size: clamp(27px, 2.2vw, 35px); font-weight: 400; letter-spacing: -.025em; line-height: 1.1; }
.product-reference { margin: 0; color: var(--muted); font-size: 11px; }
.product-description { min-height: 64px; margin: 17px 0 18px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.55; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.product-card-footer { margin-top: auto; }
.product-availability { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.stock-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--green-2); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.stock-pill i { width: 8px; height: 8px; border: 2px solid rgba(31,91,67,.18); border-radius: 50%; background: #20ad6c; }
.stock-pill.stock-out { color: var(--danger); }
.stock-pill.stock-out i { background: var(--danger); border-color: rgba(167,67,50,.17); }
.swatch-stack { display: flex; align-items: center; }
.swatch { width: 16px; height: 16px; display: inline-block; margin-left: -4px; border: 2px solid var(--surface); border-radius: 50%; background: var(--swatch, #ddd); box-shadow: 0 0 0 1px var(--line-strong); }
.product-action-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.product-choose { width: 100%; min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 17px; border-radius: 14px; background: var(--green); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.product-quick { min-width: 50px; min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--surface-2); color: var(--green-2); font-size: 9px; font-weight: 900; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.product-quick span { display: none; }
.product-quick b { color: #1fbf70; font-size: 18px; line-height: 1; }
.product-quick:hover { transform: translateY(-1px); border-color: var(--green); background: var(--surface-3); }
html[data-theme="dark"] .product-choose { color: #102016; }
.product-choose:hover { background: var(--green-2); transform: translateY(-1px); }
.product-choose b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: #102016; font-size: 12px; }
.product-card.is-sold-out { opacity: .82; }
.product-card.is-sold-out .product-media img { filter: grayscale(.65); }
.product-card.is-sold-out .product-choose { background: var(--surface-3); color: var(--muted); }
.product-card.is-sold-out .product-quick { opacity: 1; }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

.feature-note { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; margin-top: 32px; padding: 23px 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.feature-note p { margin: 0; color: var(--muted); }
.feature-note strong { color: var(--ink); }

.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.expertise-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); transition: transform .25s ease, background .25s ease; }
.expertise-card:hover { transform: translateY(-5px); background: var(--surface-2); }
.expertise-card > span { align-self: flex-end; color: var(--soft-muted); font-size: 10px; }
.expertise-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: auto 0 28px; border-radius: 50%; background: var(--paper-deep); color: var(--green-2); font-family: var(--serif); font-size: 28px; }
.expertise-card h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.expertise-card p { margin: 0; color: var(--muted); font-size: 12px; }

.process-panel { position: relative; overflow: hidden; padding: 60px; border-radius: 32px; background: #102d22; color: #fff; }
.process-panel::after { position: absolute; top: -280px; right: -200px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.process-panel .section-heading { position: relative; z-index: 1; }
.process-panel .section-heading p { color: rgba(255,255,255,.64); }
.process-panel .eyebrow { color: var(--acid); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); }
.process-step > span { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; background: var(--acid); color: #102016; font-size: 10px; font-weight: 900; }
.process-step h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.process-step p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; }

.request-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; padding: 48px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow-md); }
.request-panel::before { position: absolute; top: -150px; left: -110px; width: 300px; height: 300px; border-radius: 50%; background: rgba(201,255,74,.2); content: ""; }
.request-panel > div, .request-panel form { position: relative; z-index: 1; }
.request-panel h2 { margin: 13px 0 14px; font-family: var(--serif); font-size: clamp(36px, 3.5vw, 54px); font-weight: 400; line-height: 1.03; }
.request-panel p { margin: 0; color: var(--muted); }
.missing-model-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.missing-model-form label:first-child { grid-column: 1 / -1; }
.missing-model-form label { display: grid; gap: 8px; }
.missing-model-form label span { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.missing-model-form input { width: 100%; min-height: 50px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); outline: none; }
.missing-model-form input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,91,67,.10); }
.missing-model-form .button { grid-column: 1 / -1; border-radius: 12px; }

/* Inner pages */
.inner-hero { position: relative; overflow: hidden; padding: 76px 0 70px; border-bottom: 1px solid var(--line); }
.inner-hero::before { position: absolute; top: -220px; left: -180px; width: 520px; height: 520px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr minmax(420px, .72fr); align-items: center; gap: 80px; }
.inner-hero h1 { margin: 17px 0 20px; font-family: var(--serif); font-size: clamp(56px, 5.5vw, 86px); font-weight: 400; letter-spacing: -.052em; line-height: .96; }
.inner-hero p { max-width: 670px; margin: 0; color: var(--muted); font-size: 16px; }
.inner-hero-image { position: relative; overflow: hidden; min-height: 400px; border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-md); }
.inner-hero-image img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.inner-hero-image > span { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 14px 16px; border-radius: 14px; background: rgba(255,253,248,.9); color: #15372a; font-size: 10px; font-weight: 850; backdrop-filter: blur(12px); }
.inner-stat-card { min-height: 350px; display: grid; align-content: end; padding: 36px; border-radius: 28px; background: #102d22; color: #fff; }
.inner-stat-card strong { color: var(--acid); font-family: var(--serif); font-size: 95px; font-weight: 400; line-height: .8; }
.inner-stat-card span { margin-top: 24px; font-size: 17px; }

.collection-section { padding-top: 48px; }
.collection-toolbar { position: sticky; z-index: 20; top: 102px; display: grid; gap: 15px; margin-bottom: 28px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,248,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); }
html[data-theme="dark"] .collection-toolbar { background: rgba(21,31,25,.94); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tabs button { min-height: 40px; display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 10px; font-weight: 850; }
.filter-tabs button small { min-width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-3); font-size: 8px; }
.filter-tabs button.active { border-color: var(--green); background: var(--green); color: #fff; }
html[data-theme="dark"] .filter-tabs button.active { color: #102016; }
.filter-tabs button.active small { background: var(--acid); color: #102016; }
.search-tools { display: grid; grid-template-columns: 1fr 230px 200px; gap: 10px; }
.field-shell { min-height: 45px; display: flex; align-items: center; gap: 10px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); }
.field-shell > span { color: var(--muted); }
.field-shell input, .field-shell select { width: 100%; border: 0; background: transparent; outline: 0; font-size: 12px; }
.results-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; color: var(--muted); font-size: 11px; }
.results-line strong { color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.results-line button { padding: 8px 0; background: transparent; color: var(--green-2); font-size: 10px; font-weight: 850; text-decoration: underline; }
.empty-state { margin: 34px 0; padding: 70px 30px; border: 1px dashed var(--line-strong); border-radius: 24px; text-align: center; }
.empty-state strong { display: block; margin-bottom: 18px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.request-panel-collection { margin-top: 70px; }

.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.service-card > span { align-self: flex-end; color: var(--soft-muted); font-size: 10px; }
.service-card .service-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: auto 0 28px; border-radius: 50%; background: var(--paper-deep); color: var(--green-2); font-family: var(--serif); font-size: 31px; }
.service-card h2 { margin: 0 0 9px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; }
.service-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 38px 42px; border-radius: 26px; background: #102d22; color: #fff; }
.service-cta h2 { margin: 0 0 5px; font-family: var(--serif); font-size: 40px; font-weight: 400; }
.service-cta p { margin: 0; color: rgba(255,255,255,.65); }

.boutique-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.location-card { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.location-card h2 { margin: 14px 0 28px; font-family: var(--serif); font-size: clamp(36px, 3.7vw, 55px); font-weight: 400; line-height: 1.05; }
.location-card dl { margin: 0 0 34px; }
.location-card dl div { display: grid; grid-template-columns: 105px 1fr; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); }
.location-card dt { color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.location-card dd { margin: 0; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map-frame { min-height: 590px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; min-height: 590px; border: 0; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.visit-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.visit-card span { color: var(--green-2); font-family: var(--serif); font-size: 38px; }
.visit-card h3 { margin: 14px 0 7px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.visit-card p { margin: 0; color: var(--muted); font-size: 12px; }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 24px; }
.contact-sidebar { display: grid; gap: 16px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.contact-card small { color: var(--green-2); font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.contact-card h3 { margin: 10px 0 8px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.contact-card p { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.contact-card a { font-weight: 800; }
.contact-form-card { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.contact-form-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 43px; font-weight: 400; }
.contact-form-card > p { margin: 0 0 28px; color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label span { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); outline: 0; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,91,67,.1); }
.contact-form .button { grid-column: 1 / -1; border-radius: 12px; }

/* Modal */
.modal-backdrop, .cart-backdrop { position: fixed; z-index: 4000; inset: 0; display: flex; padding: 24px; background: rgba(5,12,8,.66); opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; backdrop-filter: blur(12px); }
.modal-backdrop { align-items: center; justify-content: center; }
.modal-backdrop.is-open, .cart-backdrop.is-open { opacity: 1; visibility: visible; }
.product-modal { position: relative; width: min(1160px, 100%); max-height: min(820px, calc(100vh - 48px)); overflow: auto; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-lg); transform: translateY(18px) scale(.985); transition: transform .24s ease; }
.modal-backdrop.is-open .product-modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; z-index: 5; top: 16px; right: 16px; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); font-size: 24px; }
.modal-visual { position: relative; min-height: 620px; overflow: hidden; background: var(--surface-3); }
.modal-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.modal-visual > span { position: absolute; top: 18px; left: 18px; padding: 9px 12px; border-radius: 999px; background: rgba(255,253,248,.92); color: #15372a; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.modal-copy { padding: 48px 44px 38px; }
.modal-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.modal-heading small { color: var(--green-2); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.modal-heading h2 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.modal-heading > strong { flex: 0 0 auto; color: var(--green-2); font-size: 19px; }
.modal-story { margin: 22px 0 25px; color: var(--muted); }
.modal-specs { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.modal-specs span { display: grid; gap: 4px; padding: 13px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.modal-specs small { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.modal-specs b { font-size: 11px; }
.option-block > label, .modal-select-grid label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.modal-colors { display: flex; flex-wrap: wrap; gap: 8px; }
.color-choice { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px 7px 7px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 9px; }
.color-choice i { width: 20px; height: 20px; border: 2px solid var(--surface); border-radius: 50%; background: var(--choice); box-shadow: 0 0 0 1px var(--line-strong); }
.color-choice.active { border-color: var(--green); background: var(--surface-2); }
.custom-color-box { display: grid; grid-template-columns: minmax(0,.9fr) minmax(250px,1.1fr); align-items: center; gap: 16px; margin-top: 16px; padding: 15px; border: 1px dashed var(--line-strong); border-radius: 14px; background: var(--surface-2); }
.custom-color-box label { display: block; margin-bottom: 3px; font-size: 11px; font-weight: 850; }
.custom-color-box p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.custom-color-action { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.custom-color-action input { width: 100%; min-height: 43px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); outline: 0; font-size: 11px; }
.custom-color-action input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,91,67,.1); }
.custom-color-action input.needs-value { animation: fieldShake .32s ease 2; border-color: var(--danger); }
.custom-color-action button { min-height: 43px; padding: 9px 13px; border-radius: 10px; background: var(--acid); color: #102016; font-size: 9px; font-weight: 900; text-transform: uppercase; }
@keyframes fieldShake { 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }
.modal-select-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.modal-select-grid select { width: 100%; min-height: 44px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-2); outline: 0; font-size: 11px; }
.modal-stock-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 22px 0 16px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; }
.modal-stock-line span:first-child { color: var(--green-2); }
.modal-actions { display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.quantity-control { min-width: 120px; display: grid; grid-template-columns: 38px 42px 38px; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.quantity-control button { height: 48px; background: transparent; }
.quantity-control span { text-align: center; font-weight: 850; }
.modal-actions .button { min-height: 50px; }
.modal-actions .modal-wa { grid-column: 1 / -1; }

/* Cart */
.cart-backdrop { justify-content: flex-end; padding: 0; }
.cart-panel { width: min(560px, 100%); height: 100%; display: flex; flex-direction: column; background: var(--surface); box-shadow: -28px 0 80px rgba(0,0,0,.22); transform: translateX(100%); transition: transform .26s ease; }
.cart-backdrop.is-open .cart-panel { transform: translateX(0); }
.cart-head { min-height: 96px; display: flex; align-items: center; justify-content: space-between; padding: 22px 27px; border-bottom: 1px solid var(--line); }
.cart-head small { color: var(--green-2); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.cart-head h2 { margin: 3px 0 0; font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1; }
.cart-head button { width: 42px; height: 42px; border-radius: 50%; background: var(--surface-3); font-size: 24px; }
.cart-items { flex: 1; overflow-y: auto; padding: 22px 25px; }
.cart-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 120px; height: 100px; object-fit: cover; border-radius: 12px; background: var(--surface-3); }
.cart-item-copy small { color: var(--green-2); font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.cart-item-copy h3 { margin: 4px 0 2px; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.1; }
.cart-item-copy p { margin: 0; color: var(--muted); font-size: 9px; }
.cart-item-bottom { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.cart-item-bottom > strong { margin-right: auto; color: var(--green-2); font-size: 12px; }
.mini-quantity { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.mini-quantity button { width: 28px; height: 28px; background: transparent; }
.mini-quantity span { min-width: 22px; text-align: center; font-size: 10px; }
.cart-remove { padding: 0; background: transparent; color: var(--danger); font-size: 9px; text-decoration: underline; }
.cart-empty { min-height: 100%; display: grid; place-items: center; align-content: center; padding: 40px; text-align: center; }
.cart-empty > span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-3); color: var(--green-2); font-family: var(--serif); font-size: 32px; }
.cart-empty h3 { margin: 17px 0 5px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.cart-empty p { max-width: 350px; margin: 0 0 20px; color: var(--muted); }
.cart-footer { padding: 20px 25px 26px; border-top: 1px solid var(--line); background: var(--surface-2); }
.shipping-progress span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 800; }
.shipping-progress i { height: 5px; display: block; overflow: hidden; border-radius: 999px; background: var(--surface-3); }
.shipping-progress b { width: 0; height: 100%; display: block; border-radius: inherit; background: var(--acid); transition: width .25s ease; }
.cart-total { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 17px 0; }
.cart-total span { color: var(--muted); font-size: 10px; }
.cart-total strong { color: var(--green-2); font-family: var(--serif); font-size: 30px; font-weight: 400; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.checkout-form input, .checkout-form select, .checkout-form textarea { width: 100%; min-height: 42px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); outline: 0; font-size: 11px; }
.checkout-form textarea { min-height: 62px; margin-top: 9px; resize: vertical; }
.checkout-form .button { width: 100%; margin-top: 9px; border-radius: 11px; }

/* Footer */
.site-footer { padding-top: 72px; background: #0d261c; color: #f5f3ea; }
.footer-main { display: grid; grid-template-columns: 1.25fr repeat(3, .62fr); gap: 58px; padding-bottom: 60px; }
.brand-footer .brand-glasses { color: var(--acid); }
.footer-brand p { max-width: 410px; margin: 23px 0; color: rgba(255,255,255,.58); font-size: 12px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 16px; color: var(--acid); font-size: 11px; font-weight: 850; }
.footer-whatsapp span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(201,255,74,.42); border-radius: 50%; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column strong { margin-bottom: 10px; color: var(--acid); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a, .footer-column span { color: rgba(255,255,255,.62); font-size: 11px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { min-height: 63px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 9px; }
.floating-whatsapp { position: fixed; z-index: 45; right: 20px; bottom: 20px; min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; background: #18b76b; color: #fff; box-shadow: 0 18px 44px rgba(10,83,48,.25); font-size: 11px; font-weight: 850; }
.wa-dot { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #18b76b; font-size: 8px; }

/* 404 */
.not-found { min-height: 72vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.not-found strong { color: var(--green-2); font-family: var(--serif); font-size: clamp(100px, 20vw, 240px); font-weight: 400; line-height: .7; }
.not-found h1 { margin: 34px 0 8px; font-family: var(--serif); font-size: 43px; font-weight: 400; }
.not-found p { max-width: 520px; margin: 0 auto 24px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s ease var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1600px) {
  :root { --container: 1480px; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-card h3 { font-size: 31px; }
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 45px; }
  .hero-visual { min-height: 560px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .search-tools { grid-template-columns: 1fr 200px 180px; }
}

@media (max-width: 1020px) {
  .model-slide { grid-template-columns: 1fr; }
  .model-slide-media, .model-slide-media img { min-height: 470px; max-height: 520px; }
  .model-slide-copy { padding: 42px; }

  .container { width: min(100% - 38px, var(--container)); }
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-trigger { display: grid; }
  .mobile-menu { display: block; }
  .hero { padding-top: 52px; }
  .hero-grid, .inner-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 610px; }
  .hero-frame { inset: 0 100px 20px 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats .scroll-cue { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 300px 300px; }
  .category-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .category-card:last-child { grid-column: 1 / 3; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .request-panel { grid-template-columns: 1fr; gap: 35px; }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-grid, .contact-grid { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 480px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .inner-hero-image { max-width: 760px; }
}

@media (max-width: 780px) {
  .model-slider-shell { border-radius: 24px; }
  .model-slide-media, .model-slide-media img { min-height: 390px; max-height: 430px; }
  .model-slide-copy { padding: 34px 26px; }
  .model-slide-copy h3 { font-size: 52px; }
  .model-slide-meta { grid-template-columns: 1fr 1fr; }
  .model-slide-meta > span:nth-child(2) { border-right: 0; }
  .model-slide-meta > span:last-child { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--line); }
  .model-slider-controls { grid-template-columns: auto 1fr; }
  .model-slider-progress { display: none; }
  .custom-color-box { grid-template-columns: 1fr; }

  .announcement-inner { justify-content: center; text-align: center; }
  .announcement-inner div, .announcement-inner p span { display: none; }
  .nav-shell { min-height: 72px; gap: 15px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { letter-spacing: .2em; }
  .brand-glasses { width: 48px; }
  .nav-icon { display: none; }
  .cart-trigger span { display: none; }
  .cart-trigger { min-width: 43px; justify-content: center; padding: 8px; }
  .cart-trigger b { min-width: 27px; }
  .section { padding: 82px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .split-heading p { justify-self: start; }
  .hero h1 { font-size: clamp(53px, 12vw, 78px); }
  .hero-visual { min-height: 500px; }
  .hero-frame { inset: 0 44px 20px 0; }
  .hero-float { width: 200px; }
  .hero-seal { width: 92px; height: 92px; top: 16px; right: 5px; font-size: 8px; }
  .hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .category-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 350px); }
  .category-card:first-child, .category-card:last-child { grid-column: auto; }
  .expertise-grid { grid-template-columns: 1fr; }
  .process-panel { padding: 38px 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step > span { margin-bottom: 18px; }
  .search-tools { grid-template-columns: 1fr; }
  .collection-toolbar { top: 82px; }
  .service-card-grid { grid-template-columns: 1fr; }
  .service-cta { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .product-modal { grid-template-columns: 1fr; max-height: calc(100vh - 24px); }
  .modal-visual, .modal-visual img { min-height: 370px; max-height: 410px; }
  .modal-copy { padding: 34px 24px 26px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

@media (max-width: 640px) {
  .model-slide-media, .model-slide-media img { min-height: 300px; max-height: 335px; }
  .model-slide-copy { padding: 28px 20px 30px; }
  .model-slide-copy h3 { font-size: 43px; }
  .model-slide-actions { display: grid; }
  .model-slide-actions .button { width: 100%; }
  .model-slider-controls { grid-template-columns: 1fr; gap: 12px; }
  .model-slider-arrows { justify-content: center; }
  .model-slider-dots { flex-wrap: wrap; }
  .custom-color-action { grid-template-columns: 1fr; }
  .product-quick span { display: none; }

  .container { width: calc(100% - 28px); }
  .brand-copy small { display: none; }
  .hero { padding-top: 38px; }
  .hero h1 { margin-top: 17px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; }
  .hero-visual { min-height: 405px; }
  .hero-frame { inset: 0 20px 10px 0; border-radius: 24px; }
  .hero-frame-copy { right: 18px; bottom: 18px; left: 18px; }
  .hero-frame-copy strong { font-size: 22px; }
  .hero-frame-copy span { display: none; }
  .hero-float { right: 0; width: 156px; padding: 9px; border-radius: 17px; }
  .hero-float div { display: none; }
  .hero-seal { width: 76px; height: 76px; top: 10px; right: 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 43px; }
  .category-grid { grid-template-rows: repeat(4, 310px); }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card { border-radius: 20px; }
  .product-description { min-height: auto; }
  .feature-note { grid-template-columns: 1fr; }
  .request-panel { padding: 29px 20px; border-radius: 23px; }
  .missing-model-form { grid-template-columns: 1fr; }
  .missing-model-form label:first-child, .missing-model-form .button { grid-column: auto; }
  .inner-hero { padding: 52px 0; }
  .inner-hero h1 { font-size: 54px; }
  .inner-hero-image, .inner-hero-image img { min-height: 310px; }
  .filter-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-tabs button { justify-content: space-between; }
  .location-card, .contact-form-card { padding: 28px 20px; }
  .location-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .location-actions { display: grid; }
  .location-actions .button { width: 100%; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label.full, .contact-form .button { grid-column: auto; }
  .modal-backdrop { padding: 8px; }
  .modal-heading { display: grid; gap: 8px; }
  .modal-heading h2 { font-size: 42px; }
  .modal-select-grid, .modal-actions { grid-template-columns: 1fr; }
  .modal-actions .modal-wa { grid-column: auto; }
  .quantity-control { width: 100%; grid-template-columns: 1fr 1fr 1fr; }
  .cart-item { grid-template-columns: 90px 1fr; }
  .cart-item img { width: 90px; height: 82px; }
  .cart-item-bottom { flex-wrap: wrap; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .floating-whatsapp { right: 12px; bottom: 12px; min-width: 52px; justify-content: center; padding: 10px 12px; }
  .floating-whatsapp > span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* V12 motion polish — local, lightweight and safe on static hosting */
.hero-visual { --hero-x: 0; --hero-y: 0; perspective: 1100px; }
.hero-frame { transform: translate3d(calc(var(--hero-x) * 7px), calc(var(--hero-y) * 5px), 0) rotateX(calc(var(--hero-y) * -0.8deg)) rotateY(calc(var(--hero-x) * 0.8deg)); transition: transform .22s ease-out; }
.hero-float { transform: translate3d(calc(var(--hero-x) * -12px), calc(var(--hero-y) * -9px), 0); transition: transform .25s ease-out; }
.hero-seal { animation: sealFloat 4.8s ease-in-out infinite; }
@keyframes sealFloat { 0%,100% { translate: 0 0; rotate: 8deg; } 50% { translate: 0 -8px; rotate: 4deg; } }
.button-primary, .button-accent, .product-choose { position: relative; overflow: hidden; }
.button-primary::after, .button-accent::after, .product-choose::after { position: absolute; top: -70%; left: -35%; width: 28%; height: 240%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent); content: ""; transform: rotate(18deg) translateX(-260%); transition: transform .75s ease; pointer-events: none; }
.button-primary:hover::after, .button-accent:hover::after, .product-choose:hover::after { transform: rotate(18deg) translateX(620%); }
.model-slide-media.image-error::before { position: absolute; z-index: 3; inset: 0; display: grid; place-items: center; background: var(--surface-3); color: var(--muted); content: "Photo indisponible"; }


/* V13 — compact mobile collection controls. Desktop remains unchanged. */
.collection-filter-panel { display: grid; gap: 15px; }
.mobile-filter-toggle, .mobile-filter-actions, .mobile-filter-scrim { display: none; }

@media (max-width: 780px) {
  .collection-section { overflow: visible; }
  .collection-toolbar {
    position: sticky;
    z-index: 55;
    top: 78px;
    display: block;
    margin-bottom: 20px;
    padding: 7px;
    border-radius: 18px;
    background: rgba(255,253,248,.96);
    box-shadow: 0 15px 45px rgba(15,45,34,.13);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }
  html[data-theme="dark"] .collection-toolbar { background: rgba(16,27,21,.96); }
  .mobile-filter-toggle {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 62px;
    display: grid;
    grid-template-columns: 36px minmax(0,1fr) auto 24px;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    text-align: left;
    box-shadow: 0 7px 20px rgba(15,45,34,.06);
  }
  .mobile-filter-toggle.has-active-filters { border-color: rgba(31,91,67,.38); }
  .mobile-filter-toggle.has-active-filters::after {
    position: absolute;
    top: -6px;
    left: 29px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 2px solid var(--surface);
    border-radius: 99px;
    background: var(--acid);
    color: #102016;
    content: var(--active-filter-count);
    font-size: 8px;
    font-weight: 950;
  }
  .mobile-filter-symbol {
    width: 36px;
    height: 36px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 8px;
    border-radius: 11px;
    background: var(--green);
  }
  html[data-theme="dark"] .mobile-filter-symbol { color: #102016; }
  .mobile-filter-symbol i { position: relative; width: 100%; height: 1.5px; display: block; border-radius: 9px; background: currentColor; }
  .mobile-filter-symbol i:nth-child(1)::after, .mobile-filter-symbol i:nth-child(2)::after, .mobile-filter-symbol i:nth-child(3)::after {
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    background: var(--green);
    content: "";
    translate: -50% -50%;
  }
  .mobile-filter-symbol i:nth-child(1)::after { left: 28%; }
  .mobile-filter-symbol i:nth-child(2)::after { left: 70%; }
  .mobile-filter-symbol i:nth-child(3)::after { left: 43%; }
  .mobile-filter-label { min-width: 0; display: grid; gap: 1px; line-height: 1.15; }
  .mobile-filter-label small { color: var(--green-2); font-size: 7px; font-weight: 950; letter-spacing: .13em; }
  .mobile-filter-label strong { overflow: hidden; color: var(--ink); font-family: var(--serif); font-size: 17px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-filter-result { display: grid; justify-items: end; line-height: 1.05; }
  .mobile-filter-result b { color: var(--green-2); font-size: 15px; }
  .mobile-filter-result small { color: var(--muted); font-size: 7px; text-transform: uppercase; }
  .mobile-filter-chevron { display: grid; place-items: center; color: var(--muted); font-size: 18px; transition: transform .24s ease; }
  .collection-toolbar.is-mobile-open .mobile-filter-chevron { transform: rotate(180deg); }

  .collection-filter-panel {
    position: absolute;
    z-index: 2;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    max-height: min(68vh, 570px);
    overflow: auto;
    overscroll-behavior: contain;
    display: grid;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,253,248,.985);
    box-shadow: 0 28px 80px rgba(5,29,19,.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top center;
    transition: opacity .2s ease, transform .24s cubic-bezier(.2,.8,.2,1), visibility .2s;
  }
  html[data-theme="dark"] .collection-filter-panel { background: rgba(16,27,21,.99); }
  .collection-toolbar.is-mobile-open .collection-filter-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .collection-filter-panel .filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
  }
  .collection-filter-panel .filter-tabs button {
    min-width: 0;
    min-height: 44px;
    justify-content: space-between;
    padding: 9px 11px;
    border-radius: 12px;
    font-size: 9px;
  }
  .collection-filter-panel .filter-tabs button:first-child { grid-column: 1 / -1; }
  .collection-filter-panel .search-tools { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .collection-filter-panel .field-shell { min-height: 47px; border-radius: 12px; background: var(--surface); }
  .collection-filter-panel .field-shell input, .collection-filter-panel .field-shell select { min-height: 45px; }
  .mobile-filter-actions { position: sticky; bottom: -14px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 8px; margin: 2px -14px -14px; padding: 12px 14px 14px; border-top: 1px solid var(--line); background: inherit; }
  .mobile-filter-reset, .mobile-filter-apply { min-height: 47px; border-radius: 12px; font-size: 9px; font-weight: 950; letter-spacing: .04em; }
  .mobile-filter-reset { border: 1px solid var(--line-strong); background: var(--surface-2); color: var(--ink); }
  .mobile-filter-apply { background: var(--acid); color: #102016; box-shadow: 0 10px 25px rgba(201,255,74,.19); }
  .mobile-filter-apply span { margin-left: 5px; }
  .mobile-filter-scrim {
    position: fixed;
    z-index: 49;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(4,18,12,.38);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .mobile-filter-scrim[hidden] { display: none; }
  body.mobile-filters-open .floating-whatsapp { opacity: .25; pointer-events: none; }
  .results-line { margin-top: 5px; }
}

@media (max-width: 420px) {
  .collection-toolbar { top: 76px; }
  .mobile-filter-toggle { grid-template-columns: 34px minmax(0,1fr) auto 20px; gap: 8px; min-height: 58px; padding-inline: 8px; }
  .mobile-filter-symbol { width: 34px; height: 34px; }
  .mobile-filter-label strong { font-size: 15px; }
  .mobile-filter-result small { display: none; }
  .collection-filter-panel { max-height: 70vh; padding: 11px; border-radius: 17px; }
  .mobile-filter-actions { margin: 2px -11px -11px; padding: 10px 11px 11px; }
}

/* ============================================================
   V14 — model directory, non-overlapping filters and motion polish
   ============================================================ */
.brand-directory-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 10%, rgba(201,255,74,.16), transparent 24%),
    radial-gradient(circle at 90% 72%, rgba(31,91,67,.10), transparent 30%),
    var(--surface-2);
}
.brand-directory-section::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.brand-directory {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.brand-choice {
  --brand-delay: 0ms;
  position: relative;
  isolation: isolate;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  opacity: 0;
  transform: translateY(14px);
  animation: brandTileIn .55s cubic-bezier(.2,.75,.2,1) var(--brand-delay) forwards;
  transition: background .28s ease, color .28s ease, transform .28s ease;
}
.brand-choice:nth-child(4n) { border-right: 0; }
.brand-choice:nth-last-child(-n+4) { border-bottom: 0; }
.brand-choice::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,91,67,.96), rgba(13,44,32,.98));
  content: "";
  opacity: 0;
  transition: opacity .28s ease;
}
.brand-choice::after {
  position: absolute;
  z-index: -1;
  top: -74px;
  right: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .10;
  transition: transform .45s ease, opacity .3s ease;
}
.brand-choice:hover,
.brand-choice.is-active {
  color: #fff;
  transform: translateY(-2px);
}
.brand-choice:hover::before,
.brand-choice.is-active::before { opacity: 1; }
.brand-choice:hover::after,
.brand-choice.is-active::after { opacity: .24; transform: scale(1.16) translate(-10px, 12px); }
.brand-choice.is-active { box-shadow: inset 0 -4px 0 var(--acid); }
.brand-choice-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.brand-choice-logo {
  max-width: 75%;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-choice.is-all .brand-choice-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  font-style: italic;
}
.brand-choice-count {
  min-width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--green-2);
  font-size: 9px;
  font-weight: 950;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.brand-choice:hover .brand-choice-count,
.brand-choice.is-active .brand-choice-count { border-color: rgba(255,255,255,.28); background: var(--acid); color: #102016; }
.brand-choice-bottom { display: grid; gap: 5px; }
.brand-choice-bottom strong { font-size: 8px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.brand-choice-bottom small { color: var(--muted); font-size: 9px; }
.brand-choice:hover .brand-choice-bottom small,
.brand-choice.is-active .brand-choice-bottom small { color: rgba(255,255,255,.68); }
@keyframes brandTileIn { to { opacity: 1; transform: translateY(0); } }

.quick-model-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 52px 0 18px;
}
.quick-model-header h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.quick-model-controls { display: flex; align-items: center; gap: 8px; }
.quick-model-controls > span { min-width: 78px; color: var(--muted); font-size: 10px; text-align: center; }
.quick-model-controls > span b:first-child { color: var(--green-2); font-family: var(--serif); font-size: 23px; font-weight: 400; }
.quick-model-controls button {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  font-size: 17px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.quick-model-controls button:hover { transform: translateY(-2px); border-color: var(--green); background: var(--surface-3); }
.quick-model-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.quick-model-picker {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 15px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
  overscroll-behavior-x: contain;
}
.quick-model-card {
  --quick-delay: 0ms;
  flex: 0 0 clamp(230px, 24vw, 320px);
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-2);
  color: var(--ink);
  text-align: left;
  opacity: 0;
  transform: translateX(18px);
  animation: quickCardIn .5s cubic-bezier(.2,.75,.2,1) var(--quick-delay) forwards;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.quick-model-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-sm); }
.quick-model-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-3); }
.quick-model-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.quick-model-card:hover img { transform: scale(1.035); }
.quick-model-card-media span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-width: 38px;
  height: 25px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255,253,248,.9);
  color: #15372a;
  font-size: 8px;
  font-weight: 950;
  backdrop-filter: blur(8px);
}
.quick-model-card-copy { min-width: 0; display: grid; gap: 5px; padding: 15px; }
.quick-model-card-copy small { overflow: hidden; color: var(--green-2); font-size: 7px; font-weight: 950; letter-spacing: .12em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.quick-model-card-copy strong { overflow: hidden; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
.quick-model-card-copy em { color: var(--muted); font-size: 9px; font-style: normal; }
@keyframes quickCardIn { to { opacity: 1; transform: translateX(0); } }

/* The filters are anchored above the catalogue and never float over photos. */
.collection-toolbar {
  position: relative !important;
  top: auto !important;
  z-index: 10;
  box-shadow: var(--shadow-md);
}
.collection-toolbar::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  content: "";
  opacity: .7;
}
.product-grid.products-entering .product-card {
  animation: productGridIn .48s cubic-bezier(.2,.75,.2,1) both;
  animation-delay: calc(var(--product-index, 0) * 42ms);
}
@keyframes productGridIn {
  from { opacity: 0; transform: translateY(18px) scale(.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.inner-hero-image img { animation: heroImageDrift 11s ease-in-out infinite alternate; }
@keyframes heroImageDrift { from { transform: scale(1.01) translate3d(0,0,0); } to { transform: scale(1.045) translate3d(-1.2%, -.8%, 0); } }

@media (max-width: 1020px) {
  .brand-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brand-choice:nth-child(4n) { border-right: 1px solid var(--line); }
  .brand-choice:nth-child(3n) { border-right: 0; }
  .brand-choice:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .brand-choice:nth-last-child(-n+3) { border-bottom: 0; }
}

@media (max-width: 780px) {
  .brand-directory-section { padding-top: 72px; padding-bottom: 62px; }
  .brand-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 22px; }
  .brand-choice { min-height: 142px; padding: 18px; }
  .brand-choice:nth-child(3n) { border-right: 1px solid var(--line); }
  .brand-choice:nth-child(2n) { border-right: 0; }
  .brand-choice:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .brand-choice:nth-last-child(-n+2) { border-bottom: 0; }
  .brand-choice-logo { font-size: 22px; }
  .quick-model-header { align-items: center; margin-top: 40px; }
  .quick-model-controls > span { display: none; }
  .quick-model-card { flex-basis: min(78vw, 300px); }

  .collection-toolbar {
    position: relative !important;
    top: auto !important;
    z-index: 12;
    margin-bottom: 20px;
  }
  .collection-filter-panel {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    padding: 0 14px;
    border-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    box-shadow: none;
    transition: max-height .42s cubic-bezier(.2,.8,.2,1), opacity .22s ease, transform .28s ease, padding .32s ease, margin .32s ease, border-width .01s linear .2s, visibility .2s;
  }
  .collection-toolbar.is-mobile-open .collection-filter-panel {
    max-height: 760px;
    margin-top: 8px;
    padding: 14px;
    border-width: 1px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
    transition-delay: 0s;
  }
  .mobile-filter-actions {
    position: static;
    bottom: auto;
    margin: 2px -14px -14px;
  }
  .mobile-filter-scrim { display: none !important; }
  body.mobile-filters-open { overflow: auto; }
  body.mobile-filters-open .floating-whatsapp { opacity: 1; pointer-events: auto; }
}

@media (max-width: 520px) {
  .brand-directory { grid-template-columns: 1fr; }
  .brand-choice,
  .brand-choice:nth-child(n) { min-height: 125px; border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-choice:last-child { border-bottom: 0; }
  .brand-choice-top { align-items: center; }
  .quick-model-header h3 { font-size: 34px; }
  .quick-model-controls button { width: 41px; height: 41px; }
  .quick-model-picker { padding: 11px; gap: 10px; }
  .quick-model-card { flex-basis: min(82vw, 286px); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-choice, .quick-model-card { opacity: 1; transform: none; animation: none; }
  .inner-hero-image img { animation: none; }
}

/* Gap-based brand grid keeps borders correct for any number of brands. */
.brand-directory { gap: 1px; background: var(--line); }
.brand-choice,
.brand-choice:nth-child(n) { border: 0 !important; background: var(--surface); }
.quick-model-card-media.image-error::before,
.inner-hero-image.image-error::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--surface-3);
  color: var(--muted);
  content: "Photo indisponible";
  font-size: 10px;
  font-weight: 850;
}
.quick-model-card-media.image-error img,
.inner-hero-image.image-error img { opacity: 0; }
.brand-choice.is-request .brand-choice-logo {
  max-width: 78%;
  overflow: visible;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.05;
  text-overflow: clip;
  white-space: normal;
}


/* ===========================
   GODMODE V16 — image safety, brand marks and editorial motion
   =========================== */
:root { --image-fit-bg: linear-gradient(145deg,#f7f5ed,#e8ece4); }
html[data-theme="dark"] { --image-fit-bg: linear-gradient(145deg,#1d2b23,#111b16); }

/* Never crop product photography in cards, sliders or product details. */
.product-media,
.quick-model-card-media,
.model-slide-media,
.modal-visual { background: var(--image-fit-bg); }
.product-media img,
.quick-model-card-media img,
.model-slide-media img,
.modal-visual img {
  object-fit: contain !important;
  object-position: center !important;
}
.product-media img { padding: 10px; }
.quick-model-card-media img { padding: 7px; }
.model-slide-media img { padding: clamp(12px,2vw,28px); }
.modal-visual { display:grid; place-items:center; min-height:620px; padding:clamp(18px,2.5vw,38px); }
.modal-visual img { width:100%; height:100%; min-height:0; max-height:690px; border-radius:22px; filter: drop-shadow(0 24px 30px rgba(15,35,24,.12)); }
.modal-visual > span { z-index:2; }
.modal-specs[hidden], .modal-specs span[hidden] { display:none !important; }

/* Product cards now have a quiet lift and lens-like light sweep. */
.product-card { position:relative; isolation:isolate; }
.product-card::before { position:absolute; z-index:3; inset:0; pointer-events:none; border-radius:inherit; background:linear-gradient(115deg,transparent 25%,rgba(255,255,255,.17) 45%,transparent 64%); content:""; transform:translateX(-130%); transition:transform .8s cubic-bezier(.2,.75,.2,1); }
.product-card:hover::before { transform:translateX(130%); }
.product-card:hover .product-media img { transform:scale(1.025) translateY(-2px); }

/* Editorial category portal. */
.editorial-category-section { position:relative; overflow:hidden; padding-top:76px; }
.editorial-category-section::before { position:absolute; inset:8% auto auto -10%; width:420px; height:420px; border:1px solid var(--line); border-radius:50%; content:""; }
.editorial-category-grid { display:grid; grid-template-columns:1.15fr .85fr; grid-auto-rows:minmax(300px,36vw); gap:18px; }
.editorial-category-card { --editorial-x:0; --editorial-y:0; --editorial-delay:0ms; position:relative; isolation:isolate; overflow:hidden; min-height:320px; border:1px solid var(--line); border-radius:30px; background:var(--surface); box-shadow:var(--shadow-sm); transform:translateY(0); transition:transform .38s cubic-bezier(.2,.75,.2,1), box-shadow .38s ease, border-color .38s ease; }
.editorial-category-card.editorial-wide { grid-row:span 2; }
.editorial-category-card img { width:100%; height:100%; object-fit:cover; transform:scale(1.035) translate(calc(var(--editorial-x) * -8px),calc(var(--editorial-y) * -6px)); transition:transform .45s cubic-bezier(.2,.75,.2,1),filter .4s ease; }
.editorial-category-card:hover { z-index:2; transform:translateY(-8px); border-color:var(--line-strong); box-shadow:var(--shadow-lg); }
.editorial-category-card:hover img { transform:scale(1.075) translate(calc(var(--editorial-x) * -12px),calc(var(--editorial-y) * -9px)); }
.editorial-category-shade { position:absolute; z-index:1; inset:0; background:linear-gradient(180deg,rgba(6,20,13,.01) 20%,rgba(6,20,13,.78) 100%); }
.editorial-category-copy { position:absolute; z-index:2; right:28px; bottom:27px; left:28px; display:grid; gap:7px; color:#fff; }
.editorial-category-copy small { font-size:9px; font-weight:900; letter-spacing:.17em; }
.editorial-category-copy strong { font-family:var(--serif); font-size:clamp(31px,3.2vw,52px); font-weight:400; line-height:1; }
.editorial-category-copy em { width:max-content; margin-top:7px; padding:10px 14px; border:1px solid rgba(255,255,255,.34); border-radius:999px; background:rgba(10,30,20,.28); font-size:9px; font-style:normal; font-weight:850; backdrop-filter:blur(10px); }

/* Real logo artwork inside brand selectors. */
.brand-choice-logo { width:min(220px,78%); max-width:none !important; height:64px; display:flex; align-items:center; overflow:visible !important; }
.brand-choice-logo img { width:100%; height:100%; object-fit:contain; object-position:left center; filter:saturate(.9); transition:transform .35s cubic-bezier(.2,.75,.2,1),filter .35s ease; }
.brand-choice:hover .brand-choice-logo img,.brand-choice.is-active .brand-choice-logo img { transform:translateY(-2px) scale(1.035); filter:saturate(1.12); }
.brand-choice.is-all .brand-choice-logo { width:min(220px,78%); height:64px; border:0; border-radius:0; }
.brand-choice::after { animation:brandAura 7s ease-in-out infinite alternate; }
@keyframes brandAura { from { transform:scale(.9) translate(0,0); } to { transform:scale(1.16) translate(-12px,14px); } }

/* Modal polish and mobile safety. */
.product-modal { overflow:hidden; }
.modal-copy { overflow:auto; max-height:min(820px,calc(100vh - 48px)); }
.modal-heading h2 { text-wrap:balance; }
.custom-color-box { background:linear-gradient(135deg,var(--surface-2),var(--surface)); }
.color-choice { transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.color-choice:hover { transform:translateY(-2px); }

@media (max-width:1020px) {
  .editorial-category-grid { grid-template-columns:1fr 1fr; grid-auto-rows:370px; }
  .editorial-category-card.editorial-wide { grid-column:1/-1; grid-row:auto; min-height:430px; }
}
@media (max-width:780px) {
  .editorial-category-section { padding-top:58px; }
  .editorial-category-grid { grid-template-columns:1fr; grid-auto-rows:330px; }
  .editorial-category-card.editorial-wide { min-height:360px; }
  .editorial-category-copy { right:20px; bottom:20px; left:20px; }
  .brand-choice-logo { height:58px; width:min(230px,82%); }
  .product-modal { overflow:auto; }
  .modal-copy { max-height:none; overflow:visible; }
  .modal-visual { min-height:340px; max-height:430px; padding:14px; }
  .modal-visual img { max-height:390px; }
}
@media (max-width:520px) {
  .editorial-category-grid { grid-auto-rows:300px; gap:12px; }
  .editorial-category-card,.editorial-category-card.editorial-wide { min-height:300px; border-radius:22px; }
  .editorial-category-copy strong { font-size:34px; }
  .brand-choice { min-height:142px !important; }
  .brand-choice-logo { height:60px; width:84%; }
  .product-media img { padding:6px; }
}
@media (prefers-reduced-motion:reduce) {
  .product-card::before,.brand-choice::after { animation:none; transition:none; }
  .editorial-category-card img { transform:none !important; }
}


/* ===========================
   GODMODE V17 — photographic edition
   =========================== */

/* Full-bleed photography is used only for photo-style lens media. */
.product-media.is-photo-fill,
.quick-model-card-media.is-photo-fill,
.model-slide-media.is-photo-fill,
.modal-visual.is-photo-fill { padding:0 !important; overflow:hidden; background:#e7e4dc; }
.product-media.is-photo-fill img,
.quick-model-card-media.is-photo-fill img,
.model-slide-media.is-photo-fill img,
.modal-visual.is-photo-fill img { width:100%; height:100%; max-height:none; padding:0 !important; object-fit:cover !important; object-position:center !important; border-radius:0; filter:none; }
.product-card.is-photo-product .product-media::after { position:absolute; z-index:1; inset:auto 0 0; height:36%; pointer-events:none; content:""; background:linear-gradient(180deg,transparent,rgba(8,27,18,.16)); }
.product-card.is-photo-product .product-badge,
.product-card.is-photo-product .favorite-button { z-index:2; }
.modal-visual.is-photo-fill { min-height:620px; }
.modal-visual.is-photo-fill img { border-radius:0; }

/* Home category photography: clean, full bleed, balanced focal points. */
.category-card { isolation:isolate; box-shadow:0 24px 70px rgba(13,37,26,.10); }
.category-card::before { position:absolute; z-index:2; inset:0; pointer-events:none; content:""; background:linear-gradient(180deg,rgba(4,18,11,.02) 20%,rgba(4,18,11,.78) 100%); }
.category-card img { transform:scale(1.01); filter:saturate(.96) contrast(1.02); transition:transform .75s cubic-bezier(.2,.75,.2,1),filter .55s ease; }
.category-card:hover img { transform:scale(1.065); filter:saturate(1.04) contrast(1.04); }
.category-card[data-category="optical"] img { object-position:center 52%; }
.category-card[data-category="sun"] img { object-position:center 57%; }
.category-card[data-category="screen"] img { object-position:center 54%; }
.category-card[data-category="lenses"] img { object-position:center 49%; }
.category-card .category-overlay { display:none; }
.category-card .category-index, .category-card .category-content { z-index:3; }
.category-content strong { border:1px solid rgba(255,255,255,.28); border-radius:999px; padding:10px 14px; background:rgba(8,27,18,.27); backdrop-filter:blur(10px); }

/* Editorial portals now show a single photographic scene, never a graphic collage. */
.editorial-category-grid { grid-template-columns:1.12fr .88fr; grid-auto-rows:minmax(310px,34vw); }
.editorial-category-card { border-radius:34px; background:#d9ded8; box-shadow:0 26px 75px rgba(13,37,26,.12); }
.editorial-category-card img { transform:scale(1.01) translate(calc(var(--editorial-x) * -5px),calc(var(--editorial-y) * -4px)); filter:saturate(.94) contrast(1.03); }
.editorial-category-card:hover img { transform:scale(1.065) translate(calc(var(--editorial-x) * -8px),calc(var(--editorial-y) * -6px)); filter:saturate(1.02) contrast(1.05); }
.editorial-category-card[data-category="optical"] img { object-position:center 54%; }
.editorial-category-card[data-category="lenses"] img { object-position:center 50%; }
.editorial-category-card[data-category="sun"] img { object-position:center 56%; }
.editorial-category-card[data-category="screen"] img { object-position:center 52%; }
.editorial-category-shade { background:linear-gradient(180deg,rgba(5,18,12,.04) 10%,rgba(5,18,12,.18) 48%,rgba(5,18,12,.88) 100%); }
.editorial-category-copy { gap:9px; }
.editorial-category-copy small { color:#d8ff66; }
.editorial-category-copy em { padding:11px 15px; background:rgba(5,24,15,.42); }

/* Premium photo lookbook. */
.photo-lookbook-section { position:relative; overflow:hidden; padding-top:48px; }
.photo-lookbook-section::before { position:absolute; top:4%; right:-180px; width:520px; height:520px; border:1px solid var(--line); border-radius:50%; content:""; }
.photo-lookbook-grid { display:grid; grid-template-columns:1.18fr .82fr; gap:18px; }
.photo-lookbook-stack { display:grid; gap:18px; }
.photo-lookbook-card { position:relative; isolation:isolate; overflow:hidden; min-height:310px; border:1px solid var(--line); border-radius:32px; background:#d9ded8; box-shadow:0 28px 80px rgba(13,37,26,.12); }
.photo-lookbook-main { min-height:640px; }
.photo-lookbook-card img { width:100%; height:100%; object-fit:cover; transform:scale(1.015); filter:saturate(.95) contrast(1.03); transition:transform .8s cubic-bezier(.2,.75,.2,1),filter .5s ease; }
.photo-lookbook-main img { object-position:center 52%; }
.photo-lookbook-stack .photo-lookbook-card:first-child img { object-position:center 56%; }
.photo-lookbook-stack .photo-lookbook-card:last-child img { object-position:center 50%; }
.photo-lookbook-card:hover img { transform:scale(1.07); filter:saturate(1.03) contrast(1.05); }
.photo-lookbook-shade { position:absolute; z-index:1; inset:0; background:linear-gradient(180deg,rgba(5,18,12,.02) 25%,rgba(5,18,12,.86) 100%); }
.photo-lookbook-copy { position:absolute; z-index:2; right:30px; bottom:30px; left:30px; display:grid; gap:9px; color:#fff; }
.photo-lookbook-copy small { color:#d9ff69; font-size:9px; font-weight:900; letter-spacing:.17em; }
.photo-lookbook-copy strong { max-width:700px; font-family:var(--serif); font-size:clamp(31px,3vw,52px); font-weight:400; line-height:1.02; text-wrap:balance; }
.photo-lookbook-stack .photo-lookbook-copy strong { font-size:clamp(27px,2.3vw,38px); }
.photo-lookbook-copy em { width:max-content; padding:10px 14px; border:1px solid rgba(255,255,255,.30); border-radius:999px; background:rgba(7,27,17,.32); font-size:9px; font-style:normal; font-weight:850; backdrop-filter:blur(10px); }

/* Stronger but restrained product-card finish. */
.product-card { box-shadow:0 18px 55px rgba(12,35,24,.075); }
.product-card:hover { transform:translateY(-8px); box-shadow:0 30px 85px rgba(12,35,24,.14); }
.product-body { background:linear-gradient(180deg,var(--surface),color-mix(in srgb,var(--surface) 92%,var(--paper-deep))); }
.product-choose { box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 12px 30px rgba(10,67,43,.12); }
.product-choose:hover { transform:translateY(-2px); }

@media (max-width:1020px) {
  .photo-lookbook-grid { grid-template-columns:1fr; }
  .photo-lookbook-main { min-height:520px; }
  .photo-lookbook-stack { grid-template-columns:1fr 1fr; }
  .editorial-category-grid { grid-template-columns:1fr 1fr; grid-auto-rows:390px; }
  .editorial-category-card.editorial-wide { min-height:460px; }
}
@media (max-width:780px) {
  .photo-lookbook-grid, .photo-lookbook-stack { grid-template-columns:1fr; }
  .photo-lookbook-main, .photo-lookbook-card { min-height:390px; }
  .photo-lookbook-copy { right:20px; bottom:20px; left:20px; }
  .editorial-category-grid { grid-template-columns:1fr; grid-auto-rows:350px; }
  .editorial-category-card.editorial-wide { min-height:390px; }
  .modal-visual.is-photo-fill { min-height:340px; max-height:430px; }
}
@media (max-width:520px) {
  .photo-lookbook-section { padding-top:24px; }
  .photo-lookbook-main, .photo-lookbook-card { min-height:330px; border-radius:24px; }
  .photo-lookbook-copy strong { font-size:31px; }
  .photo-lookbook-stack .photo-lookbook-copy strong { font-size:28px; }
  .editorial-category-card,.editorial-category-card.editorial-wide { min-height:330px; }
  .product-media.is-photo-fill { aspect-ratio:4/3; }
}
@media (prefers-reduced-motion:reduce) {
  .photo-lookbook-card img,.category-card img,.editorial-category-card img { transition:none; transform:none !important; }
}


/* ===========================
   GODMODE V19 — original button style + reliable interactions
   =========================== */
.model-slider-viewport { cursor: default; }
.model-slide-media { cursor: grab; }
.model-slide-media:active { cursor: grabbing; }
.model-slide-copy { position: relative; }
.model-slide-actions { position: relative; z-index: 5; align-items: center; }
.model-slide-action {
  min-width: 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}
.model-slide-action-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}
.model-slide-action:hover .model-slide-action-icon { transform: translate(2px, -2px); }
.model-slide-whatsapp .whatsapp-icon {
  color: #18b76b;
  fill: none;
  stroke-width: 1.55;
}
.model-slide-whatsapp:hover .whatsapp-icon { transform: scale(1.07); }
.model-slide-action:focus-visible {
  outline: 3px solid rgba(201,255,74,.55);
  outline-offset: 3px;
}
.model-slide-whatsapp {
  border-color: rgba(24,183,107,.34);
}
.model-slide-whatsapp:hover {
  border-color: #18b76b;
  color: var(--green-2);
}
html[data-theme="dark"] .model-slide-whatsapp { border-color: rgba(201,255,74,.23); }
html[data-theme="dark"] .model-slide-whatsapp .whatsapp-icon { color: #55df98; }

@media (min-width: 641px) and (max-width: 1020px) {
  .model-slide-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .model-slide-actions .button { width: 100%; padding-inline: 16px; }
}
@media (max-width: 640px) {
  .model-slide-actions { gap: 11px; }
  .model-slide-actions .button { min-height: 54px; justify-content: center; }
}
@media (max-width: 380px) {
  .model-slide-actions .button { padding-inline: 15px; font-size: 11px; }
  .model-slide-action-icon { width: 17px; height: 17px; flex-basis: 17px; }
}


/* ===========================
   GODMODE V22 foundation — restored controls, languages and 400 DH delivery
   =========================== */
.nav-svg,.wa-icon,.heart-icon,.cart-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wa-icon { stroke-width: 1.55; }
.cart-icon { width: 18px; height: 18px; }

.announcement-bar {
  background: linear-gradient(90deg,#0b2c20,#124b34 55%,#0b2c20);
  box-shadow: inset 0 -1px rgba(255,255,255,.08);
}
.announcement-inner strong { display:inline-flex; align-items:center; gap:8px; }
.announcement-inner strong::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--acid); box-shadow:0 0 0 5px rgba(201,255,74,.12); }

.language-switcher { position:relative; }
.language-trigger {
  min-width: 68px;
  height: 43px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:0 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--surface);
  color:var(--ink);
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.language-trigger:hover,.language-switcher.is-open .language-trigger { border-color:var(--green); transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.language-trigger strong { font-size:10px; letter-spacing:.08em; }
.language-trigger > span { color:var(--muted); font-size:11px; transition:transform .2s ease; }
.language-switcher.is-open .language-trigger > span { transform:rotate(180deg); }
.language-menu {
  position:absolute;
  z-index:100;
  top:calc(100% + 12px);
  right:0;
  width:210px;
  padding:9px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--surface);
  box-shadow:0 24px 70px rgba(9,31,21,.19);
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px) scale(.98);
  transform-origin:top right;
  transition:opacity .2s ease,visibility .2s ease,transform .2s ease;
}
.language-switcher.is-open .language-menu { opacity:1; visibility:visible; transform:translateY(0) scale(1); }
.language-menu button {
  width:100%;
  min-height:46px;
  display:grid;
  grid-template-columns:34px 1fr 18px;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:13px;
  text-align:left;
  transition:background .18s ease,color .18s ease;
}
.language-menu button:hover,.language-menu button.is-active { background:var(--surface-3); color:var(--green-2); }
.language-menu button > span { width:31px; height:27px; display:grid; place-items:center; border:1px solid var(--line); border-radius:8px; font-size:9px; font-weight:900; }
.language-menu button strong { font-size:12px; }
.language-menu button i { opacity:0; color:var(--green-2); font-style:normal; }
.language-menu button.is-active i { opacity:1; }

.favorites-trigger { position:relative; }
.favorites-trigger .nav-svg { transition:fill .2s ease,transform .2s ease; }
.favorites-trigger:hover .nav-svg,.favorites-trigger.is-active .nav-svg { fill:rgba(18,61,45,.16); transform:scale(1.08); }
html[data-theme="dark"] .favorites-trigger:hover .nav-svg,html[data-theme="dark"] .favorites-trigger.is-active .nav-svg { fill:rgba(201,255,74,.18); }
.favorites-trigger b,[data-favorites-count] {
  min-width:17px;
  height:17px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--acid);
  color:#102016;
  font-size:8px;
  font-weight:900;
}
.favorites-trigger > b { position:absolute; top:-4px; right:-4px; box-shadow:0 0 0 3px var(--paper); }
html[data-theme="dark"] .favorites-trigger > b { box-shadow-color:#0d1410; }
.cart-trigger .cart-icon { margin-right:-2px; }

.mobile-menu-tools { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:17px; }
.mobile-menu-tools button { min-height:46px; display:flex; align-items:center; justify-content:center; gap:9px; padding:10px 12px; border:1px solid var(--line); border-radius:14px; background:var(--surface); font-size:11px; font-weight:800; }
.mobile-menu-tools [data-favorites-count] { position:static; }
.mobile-wa-button { display:flex!important; }

.product-quick { gap:8px; }
.product-quick .wa-icon { color:#18b76b; }
.product-quick:hover .wa-icon { transform:scale(1.08); }
.favorite-button { display:grid; place-items:center; }
.favorite-button .heart-icon { width:20px; height:20px; transition:fill .2s ease,transform .2s ease; }
.favorite-button.is-active .heart-icon { fill:#e35e70; stroke:#b8394f; transform:scale(1.08); }
.footer-whatsapp { display:inline-flex; align-items:center; gap:9px; }
.footer-whatsapp .wa-icon,.floating-whatsapp .wa-icon,.mobile-wa-button .wa-icon { color:currentColor; }
.footer-whatsapp b { font-size:14px; }
.floating-whatsapp { gap:9px; }
.floating-whatsapp .wa-icon { width:21px; height:21px; }

/* Preserve the classic V17 pill buttons exactly, only harden clicks. */
.model-slide-actions { position:relative; z-index:12; }
.model-slide-action { pointer-events:auto; touch-action:manipulation; }
.model-slide-details.button-primary { border-radius:999px; }
.model-slide-whatsapp.button-outline { border-radius:999px; }
.model-slide-whatsapp .wa-icon { color:#18b76b; }

.favorites-mode-notice {
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  margin:0 0 28px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(120deg,var(--surface),var(--surface-2));
  box-shadow:var(--shadow-sm);
}
.favorites-mode-notice > span { width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:var(--green); color:#fff; }
.favorites-mode-notice small { display:block; color:var(--green-2); font-size:9px; font-weight:900; letter-spacing:.16em; text-transform:uppercase; }
.favorites-mode-notice strong { display:block; margin-top:3px; font-family:var(--serif); font-size:24px; font-weight:500; }
.favorites-mode-notice p { margin:3px 0 0; color:var(--muted); font-size:12px; }
.favorites-mode-notice button { padding:11px 16px; border:1px solid var(--line-strong); border-radius:999px; font-size:10px; font-weight:850; }

html[dir="rtl"] body { direction:rtl; }
html[dir="rtl"] .language-menu { right:auto; left:0; transform-origin:top left; }
html[dir="rtl"] .language-menu button { text-align:right; }
html[dir="rtl"] .desktop-nav,html[dir="rtl"] .nav-actions,html[dir="rtl"] .hero-actions,html[dir="rtl"] .model-slide-actions { flex-direction:row-reverse; }
html[dir="rtl"] .model-slider-track,html[dir="rtl"] .quick-model-picker { direction:ltr; }
html[dir="rtl"] .model-slide-copy,html[dir="rtl"] .quick-model-card-copy { direction:rtl; text-align:right; }
html[dir="rtl"] .product-kicker,html[dir="rtl"] .product-availability,html[dir="rtl"] .announcement-inner,html[dir="rtl"] .footer-bottom { flex-direction:row-reverse; }
html[dir="rtl"] .model-slide-meta > span { border-left:0; border-right:1px solid var(--line); }
html[dir="rtl"] .model-slide-meta > span:first-child { border-right:0; }

@media (max-width:1180px) {
  .nav-shell { gap:22px; }
  .desktop-nav { gap:18px; }
  .language-trigger { min-width:62px; padding-inline:9px; }
  .cart-trigger { padding-left:12px; }
}
@media (max-width:1020px) {
  .nav-actions { gap:6px; }
  .language-menu { position:fixed; top:118px; right:18px; }
  html[dir="rtl"] .language-menu { right:auto; left:18px; }
}
@media (max-width:780px) {
  .announcement-inner strong::before { display:none; }
  .announcement-inner strong { font-size:10px; }
  .nav-actions .favorites-trigger { display:grid; }
  .nav-actions .theme-toggle { display:none; }
  .language-switcher { display:block; }
  .language-trigger { min-width:49px; width:49px; padding:0; gap:4px; }
  .language-trigger .nav-svg { display:none; }
  .language-trigger > span { display:none; }
  .favorites-trigger { width:41px; height:41px; }
  .cart-trigger { min-width:41px; height:41px; }
  .menu-trigger { width:41px; height:41px; }
  .favorites-mode-notice { grid-template-columns:auto 1fr; }
  .favorites-mode-notice button { grid-column:1/-1; width:100%; }
}
@media (max-width:520px) {
  .nav-shell { gap:8px; }
  .brand { gap:7px; }
  .brand-glasses { width:43px; }
  .brand-copy strong { font-size:16px; }
  .nav-actions { gap:4px; }
  .language-trigger,.favorites-trigger,.cart-trigger,.menu-trigger { width:39px; min-width:39px; height:39px; }
  .language-menu { top:108px; right:10px; width:min(210px,calc(100vw - 20px)); }
  html[dir="rtl"] .language-menu { right:auto; left:10px; }
  .model-slide-actions { gap:10px; }
  .model-slide-action { min-height:52px; }
}
@media (max-width:390px) {
  .brand-copy { display:none; }
  .brand-glasses { width:47px; }
  .nav-shell { grid-template-columns:auto 1fr; }
  .nav-actions { justify-self:end; }
}


/* ===========================
   GODMODE V21 — focused fixes only
   - favourites removed
   - responsive cart polished
   - multi-product photos clarified as per-item sales
   =========================== */
.favorites-trigger,
.favorite-button,
.favorites-mode-notice,
[data-favorites-open],
[data-favorites-count] { display:none!important; }

.nav-actions { gap:8px; }
.cart-trigger {
  position:relative;
  min-width:112px;
  justify-content:center;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 26px rgba(10,45,31,.18);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.cart-trigger:hover { transform:translateY(-2px); box-shadow:0 15px 34px rgba(10,45,31,.25); }
.cart-trigger:focus-visible { outline:3px solid rgba(201,255,74,.5); outline-offset:3px; }
.cart-trigger .cart-icon { width:19px; height:19px; margin:0; }
.cart-trigger b { flex:0 0 auto; }

.mobile-menu-tools { grid-template-columns:1fr; }
.mobile-menu-tools button { width:100%; }

.single-item-badge {
  position:absolute;
  z-index:3;
  left:13px;
  bottom:13px;
  max-width:calc(100% - 26px);
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.68);
  border-radius:999px;
  background:rgba(15,45,34,.86);
  color:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  font-size:8px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  pointer-events:none;
}
.modal-price-block { display:grid; justify-items:end; gap:4px; min-width:max-content; }
.modal-price-block > small { color:var(--muted); font-size:8px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.modal-price-block > strong { color:var(--green-2); font-family:var(--serif); font-size:34px; font-weight:400; line-height:1; }
.modal-photo-note {
  position:absolute;
  z-index:5;
  right:18px;
  bottom:18px;
  left:18px;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  padding:11px 13px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:15px;
  background:rgba(9,35,25,.84);
  color:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  font-size:10px;
  line-height:1.45;
}
.modal-photo-note i { flex:0 0 32px; width:32px; height:32px; display:grid; place-items:center; border-radius:50%; background:var(--acid); color:#102016; font-style:normal; font-size:10px; font-weight:950; }

.cart-backdrop { align-items:stretch; }
.cart-panel {
  width:min(590px,calc(100vw - 18px));
  height:calc(100dvh - 16px);
  min-height:0;
  margin:8px 0 8px 8px;
  overflow:hidden;
  border:1px solid var(--line);
  border-right:0;
  border-radius:28px 0 0 28px;
  box-shadow:-30px 0 90px rgba(0,0,0,.25);
}
.cart-head { min-height:88px; padding:18px 24px; background:linear-gradient(135deg,var(--surface),var(--surface-2)); }
.cart-head small { max-width:330px; line-height:1.4; }
.cart-head button { flex:0 0 42px; transition:transform .2s ease,background .2s ease; }
.cart-head button:hover { transform:rotate(6deg); background:var(--acid); color:#102016; }
.cart-items { min-height:0; padding:14px 22px; overscroll-behavior:contain; }
.cart-item { grid-template-columns:108px minmax(0,1fr); gap:15px; padding:15px 0; }
.cart-item img { width:108px; height:92px; object-fit:contain; padding:6px; border:1px solid var(--line); }
.cart-item-copy { min-width:0; }
.cart-item-copy h3 { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.cart-item-bottom { display:grid; grid-template-columns:minmax(0,1fr) auto auto; align-items:center; gap:10px; }
.cart-item-bottom > strong { display:grid; gap:2px; margin:0; }
.cart-item-bottom > strong span { color:var(--green-2); font-size:13px; }
.cart-item-bottom > strong small { color:var(--muted); font-size:8px; font-weight:700; }
.cart-remove { min-height:30px; padding:0 4px; }
.cart-footer { max-height:54dvh; overflow-y:auto; padding:17px 22px calc(20px + env(safe-area-inset-bottom)); overscroll-behavior:contain; }
.cart-item-policy { margin:0 0 13px; padding:10px 12px; border:1px solid var(--line); border-radius:12px; background:var(--surface); color:var(--muted); font-size:9px; line-height:1.5; }
.checkout-form input,.checkout-form select,.checkout-form textarea { min-width:0; }

html[dir="rtl"] .modal-price-block { justify-items:start; }
html[dir="rtl"] .single-item-badge { right:13px; left:auto; }
html[dir="rtl"] .cart-panel { margin:8px 8px 8px 0; border-right:1px solid var(--line); border-left:0; border-radius:0 28px 28px 0; transform:translateX(-100%); }
html[dir="rtl"] .cart-backdrop.is-open .cart-panel { transform:translateX(0); }
html[dir="rtl"] .cart-item-bottom > strong { margin:0; }

@media (max-width:1020px) {
  .cart-trigger { min-width:102px; }
  .cart-panel { width:min(570px,calc(100vw - 12px)); }
}
@media (max-width:780px) {
  .nav-actions { gap:6px; }
  .cart-trigger {
    width:54px;
    min-width:54px;
    height:43px;
    padding:0 11px;
    border-radius:16px;
    overflow:visible;
  }
  .cart-trigger span { display:none; }
  .cart-trigger b {
    position:absolute;
    top:-6px;
    right:-5px;
    min-width:20px;
    width:auto;
    height:20px;
    padding:0 5px;
    border:2px solid var(--paper);
    font-size:8px;
    box-shadow:0 5px 14px rgba(0,0,0,.16);
  }
  html[data-theme="dark"] .cart-trigger b { border-color:#0d1410; }
  .cart-panel { width:100%; height:100dvh; margin:0; border:0; border-radius:0; }
  html[dir="rtl"] .cart-panel { margin:0; border:0; border-radius:0; }
  .cart-head { min-height:78px; padding:14px 16px; }
  .cart-head h2 { font-size:34px; }
  .cart-head small { font-size:7px; }
  .cart-items { padding:8px 14px; }
  .cart-footer { max-height:58dvh; padding:14px 14px calc(14px + env(safe-area-inset-bottom)); }
  .checkout-form input,.checkout-form select,.checkout-form textarea { min-height:46px; font-size:16px; }
  .checkout-form textarea { min-height:66px; }
  .modal-photo-note { right:12px; bottom:12px; left:12px; padding:9px 10px; font-size:9px; }
  .modal-photo-note i { flex-basis:28px; width:28px; height:28px; }
}
@media (max-width:520px) {
  .nav-shell { gap:7px; }
  .nav-actions { gap:5px; }
  .language-trigger,.menu-trigger { width:40px; min-width:40px; height:40px; }
  .cart-trigger { width:49px; min-width:49px; height:40px; padding-inline:9px; }
  .cart-trigger .cart-icon { width:18px; height:18px; }
  .single-item-badge { left:10px; bottom:10px; padding:6px 8px; font-size:7px; }
  html[dir="rtl"] .single-item-badge { right:10px; left:auto; }
  .modal-heading { grid-template-columns:minmax(0,1fr) auto; align-items:start; }
  .modal-price-block > strong { font-size:28px; }
  .modal-price-block > small { font-size:7px; }
  .cart-item { grid-template-columns:82px minmax(0,1fr); gap:11px; padding:12px 0; }
  .cart-item img { width:82px; height:78px; padding:4px; }
  .cart-item-copy h3 { font-size:20px; }
  .cart-item-bottom { grid-template-columns:minmax(0,1fr) auto; gap:8px; }
  .cart-item-bottom .cart-remove { grid-column:1/-1; justify-self:end; }
  .mini-quantity button { width:32px; height:32px; }
  .cart-total { margin:13px 0; }
  .cart-total strong { font-size:27px; }
  .cart-item-policy { font-size:8px; }
}
@media (max-width:390px) {
  .cart-trigger { width:47px; min-width:47px; }
  .cart-head small { max-width:210px; }
  .cart-item { grid-template-columns:74px minmax(0,1fr); }
  .cart-item img { width:74px; height:72px; }
}

/* ===========================
   GODMODE V22 — focused commerce, diagnostic and location upgrade
   =========================== */

/* Official Khalil Vision logo supplied by the shop. */
.brand-with-logo { gap: 10px; min-width: 0; }
.brand-main-logo { width: 126px; height: 60px; padding: 4px 7px; border-radius: 12px; background: #fff; object-fit: contain; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.brand-with-logo .brand-copy { display: none; }
.brand-footer .brand-main-logo { width: 170px; height: 92px; }
html[data-theme="dark"] .brand-main-logo { box-shadow: 0 10px 30px rgba(0,0,0,.28); }

/* Truthful pricing and sale presentation. */
.product-price { display: inline-flex; align-items: baseline; justify-content: flex-end; gap: 7px; flex-wrap: wrap; }
.product-price del { color: var(--muted); font-size: .7em; font-weight: 600; text-decoration-thickness: 1px; }
.product-price span { color: inherit; }
.modal-price-block .product-price, #modal-price { display: inline-flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
#modal-price del { color: var(--muted); font-size: 15px; }
#modal-price span { color: var(--green); }

/* Promotion section. */
.promo-section { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.promo-section::before { position: absolute; top: -230px; right: -180px; width: 520px; height: 520px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.promo-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.promo-product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .35s cubic-bezier(.2,.75,.2,1), box-shadow .35s ease; }
.promo-product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.promo-product-media { position: relative; display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; border: 0; background: var(--surface-3); cursor: pointer; }
.promo-product-media img { width: 100%; height: 100%; padding: 10px; object-fit: contain; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.promo-product-card:hover img { transform: scale(1.04); }
.promo-ribbon { position: absolute; top: 14px; left: 14px; padding: 8px 11px; border-radius: 999px; background: var(--acid); color: #102016; font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.promo-saving { position: absolute; right: 14px; bottom: 14px; padding: 8px 11px; border-radius: 999px; background: rgba(8,32,21,.88); color: #fff; font-size: 10px; font-weight: 900; backdrop-filter: blur(10px); }
.promo-product-copy { padding: 20px; }
.promo-product-copy > small { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.promo-product-copy h3 { margin: 8px 0 6px; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1; }
.promo-product-copy p { min-height: 36px; margin: 0; color: var(--muted); font-size: 11px; }
.promo-product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.promo-product-bottom strong { color: var(--green); }
.promo-product-bottom button { padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; color: var(--text); font-size: 10px; font-weight: 850; cursor: pointer; }
.promo-note { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 22px; color: var(--muted); font-size: 10px; font-weight: 750; }

/* Advanced product configurator. */
.product-configurator { grid-template-columns: minmax(360px,.92fr) minmax(500px,1.08fr); width: min(1250px,calc(100vw - 40px)); max-height: calc(100vh - 32px); }
.product-configurator .modal-copy { padding: 34px; }
.reference-status { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 20px; padding: 11px 13px; border: 1px solid rgba(17,92,63,.18); border-radius: 14px; background: rgba(25,116,79,.06); color: var(--muted); font-size: 10px; line-height: 1.5; }
.reference-status strong { flex: 0 0 auto; color: var(--green); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.configurator-section { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.configurator-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.configurator-heading small { color: var(--green); font-size: 9px; font-weight: 950; letter-spacing: .14em; }
.configurator-heading h3 { margin: 4px 0 0; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.configurator-heading > span { color: var(--muted); font-size: 10px; }
.configurator-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; margin-top: 16px; }
.config-field { display: grid; gap: 7px; }
.config-field > span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.config-field select, .config-field input, .pd-field input, .eye-grid input { width: 100%; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 13px; background: var(--surface); color: var(--text); padding: 0 13px; font: inherit; font-size: 12px; }
.config-field[hidden], .prescription-panel[hidden], .lens-tint-panel[hidden] { display: none !important; }
.lens-tint-panel { display: grid; gap: 10px; margin-top: 15px; padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-2); }
.lens-tint-panel > span { color: var(--muted); font-size: 10px; font-weight: 850; }
.lens-tint-options { display: flex; gap: 10px; }
.lens-tint-options button { width: 34px; height: 34px; border: 3px solid var(--surface); border-radius: 50%; background: var(--tint); box-shadow: 0 0 0 1px var(--line-strong); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.lens-tint-options button.active { transform: scale(1.12); box-shadow: 0 0 0 2px var(--acid); }
.prescription-panel { margin-top: 15px; }
.prescription-upload { display: grid; gap: 8px; padding: 18px; border: 1px dashed var(--line-strong); border-radius: 17px; background: var(--surface-2); cursor: pointer; }
.prescription-upload input { width: 100%; }
.prescription-upload span { font-size: 11px; font-weight: 900; }
.prescription-upload strong { color: var(--green); font-size: 12px; }
.prescription-upload small { color: var(--muted); font-size: 10px; }
.manual-prescription { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.eye-card { padding: 15px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-2); }
.eye-card > strong { display: block; margin-bottom: 12px; font-size: 11px; }
.eye-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.eye-grid label { display: grid; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 900; }
.eye-grid input { min-height: 41px; padding: 0 9px; background: var(--surface); }
.pd-field { grid-column: 1/-1; display: grid; gap: 7px; }
.pd-field span { color: var(--muted); font-size: 10px; font-weight: 850; }
.config-total-card { display: grid; gap: 9px; margin-top: 16px; padding: 16px 18px; border: 1px solid rgba(17,92,63,.2); border-radius: 18px; background: linear-gradient(135deg,rgba(39,126,87,.09),var(--surface)); }
.config-total-card > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 11px; }
.config-total-card strong { color: var(--text); }
.config-grand-total { margin-top: 3px; padding-top: 10px; border-top: 1px solid var(--line); }
.config-grand-total span, .config-grand-total strong { color: var(--green) !important; font-size: 15px; font-weight: 950; }
.modal-actions .button { gap: 8px; }
.button-icon, .modal-actions .wa-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-prescription { margin-top: 5px !important; padding: 6px 8px; border-radius: 8px; background: var(--surface-2); font-size: 9px !important; }

/* Optical-help service page. */
.optic-help-hero .inner-hero-image img { object-fit: cover !important; }
.optic-help-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.optic-help-intro { position: sticky; top: 130px; }
.optic-help-intro h2 { margin: 14px 0; font-family: var(--serif); font-size: clamp(40px,4.5vw,66px); font-weight: 400; line-height: .98; }
.optic-help-intro > p { color: var(--muted); line-height: 1.75; }
.optic-help-points { display: grid; gap: 12px; margin-top: 25px; }
.optic-help-points article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.optic-help-points article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--acid); color: #102016; font-size: 10px; font-weight: 950; }
.optic-help-points strong { font-size: 12px; }
.optic-help-points p { margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.optic-alert { margin-top: 18px; padding: 15px; border-left: 3px solid #d1962e; border-radius: 12px; background: rgba(209,150,46,.08); }
.optic-alert strong { font-size: 11px; }
.optic-alert p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.optic-problem-form { padding: clamp(24px,3vw,40px); border: 1px solid var(--line); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow-lg); }
.form-heading span { color: var(--green); font-size: 9px; font-weight: 950; letter-spacing: .14em; }
.form-heading h2 { margin: 7px 0; font-family: var(--serif); font-size: clamp(34px,3.5vw,52px); font-weight: 400; }
.form-heading p { margin: 0 0 22px; color: var(--muted); font-size: 11px; }
.optic-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.optic-form-grid label { display: grid; gap: 7px; }
.optic-form-grid label > span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.optic-form-grid .full { grid-column: 1/-1; }
.optic-form-grid input, .optic-form-grid select, .optic-form-grid textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 13px; background: var(--surface-2); color: var(--text); padding: 13px 14px; font: inherit; font-size: 12px; }
.optic-form-grid textarea { min-height: 150px; resize: vertical; }
.optic-file-field { padding: 15px; border: 1px dashed var(--line-strong); border-radius: 15px; background: var(--surface-2); }
.optic-file-field small { color: var(--muted); font-size: 9px; }
.optic-submit { width: 100%; margin-top: 16px; justify-content: space-between; }
.form-privacy { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: 9px; }

/* Location panel added to the home page. */
.home-location-section { padding-top: 24px; }
.home-location-shell { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: var(--surface); box-shadow: var(--shadow-lg); }
.home-location-copy { padding: clamp(30px,5vw,70px); }
.location-logo { width: 190px; max-height: 110px; margin: 14px 0 22px; padding: 7px; border-radius: 14px; background: #fff; object-fit: contain; }
.home-location-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px,5vw,72px); font-weight: 400; line-height: .98; }
.home-location-copy h2 em { color: var(--green); font-weight: 400; }
.home-location-copy > p { margin: 20px 0; color: var(--muted); line-height: 1.7; }
.home-location-facts { display: grid; gap: 0; margin: 22px 0; border-top: 1px solid var(--line); }
.home-location-facts div { display: grid; grid-template-columns: 145px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.home-location-facts dt { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.home-location-facts dd { margin: 0; font-size: 11px; font-weight: 750; }
.home-map-frame { min-height: 620px; background: var(--surface-3); }
.home-map-frame iframe { width: 100%; height: 100%; min-height: 620px; border: 0; }
.loading-placeholder { padding: 30px; color: var(--muted); }

@media (max-width: 1080px) {
  .promo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-configurator { grid-template-columns: 1fr 1.05fr; }
  .optic-help-layout { grid-template-columns: 1fr; }
  .optic-help-intro { position: static; }
  .home-location-shell { grid-template-columns: 1fr; }
  .home-map-frame, .home-map-frame iframe { min-height: 430px; }
}

@media (max-width: 780px) {
  .brand-main-logo { width: 98px; height: 50px; padding: 3px 5px; border-radius: 9px; }
  .brand-footer .brand-main-logo { width: 145px; height: 78px; }
  .nav-shell { gap: 8px; }
  .product-configurator { display: block; width: 100%; max-height: none; border-radius: 0; }
  .product-configurator .modal-copy { padding: 22px 16px 30px; }
  .product-configurator .modal-visual { min-height: 300px; max-height: 390px; }
  .configurator-grid { grid-template-columns: 1fr; }
  .manual-prescription { grid-template-columns: 1fr; }
  .modal-actions { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
  .modal-actions .modal-wa { grid-column: 1/-1; }
  .promo-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .promo-product-copy { padding: 15px; }
  .promo-product-copy h3 { font-size: 24px; }
  .promo-product-bottom { align-items: flex-end; flex-direction: column; }
  .promo-product-bottom button { width: 100%; }
  .optic-form-grid { grid-template-columns: 1fr; }
  .optic-form-grid .full { grid-column: auto; }
  .optic-problem-form { border-radius: 22px; padding: 22px 16px; }
  .home-location-shell { border-radius: 24px; }
  .home-location-copy { padding: 28px 18px; }
  .home-location-facts div { grid-template-columns: 1fr; gap: 4px; }
  .home-map-frame, .home-map-frame iframe { min-height: 350px; }
}

@media (max-width: 520px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo-product-card { border-radius: 22px; }
  .promo-product-media { aspect-ratio: 16/11; }
  .promo-note { justify-content: flex-start; gap: 10px; }
  .modal-heading { align-items: flex-start; }
  .configurator-heading { align-items: flex-start; flex-direction: column; }
  .configurator-heading h3 { font-size: 27px; }
  .manual-prescription { gap: 10px; }
  .eye-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .modal-actions { grid-template-columns: 92px 1fr; }
  .modal-actions .button { min-height: 52px; padding-inline: 12px; font-size: 9px; }
  .location-logo { width: 155px; }
}

/* V22 configured-selection total */
.config-selection-total {
  margin-top: 3px;
  padding-top: 11px;
  border-top: 1px dashed var(--line-strong);
}
.config-selection-total span,
.config-selection-total strong {
  color: var(--green) !important;
  font-size: 17px;
  font-weight: 950;
}

/* V22 mobile configurator: anchor the long dialog to the top instead of
   vertically centering it outside the phone viewport. */
@media (max-width: 780px) {
  .modal-backdrop {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .product-configurator {
    flex: 0 0 auto;
    min-height: 100dvh;
    margin: 0;
    overflow: visible;
    border: 0;
  }
  .product-configurator .modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
  }
  html[dir="rtl"] .product-configurator .modal-close {
    right: auto;
    left: 12px;
  }
}

/* ===========================
   GODMODE V23 — dedicated promos + WhatsApp-only attachments
   =========================== */

/* Keep the new promotion destination visible without disturbing the navigation. */
.desktop-nav a[href="promos.html"] {
  margin-block: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(18,61,45,.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,255,74,.34), rgba(201,255,74,.08));
}
.desktop-nav a[href="promos.html"]::before {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-inline-end: 7px;
  border-radius: 50%;
  background: var(--green-2);
  content: "";
  vertical-align: 1px;
  box-shadow: 0 0 0 5px rgba(201,255,74,.2);
}
.desktop-nav a[href="promos.html"]::after { bottom: 3px; right: 13px; left: 13px; }
.desktop-nav a[href="promos.html"]:hover,
.desktop-nav a[href="promos.html"].active {
  border-color: rgba(18,61,45,.32);
  background: var(--acid);
  color: #102016;
}
html[data-theme="dark"] .desktop-nav a[href="promos.html"] { border-color: rgba(201,255,74,.18); }
.mobile-menu a[href="promos.html"] { color: var(--green-2); font-weight: 700; }
html[data-theme="dark"] .mobile-menu a[href="promos.html"] { color: var(--acid); }

/* Dedicated promotions page. */
.promo-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(62px,7vw,106px) 0 clamp(58px,7vw,92px);
  background:
    radial-gradient(circle at 82% 22%, rgba(201,255,74,.22), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(255,255,255,.08), transparent 31%),
    #0e2c21;
  color: #fff;
}
.promo-hero::before,
.promo-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
}
.promo-hero::before { top: -280px; right: -150px; width: 660px; height: 660px; }
.promo-hero::after { bottom: -310px; left: -230px; width: 610px; height: 610px; }
.promo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr);
  align-items: center;
  gap: clamp(42px,7vw,110px);
}
.promo-hero .eyebrow { color: var(--acid); }
.promo-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-family: var(--serif);
  font-size: clamp(58px,6.3vw,98px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}
.promo-hero-copy h1 em { color: var(--acid); font-weight: 400; }
.promo-hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; }
.promo-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.promo-hero .button-outline { border-color: rgba(255,255,255,.26); color: #fff; }
.promo-hero .button-outline:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.promo-hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 750; }
.promo-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.promo-hero-visual { position: relative; min-height: 560px; }
.promo-visual-main,
.promo-visual-small {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.26);
  background: #f8f5ee;
  box-shadow: 0 35px 100px rgba(0,0,0,.32);
}
.promo-visual-main { inset: 24px 76px 18px 20px; border-radius: 34px; transform: rotate(-2deg); }
.promo-visual-main img,
.promo-visual-small img { width: 100%; height: 100%; object-fit: contain; }
.promo-visual-main img { padding: 18px; }
.promo-visual-main > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--acid);
  color: #102016;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}
.promo-visual-small { z-index: 2; width: 185px; aspect-ratio: 1; border-radius: 24px; }
.promo-visual-small img { padding: 9px; }
.promo-visual-small-one { top: 0; right: 0; transform: rotate(5deg); }
.promo-visual-small-two { right: 0; bottom: 0; transform: rotate(-4deg); }
.promo-visual-seal {
  position: absolute;
  z-index: 4;
  right: 154px;
  bottom: 18px;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  border: 8px solid rgba(14,44,33,.2);
  border-radius: 50%;
  background: var(--acid);
  color: #102016;
  text-align: center;
  transform: rotate(7deg);
}
.promo-visual-seal strong { font-family: var(--serif); font-size: 42px; line-height: .8; }
.promo-visual-seal span { margin-top: 7px; font-size: 8px; font-weight: 950; letter-spacing: .13em; line-height: 1.35; }

.promo-assurance-strip { border-block: 1px solid var(--line); background: var(--surface); }
.promo-assurance-strip .container { min-height: 68px; display: flex; align-items: center; justify-content: center; gap: clamp(18px,4vw,54px); color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.promo-assurance-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(201,255,74,.18); }
.promo-catalogue { position: relative; }
.promo-page-grid .promo-product-card { min-height: 100%; display: flex; flex-direction: column; }
.promo-page-grid .promo-product-copy { flex: 1; display: flex; flex-direction: column; }
.promo-page-grid .promo-product-bottom { margin-top: auto; }
.promo-page-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(120deg,var(--surface),var(--surface-2));
}
.promo-page-note > span { max-width: 650px; color: var(--muted); font-size: 11px; }
.promo-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 34px; }
.promo-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.promo-steps article:hover { transform: translateY(-6px); border-color: rgba(18,61,45,.3); box-shadow: var(--shadow-md); }
.promo-steps article > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: #102016; font-size: 10px; font-weight: 950; }
.promo-steps h3 { margin: 1px 0 7px; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.05; }
.promo-steps p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.promo-home-link { display: flex; justify-content: center; margin-top: 24px; }

/* No upload controls: all photos and prescriptions are attached in WhatsApp. */
.whatsapp-attachment-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 17px;
  border: 1px solid rgba(24,183,107,.28);
  border-radius: 17px;
  background: linear-gradient(135deg,rgba(24,183,107,.11),rgba(201,255,74,.06));
}
.whatsapp-attachment-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18b76b;
  color: #fff;
  box-shadow: 0 10px 25px rgba(24,183,107,.22);
}
.whatsapp-attachment-icon .wa-icon { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.whatsapp-attachment-notice strong { display: block; margin-top: 1px; font-size: 11px; }
.whatsapp-attachment-notice p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.service-attachment-notice { grid-column: 1/-1; }

@media (max-width: 1240px) and (min-width: 1021px) {
  .nav-shell { gap: 18px; }
  .brand-main-logo { width: 108px; }
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: 10px; }
  .desktop-nav a[href="promos.html"] { padding-inline: 11px; }
  .cart-trigger { min-width: 104px; }
}

@media (max-width: 1020px) {
  .promo-hero-grid { grid-template-columns: 1fr; }
  .promo-hero-copy { max-width: 780px; }
  .promo-hero-visual { min-height: 530px; max-width: 760px; width: 100%; }
  .promo-steps { grid-template-columns: 1fr 1fr; }
  .promo-steps article:last-child { grid-column: 1/-1; }
}

@media (max-width: 780px) {
  .promo-hero { padding-top: 52px; }
  .promo-hero-copy h1 { font-size: clamp(52px,12vw,76px); }
  .promo-hero-copy > p { font-size: 14px; }
  .promo-hero-visual { min-height: 440px; }
  .promo-visual-main { inset: 20px 52px 16px 0; }
  .promo-visual-small { width: 145px; }
  .promo-visual-seal { right: 112px; width: 104px; height: 104px; }
  .promo-assurance-strip .container { min-height: 74px; flex-wrap: wrap; gap: 9px 17px; padding-block: 14px; }
  .promo-page-note { align-items: stretch; flex-direction: column; }
  .promo-page-note .button { width: 100%; }
  .promo-steps { grid-template-columns: 1fr; }
  .promo-steps article:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .promo-hero-copy h1 { font-size: clamp(48px,14vw,65px); }
  .promo-hero-actions { display: grid; }
  .promo-hero-actions .button { width: 100%; }
  .promo-hero-trust { display: grid; }
  .promo-hero-visual { min-height: 350px; margin-top: 8px; }
  .promo-visual-main { inset: 10px 28px 8px 0; border-radius: 24px; }
  .promo-visual-main img { padding: 10px; }
  .promo-visual-small { width: 100px; border-radius: 17px; }
  .promo-visual-small-one { top: 0; }
  .promo-visual-small-two { bottom: 0; }
  .promo-visual-seal { right: 70px; bottom: 3px; width: 82px; height: 82px; border-width: 5px; }
  .promo-visual-seal strong { font-size: 31px; }
  .promo-visual-seal span { font-size: 6px; }
  .promo-assurance-strip i { display: none; }
  .promo-assurance-strip .container { align-items: flex-start; flex-direction: column; font-size: 9px; }
  .promo-steps article { grid-template-columns: 44px 1fr; padding: 18px; }
  .promo-steps article > span { width: 42px; height: 42px; }
  .promo-steps h3 { font-size: 24px; }
  .whatsapp-attachment-notice { gap: 11px; padding: 14px; }
  .whatsapp-attachment-icon { flex-basis: 39px; width: 39px; height: 39px; }
}

@media (prefers-reduced-motion: no-preference) {
  .promo-visual-main { animation: promoFloatMain 6s ease-in-out infinite; }
  .promo-visual-small-one { animation: promoFloatOne 5.2s ease-in-out infinite; }
  .promo-visual-small-two { animation: promoFloatTwo 6.8s ease-in-out infinite; }
  .promo-visual-seal { animation: promoSeal 7s ease-in-out infinite; }
}
@keyframes promoFloatMain { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-8px); } }
@keyframes promoFloatOne { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(7deg) translateY(-9px); } }
@keyframes promoFloatTwo { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(8px); } }
@keyframes promoSeal { 0%,100% { transform: rotate(7deg) scale(1); } 50% { transform: rotate(3deg) scale(1.04); } }


/* V27 — high-resolution image rendering only; layout and theme unchanged. */
img { image-rendering: auto; }
.hero-frame img, .product-media img, .product-card img, .modal-visual img, .lookbook-card img, .category-card img {
  backface-visibility: hidden;
  transform: translateZ(0);
}


/* ===== Khalil Vision v29 complete catalogue enhancements ===== */
.price-on-request{font-size:.78em;letter-spacing:.02em;white-space:nowrap}.product-media,.quick-model-card-media,.modal-visual{background-image:linear-gradient(110deg,rgba(255,255,255,.25),rgba(255,255,255,.7),rgba(255,255,255,.25)),var(--image-placeholder,none);background-size:220% 100%,cover;background-position:100% 0,center}.progressive-product-image{opacity:.25;filter:blur(7px);transition:opacity .5s ease,filter .65s ease,transform .5s ease}.progressive-product-image.is-loaded{opacity:1;filter:none}.progressive-product-image.is-error{opacity:.35;filter:grayscale(1)}
.search-tools .field-shell:first-child{position:relative}.search-suggestions{position:absolute;left:0;right:0;top:calc(100% + 8px);z-index:45;padding:8px;background:var(--surface,#fff);border:1px solid rgba(18,61,45,.15);border-radius:18px;box-shadow:0 24px 60px rgba(13,37,29,.18);max-height:420px;overflow:auto}.search-suggestions button{width:100%;display:grid;grid-template-columns:58px 1fr auto;gap:11px;align-items:center;border:0;background:transparent;border-radius:12px;padding:8px;text-align:left;color:inherit;cursor:pointer}.search-suggestions button:hover,.search-suggestions button:focus-visible{background:rgba(18,61,45,.08)}.search-suggestions img{width:58px;height:44px;object-fit:contain;border-radius:8px;background:#faf9f6}.search-suggestions span{display:grid}.search-suggestions small{opacity:.62;font-size:.68rem}.search-suggestions strong{font-size:.86rem}.search-suggestions p{padding:16px;text-align:center;opacity:.65}

.modal-gallery-controls{position:absolute;left:18px;right:18px;bottom:18px;display:flex;justify-content:center;gap:8px;align-items:center;z-index:5}.modal-gallery-controls button,.modal-gallery-controls b{border:1px solid rgba(255,255,255,.62);background:rgba(9,28,21,.72);color:white;border-radius:999px;min-width:38px;height:38px;display:grid;place-items:center;backdrop-filter:blur(12px)}.modal-gallery-controls button{cursor:pointer}.modal-gallery-thumbs{position:absolute;left:14px;right:14px;top:14px;display:flex;gap:7px;overflow:auto;z-index:5;scrollbar-width:none}.modal-gallery-thumbs button{flex:0 0 54px;height:43px;padding:2px;border:1px solid transparent;border-radius:9px;background:rgba(255,255,255,.55);cursor:pointer}.modal-gallery-thumbs button.active{border-color:#f0c46b;box-shadow:0 0 0 2px rgba(18,61,45,.55)}.modal-gallery-thumbs img{width:100%;height:100%;object-fit:contain;border-radius:6px}.modal-share{min-width:120px}.modal-related{margin-top:26px;padding-top:22px;border-top:1px solid rgba(18,61,45,.12)}.modal-related h3{margin:0 0 10px;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase}.modal-related>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-bottom:18px}.modal-related button{display:grid;grid-template-columns:58px 1fr;align-items:center;gap:8px;text-align:left;border:1px solid rgba(18,61,45,.1);background:rgba(255,255,255,.35);border-radius:12px;padding:6px;color:inherit;cursor:pointer}.modal-related img{width:58px;height:48px;object-fit:contain;border-radius:8px}.modal-related span{display:grid;min-width:0}.modal-related small{opacity:.58;font-size:.62rem}.modal-related strong{font-size:.74rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-viewer{position:fixed;inset:0;z-index:9999;background:rgba(3,10,8,.94);display:none;place-items:center;touch-action:pan-y;color:white}.product-viewer.is-open{display:grid;animation:productViewerFade .25s ease}.product-viewer figure{margin:0;display:grid;place-items:center;max-width:94vw;max-height:92vh}.product-viewer img{max-width:92vw;max-height:86vh;object-fit:contain;transition:transform .25s;cursor:zoom-in}.product-viewer img.is-zoomed{transform:scale(1.7);cursor:zoom-out}.product-viewer figcaption{text-align:center;padding:8px;opacity:.72}.product-viewer-close,.product-viewer-prev,.product-viewer-next{position:fixed;z-index:2;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.09);color:white;border-radius:999px;width:48px;height:48px;font-size:1.4rem;cursor:pointer;backdrop-filter:blur(10px)}.product-viewer-close{top:18px;right:18px}.product-viewer-prev{left:18px;top:50%}.product-viewer-next{right:18px;top:50%}.product-viewer-counter{position:fixed;bottom:18px;left:50%;transform:translateX(-50%);padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.1)}.viewer-open{overflow:hidden}@keyframes productViewerFade{from{opacity:0}to{opacity:1}}

@media(max-width:780px){.search-suggestions{position:fixed;left:12px;right:12px;top:140px}.modal-gallery-thumbs{top:58px}.modal-related>div{grid-template-columns:1fr}.product-viewer-prev,.product-viewer-next{top:auto;bottom:18px}.product-viewer-prev{left:18px}.product-viewer-next{right:18px}}
@media(prefers-reduced-motion:reduce){.progressive-product-image,.product-viewer{transition:none!important;animation:none!important}}


/* ===== GODMODE V29 — complete public catalogue, no admin page ===== */
.product-card {
  content-visibility: auto;
  contain-intrinsic-size: 520px;
  scroll-margin-top: 110px;
}
.product-gallery-count {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  min-width: 38px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 999px;
  background: rgba(10,35,25,.72);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}
.product-gallery-count > span { font-size: 10px; opacity: .82; }
.catalogue-deferred { display: none !important; }
.catalogue-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 34px auto 0;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb,var(--surface) 92%,transparent);
  box-shadow: var(--shadow-sm);
}
.catalogue-progress[hidden] { display: none !important; }
.catalogue-progress-copy { min-width: 0; flex: 1; display: grid; gap: 9px; }
.catalogue-progress-copy strong { color: var(--muted); font-size: 11px; font-weight: 800; }
.catalogue-progress-track { height: 5px; overflow: hidden; border-radius: 999px; background: var(--paper-deep); }
.catalogue-progress-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--green),var(--acid)); transition: width .35s ease; }
.catalogue-progress-actions { display: flex; align-items: center; gap: 8px; }
.catalogue-progress button {
  min-height: 43px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform .2s ease, background .2s ease;
}
.catalogue-progress button:hover { transform: translateY(-2px); background: var(--green-2); }
.catalogue-progress .catalogue-show-all { background: transparent; color: var(--green-2); }
.catalogue-progress .catalogue-show-all:hover { background: var(--surface-3); }
.product-viewer img { touch-action: pinch-zoom; }
.product-media,.product-choose,.product-quick,.favorite-button { touch-action: manipulation; }

@media (min-width: 1280px) {
  .product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
  .product-body { padding: 20px 18px 18px; }
  .product-card h3 { font-size: clamp(24px,2vw,30px); }
  .product-description { min-height: 58px; }
}

@media (hover: none) {
  .product-card:hover { transform: none; box-shadow: 0 18px 55px rgba(12,35,24,.075); }
  .product-card:hover::before { transform: translateX(-130%); }
  .product-card:hover .product-media img { transform: none; }
}

@media (max-width: 640px) and (min-width: 361px) {
  .collection-section { padding-top: 28px; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; align-items: stretch; }
  .product-card { border-radius: 16px; contain-intrinsic-size: 390px; }
  .product-media { aspect-ratio: 1 / .82; }
  .product-body { padding: 12px 11px 11px; }
  .product-kicker { display: grid; gap: 4px; }
  .product-kicker span { overflow: hidden; font-size: 6.5px; letter-spacing: .12em; text-overflow: ellipsis; white-space: nowrap; }
  .product-kicker strong { font-size: 12px; }
  .product-card h3 { min-height: 42px; margin: 7px 0 4px; font-size: 20px; line-height: 1.03; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .product-reference { overflow: hidden; font-size: 8px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
  .product-description { display: none; }
  .product-availability { min-height: 26px; margin: 10px 0 8px; }
  .stock-pill { gap: 4px; font-size: 6.5px; letter-spacing: .07em; }
  .stock-pill i { width: 6px; height: 6px; border-width: 1px; }
  .swatch-stack { display: none; }
  .product-action-row { grid-template-columns: 1fr 39px; gap: 6px; }
  .product-choose,.product-quick { min-height: 41px; border-radius: 11px; }
  .product-choose { gap: 6px; padding: 9px 9px; font-size: 7.5px; letter-spacing: .05em; }
  .product-choose b { width: 21px; height: 21px; font-size: 10px; }
  .product-quick { min-width: 39px; padding: 8px; }
  .product-badge { top: 8px; left: 8px; max-width: calc(100% - 54px); padding: 6px 7px; font-size: 5.8px; letter-spacing: .07em; }
  .single-item-badge { left: 7px; bottom: 7px; max-width: 58%; padding: 5px 6px; font-size: 5.7px; }
  .product-gallery-count { right: 7px; bottom: 7px; min-width: 31px; height: 25px; gap: 4px; padding: 0 6px; font-size: 7px; }
  .product-gallery-count > span { font-size: 8px; }
  .catalogue-progress { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 22px; padding: 14px; border-radius: 16px; }
  .catalogue-progress-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .catalogue-progress button { width: 100%; min-height: 44px; padding-inline: 10px; font-size: 8px; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
  .catalogue-progress { align-items: stretch; flex-direction: column; }
  .catalogue-progress-actions { display: grid; }
}

@media (max-width: 780px) {
  .search-suggestions { top: 118px; max-height: min(62vh,440px); }
  .product-viewer-prev,.product-viewer-next { width: 44px; height: 44px; }
}


/* V30 — stable numbered catalogue pagination (no infinite loading) */
.catalogue-pagination{margin:clamp(28px,4vw,54px) 0 10px;padding:20px;border:1px solid var(--line);border-radius:24px;background:linear-gradient(145deg,color-mix(in srgb,var(--surface) 94%,transparent),color-mix(in srgb,var(--surface-2) 92%,transparent));box-shadow:0 18px 50px rgba(0,0,0,.08);display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:18px}
.catalogue-pagination[hidden]{display:none!important}.pagination-summary{display:flex;align-items:baseline;gap:7px;white-space:nowrap}.pagination-summary strong{font-size:1.05rem}.pagination-summary span,.pagination-jump span{font-size:.72rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}.pagination-nav{display:flex;align-items:center;justify-content:center;gap:10px;min-width:0}.pagination-pages{display:flex;align-items:center;justify-content:center;gap:6px;min-width:0}.pagination-number,.pagination-arrow{border:1px solid var(--line);background:var(--surface);color:var(--text);min-width:42px;height:42px;border-radius:14px;font:inherit;font-weight:800;cursor:pointer;transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease}.pagination-number:hover,.pagination-arrow:hover:not(:disabled){transform:translateY(-2px);border-color:var(--accent)}.pagination-number.is-active{background:var(--accent);border-color:var(--accent);color:#071008;box-shadow:0 8px 22px color-mix(in srgb,var(--accent) 26%,transparent)}.pagination-arrow{padding:0 14px;display:flex;align-items:center;justify-content:center;gap:8px}.pagination-arrow:disabled{opacity:.38;cursor:not-allowed}.pagination-ellipsis{display:grid;place-items:center;min-width:22px;color:var(--muted)}.pagination-jump{display:flex;align-items:center;gap:7px;white-space:nowrap}.pagination-jump select{height:42px;border:1px solid var(--line);border-radius:12px;background:var(--surface);color:var(--text);padding:0 30px 0 12px;font:inherit;font-weight:800}.results-line b#results-page-range{font-weight:800;color:var(--accent)}
/* Keep iOS memory use predictable: only the current page is painted. */
#collection-grid{contain:layout style}.product-card{content-visibility:auto;contain-intrinsic-size:420px 640px}.quick-model-picker{contain:layout paint}.quick-model-card{content-visibility:auto;contain-intrinsic-size:270px 360px}
@media (max-width:900px){.catalogue-pagination{grid-template-columns:1fr;justify-items:center}.pagination-summary{order:1}.pagination-nav{order:2;width:100%}.pagination-jump{order:3}.pagination-arrow span:not([aria-hidden]){display:none}}
@media (max-width:640px){.catalogue-pagination{padding:14px 10px;border-radius:18px;gap:12px}.pagination-nav{gap:5px}.pagination-pages{gap:4px;max-width:calc(100vw - 132px);overflow:hidden}.pagination-number,.pagination-arrow{min-width:36px;height:38px;border-radius:12px}.pagination-arrow{padding:0 9px}.pagination-ellipsis{min-width:14px}.pagination-summary{font-size:.86rem}.pagination-jump{width:100%;justify-content:center}.pagination-jump select{height:38px}.product-grid{align-items:stretch}.product-card{min-width:0}.product-card .product-description{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.quick-model-picker{scroll-behavior:smooth}}
@media (prefers-reduced-motion:reduce){.pagination-number,.pagination-arrow{transition:none}.quick-model-picker{scroll-behavior:auto}}

/* === V31: filter reliability, pricing clarity, request presets === */
.request-preset-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:18px}
.request-preset-row button{appearance:none;border:1px solid color-mix(in srgb,var(--line,#335044) 85%,transparent);background:color-mix(in srgb,var(--surface,#102219) 86%,transparent);color:inherit;border-radius:16px;padding:13px 14px;text-align:left;display:flex;align-items:center;justify-content:space-between;gap:12px;cursor:pointer;transition:transform .2s ease,border-color .2s ease,background .2s ease}
.request-preset-row button:hover,.request-preset-row button:focus-visible{transform:translateY(-2px);border-color:var(--accent,#c9ff55);background:color-mix(in srgb,var(--accent,#c9ff55) 9%,var(--surface,#102219));outline:none}
.request-preset-row strong{font-size:.76rem;letter-spacing:.08em}
.request-preset-row span{font-size:.75rem;color:var(--accent,#c9ff55);white-space:nowrap}
.brand-choice.is-eco .brand-choice-logo{font-size:.78rem;letter-spacing:.08em}
.brand-choice.is-eco .brand-choice-bottom strong{color:var(--accent,#c9ff55)}
.price-on-request{font-size:.76rem!important;line-height:1.2;white-space:normal;text-align:right;max-width:150px;display:inline-block}
.quick-model-card-media>span{max-width:80%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.color-whatsapp-note{margin:8px 0 0;font-size:.76rem;line-height:1.5;color:var(--muted,#9fb0a7)}
.color-whatsapp-note strong{color:var(--accent,#c9ff55);font-weight:700}
.collection-toolbar{scroll-margin-top:110px}
#collection-catalogue{scroll-margin-top:96px}
@media(max-width:780px){
  .request-preset-row{grid-template-columns:1fr}
  .request-preset-row button{min-height:54px}
  .price-on-request{font-size:.68rem!important;max-width:112px}
  .product-card .product-kicker{align-items:flex-start;gap:8px}
  .collection-filter-panel .search-tools{gap:9px}
  .catalogue-pagination{padding-bottom:max(14px,env(safe-area-inset-bottom))}
}
