: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; }

.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; }

.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%); } }

.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; }

.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-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-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-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-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; }

.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; }

.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; }
}

.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"; }

.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; }
}

.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); } }

.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; }
}

.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[data-brand-choice="LEMFNNEN ÉDITION"] .brand-choice-logo,
.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;
}

:root { --image-fit-bg: linear-gradient(145deg,#f7f5ed,#e8ece4); }
html[data-theme="dark"] { --image-fit-bg: linear-gradient(145deg,#1d2b23,#111b16); }

.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-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-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); }

.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); } }

.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; }
}

.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; }

.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-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); }

.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); }

.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; }
}

.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; }
}

.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; }

.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; }
}

.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; }
}

:root{
  --paper:#f4f1e9;
  --paper-deep:#e8e3d7;
  --surface:#fbfaf6;
  --surface-2:#f0ede4;
  --surface-3:#e4e8e4;
  --ink:#090a0d;
  --muted:#646760;
  --soft-muted:#969990;
  --green:#090a0d;
  --green-2:#306cff;
  --green-3:#78a0ff;
  --acid:#d9ff3f;
  --acid-2:#efffb0;
  --cyan:#90ecff;
  --danger:#c8434d;
  --line:rgba(9,10,13,.13);
  --line-strong:rgba(9,10,13,.28);
  --shadow-sm:0 12px 32px rgba(9,10,13,.07);
  --shadow-md:0 28px 80px rgba(9,10,13,.13);
  --shadow-lg:0 50px 130px rgba(0,0,0,.25);
  --serif:"Bodoni 72","Didot","Iowan Old Style",Georgia,serif;
  --sans:"Arial Narrow","Avenir Next Condensed","Inter Tight",Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --container:1420px;
  --radius:28px;
}
html[data-theme="dark"]{
  --paper:#0b0c0f;
  --paper-deep:#111318;
  --surface:#15171c;
  --surface-2:#1c1f25;
  --surface-3:#242832;
  --ink:#f7f5ec;
  --muted:#b8bbb4;
  --soft-muted:#7f837d;
  --green:#f7f5ec;
  --green-2:#83a7ff;
  --green-3:#a9c0ff;
  --acid:#d9ff3f;
  --acid-2:#efffb0;
  --cyan:#90ecff;
  --line:rgba(247,245,236,.12);
  --line-strong:rgba(247,245,236,.26);
  --shadow-sm:0 14px 40px rgba(0,0,0,.22);
  --shadow-md:0 30px 90px rgba(0,0,0,.36);
  --shadow-lg:0 55px 150px rgba(0,0,0,.58);
}

html{scroll-padding-top:112px}
body{overflow-x:hidden;background:var(--paper);color:var(--ink);font-family:var(--sans);letter-spacing:-.01em}
body::before{display:none}
body::after{position:fixed;z-index:-10;inset:0;content:"";pointer-events:none;background-image:linear-gradient(rgba(9,10,13,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(9,10,13,.025) 1px,transparent 1px);background-size:72px 72px}
html[data-theme="dark"] body::after{background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px)}
::selection{background:var(--acid);color:#090a0d}
.container{width:min(100% - 48px,var(--container))}
.section{padding-block:128px}
.section-tight{padding-block:76px}
.eyebrow,.lab-section-code,.lab-page-index{display:inline-flex;align-items:center;gap:12px;color:var(--green-2);font-family:var(--sans);font-size:9px;font-weight:900;letter-spacing:.22em;text-transform:uppercase}
.eyebrow::before,.lab-section-code::before{width:28px;height:1px;background:currentColor;content:""}
.button{min-height:54px;padding:14px 22px;border-radius:999px;font-family:var(--sans);font-size:10px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.button b{font-size:14px}
.button-primary{background:var(--acid);color:#090a0d;box-shadow:none}
.button-primary:hover{background:#fff;color:#090a0d;transform:translateY(-2px)}
.button-outline{border:1px solid currentColor;background:transparent;color:inherit}
.button-outline:hover{background:var(--ink);color:var(--paper)}
.button-accent{background:var(--acid);color:#090a0d}
.button-light{background:#fff;color:#090a0d}

.lab-announcement{position:relative;z-index:120;background:var(--acid);color:#090a0d;border:0}
.lab-announcement .announcement-inner{min-height:34px;font-size:8px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}
.lab-announcement .announcement-inner p,.lab-announcement .announcement-inner div{gap:22px}
.lab-announcement .announcement-inner div span,.lab-announcement .announcement-inner div a{color:#090a0d}
.lab-header{position:sticky;z-index:110;top:0;border:0;background:rgba(9,10,13,.94);box-shadow:none;backdrop-filter:blur(18px)}
.lab-nav-shell{min-height:82px;gap:26px}
.lab-brand{gap:12px;color:#fff}
.lab-monogram{width:46px;height:46px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:transparent;color:#fff}
.lab-monogram b{font-family:var(--sans);font-size:12px;font-weight:950;letter-spacing:-.05em}
.lab-brand .brand-copy strong{color:#fff;font-family:var(--sans);font-size:18px;font-weight:950;letter-spacing:.06em}
.lab-brand .brand-copy small{color:rgba(255,255,255,.52);font-size:6px;font-weight:800;letter-spacing:.25em}
.lab-desktop-nav{align-self:stretch;gap:3px;padding:8px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(255,255,255,.04)}
.lab-desktop-nav a{position:relative;min-height:42px;display:flex;align-items:center;padding:0 18px;border:0;border-radius:999px;color:rgba(255,255,255,.66);font-size:9px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.lab-desktop-nav a i{display:none}
.lab-desktop-nav a:hover,.lab-desktop-nav a.active{background:#fff;color:#090a0d}
.lab-nav-actions{gap:7px}
.lab-nav-actions .language-trigger,.lab-nav-actions .nav-icon,.lab-cart-trigger,.lab-menu-trigger{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.04);color:#fff}
.lab-nav-actions .language-trigger:hover,.lab-nav-actions .nav-icon:hover,.lab-cart-trigger:hover,.lab-menu-trigger:hover{border-color:var(--acid);background:rgba(217,255,63,.12)}
.lab-cart-trigger{border-radius:999px}
.lab-cart-trigger b{background:var(--acid);color:#090a0d}
.lab-menu-trigger{border-radius:50%}
.lab-menu-trigger i{background:#fff}
.language-menu{border-color:rgba(255,255,255,.16);background:#111318;color:#fff}
.language-menu button{color:#fff}
.language-menu button:hover{background:rgba(255,255,255,.08)}
.lab-mobile-menu{top:82px;background:#090a0d;color:#fff}
.lab-mobile-menu .mobile-menu-inner{padding-block:42px}
.lab-mobile-label{margin-bottom:18px;color:var(--acid);font-size:8px;font-weight:900;letter-spacing:.2em}
.lab-mobile-menu a{border-bottom-color:rgba(255,255,255,.12);color:#fff;font-family:var(--serif);font-size:42px}
.lab-mobile-menu a i{display:none}

.lab-hero{position:relative;min-height:calc(100svh - 34px);overflow:hidden;background:#090a0d;color:#fff}
.lab-hero-grid{position:absolute;inset:0;opacity:.17;background-image:linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);background-size:8.333vw 8.333vw;mask-image:linear-gradient(to bottom,#000,transparent 86%)}
.lab-hero::before{position:absolute;right:-14vw;top:-26vw;width:64vw;height:64vw;border:1px solid rgba(217,255,63,.19);border-radius:50%;content:""}
.lab-hero::after{position:absolute;right:-2vw;top:-14vw;width:40vw;height:40vw;border:1px solid rgba(144,236,255,.12);border-radius:50%;content:""}
.lab-hero-shell{position:relative;z-index:2;min-height:720px;display:grid;grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr);align-items:center;gap:6vw;padding-block:88px 120px}
.lab-hero-copy{max-width:760px}
.lab-hero-kicker{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:40px;padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.16);color:rgba(255,255,255,.6);font-size:8px;font-weight:900;letter-spacing:.2em}
.lab-hero-kicker b{color:var(--acid)}
.lab-hero h1{margin:0;color:#fff;font-family:var(--sans);font-size:clamp(70px,7.7vw,148px);font-weight:900;letter-spacing:-.075em;line-height:.78;text-transform:uppercase}
.lab-hero h1 span{color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.65)}
.lab-hero-copy>p{max-width:630px;margin:36px 0 0;color:rgba(255,255,255,.64);font-size:16px;line-height:1.65}
.lab-actions{margin-top:35px}
.lab-actions .button-outline{border-color:rgba(255,255,255,.25);color:#fff}
.lab-actions .button-outline:hover{background:#fff;color:#090a0d}
.lab-hero-meta{display:grid;grid-template-columns:repeat(3,1fr);margin-top:54px;border-block:1px solid rgba(255,255,255,.14)}
.lab-hero-meta>div{min-height:88px;display:flex;align-items:center;gap:14px;padding:18px;border-right:1px solid rgba(255,255,255,.14)}
.lab-hero-meta>div:first-child{padding-left:0}
.lab-hero-meta>div:last-child{border-right:0}
.lab-hero-meta strong{color:var(--acid);font-size:28px}
.lab-hero-meta span{color:rgba(255,255,255,.5);font-size:8px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;line-height:1.5}
.lab-hero-stage{position:relative;min-height:640px}
.lab-stage-main{position:absolute;inset:20px 80px 42px 26px;overflow:hidden;margin:0;border-radius:220px 220px 24px 24px;background:#e9ece9;transform:rotate(2deg)}
.lab-stage-main img{width:100%;height:100%;object-fit:cover;transform:scale(1.04)}
.lab-stage-main::after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 52%,rgba(0,0,0,.74));content:""}
.lab-stage-main figcaption{position:absolute;z-index:2;right:34px;bottom:28px;left:34px;display:grid;gap:3px;color:#fff}
.lab-stage-main figcaption span{color:var(--acid);font-size:8px;font-weight:900;letter-spacing:.18em}
.lab-stage-main figcaption strong{font-family:var(--serif);font-size:30px;font-weight:400;font-style:italic}
.lab-stage-main figcaption small{color:rgba(255,255,255,.62);font-size:9px;letter-spacing:.1em}
.lab-stage-side{position:absolute;z-index:3;right:0;bottom:0;width:230px;height:280px;overflow:hidden;margin:0;border:10px solid #090a0d;border-radius:28px;background:#fff;transform:rotate(-5deg);box-shadow:0 30px 60px rgba(0,0,0,.35)}
.lab-stage-side img{width:100%;height:100%;object-fit:cover}
.lab-lens-disc{position:absolute;z-index:5;right:16px;top:2px;width:150px;height:150px;display:grid;place-content:center;border:1px solid rgba(255,255,255,.28);border-radius:50%;background:rgba(9,10,13,.68);text-align:center;backdrop-filter:blur(12px);animation:labFloat 5s ease-in-out infinite}
.lab-lens-disc::before,.lab-lens-disc::after{position:absolute;border:1px solid rgba(217,255,63,.34);border-radius:50%;content:""}
.lab-lens-disc::before{inset:12px}.lab-lens-disc::after{inset:27px}
.lab-lens-disc span{position:relative;z-index:1;color:var(--acid);font-size:32px;font-weight:950;letter-spacing:-.08em}
.lab-lens-disc small{position:relative;z-index:1;margin-top:4px;color:#fff;font-size:6px;font-weight:900;letter-spacing:.16em;line-height:1.4}
.lab-stage-note{position:absolute;z-index:5;left:0;bottom:80px;display:grid;gap:7px;padding:18px 20px;border:1px solid rgba(255,255,255,.17);border-radius:18px;background:rgba(9,10,13,.77);backdrop-filter:blur(14px)}
.lab-stage-note i{width:34px;height:3px;margin-bottom:4px;background:var(--acid)}
.lab-stage-note span{color:rgba(255,255,255,.68);font-size:7px;font-weight:900;letter-spacing:.2em}
.lab-stage-index{position:absolute;left:-15px;top:10px;color:rgba(255,255,255,.05);font-size:210px;font-weight:950;letter-spacing:-.08em}
.lab-hero-bottom{position:absolute;z-index:3;right:0;bottom:0;left:0;display:grid;grid-template-columns:220px 1fr;align-items:center;border-top:1px solid rgba(255,255,255,.13);background:rgba(9,10,13,.84)}
.lab-hero-bottom>span{padding-left:38px;color:rgba(255,255,255,.4);font-size:7px;font-weight:900;letter-spacing:.18em}
.lab-marquee{overflow:hidden;border-left:1px solid rgba(255,255,255,.13)}
.lab-marquee div{width:max-content;padding:18px 0;color:var(--acid);font-size:9px;font-weight:900;letter-spacing:.18em;animation:labMarquee 24s linear infinite}
@keyframes labMarquee{to{transform:translateX(-50%)}}
@keyframes labFloat{50%{transform:translateY(-10px) rotate(3deg)}}

.lab-intro-grid,.lab-section-heading,.lab-dark-heading{display:grid;grid-template-columns:170px minmax(0,1fr) minmax(280px,.46fr);gap:40px;align-items:end;margin-bottom:60px}
.lab-section-heading,.lab-dark-heading{grid-template-columns:minmax(0,1fr) minmax(280px,.42fr)}
.lab-intro-title h2,.lab-section-heading h2,.lab-dark-heading h2,.lab-method-head h2,.lab-catalogue-head h2,.lab-footer-title h2,.lab-contact-info>h2,.lab-process-title h2{margin:12px 0 0;font-family:var(--sans);font-size:clamp(54px,6vw,100px);font-weight:900;letter-spacing:-.065em;line-height:.88;text-transform:uppercase}
.lab-intro-title h2 em,.lab-section-heading h2 em,.lab-dark-heading h2 em,.lab-method-head h2 em,.lab-catalogue-head h2 em,.lab-footer-title h2 em,.lab-contact-info>h2 em,.lab-process-title h2 em{font-family:var(--serif);font-weight:400;text-transform:none}
.lab-intro-copy,.lab-section-heading>p,.lab-dark-heading>p{margin:0;color:var(--muted);font-size:14px;line-height:1.7}

.lab-intro{background:var(--paper)}
.lab-universe-list{display:grid;border-top:1px solid var(--line)}
.lab-universe-card{position:relative;display:grid;grid-template-columns:170px minmax(240px,.65fr) 1fr;align-items:center;gap:38px;min-height:210px;padding:26px 0;border-bottom:1px solid var(--line);color:var(--ink);transition:.3s ease}
.lab-universe-card::after{position:absolute;right:0;width:0;height:100%;background:var(--acid);content:"";transition:width .35s ease;z-index:-1}
.lab-universe-card:hover{padding-inline:26px;color:#090a0d}
.lab-universe-card:hover::after{width:100%}
.lab-universe-media{position:relative;width:170px;height:150px;overflow:hidden;border-radius:80px}
.lab-universe-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.lab-universe-card:hover img{transform:scale(1.08)}
.lab-universe-media span{position:absolute;right:10px;bottom:10px;width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:#090a0d;color:#fff;font-size:8px;font-weight:900}
.lab-universe-copy{display:grid;grid-template-columns:minmax(150px,.7fr) minmax(180px,1fr) auto;align-items:center;gap:30px}
.lab-universe-copy small{font-size:8px;font-weight:900;letter-spacing:.17em}
.lab-universe-copy h3{margin:0;font-family:var(--sans);font-size:clamp(44px,5vw,82px);font-weight:950;letter-spacing:-.065em;text-transform:uppercase}
.lab-universe-copy p{margin:0;color:var(--muted);font-size:12px;line-height:1.55}
.lab-universe-card:hover p{color:rgba(9,10,13,.66)}
.lab-universe-copy b{font-size:8px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}

.lab-dark-section{position:relative;overflow:hidden;background:#0b0c0f;color:#fff}
.lab-dark-section::before{position:absolute;inset:0;opacity:.13;background-image:linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);background-size:80px 80px;content:""}
.lab-dark-section .container{position:relative;z-index:1}
.lab-dark-heading .lab-section-code{color:var(--acid)}
.lab-dark-heading h2{color:#fff}
.lab-dark-heading>p{color:rgba(255,255,255,.55)}
.lab-editorial-grid{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:360px 360px;gap:20px}
.lab-editorial{position:relative;overflow:hidden;border-radius:28px;color:#fff}
.lab-editorial-a{grid-row:1/3}
.lab-editorial img{width:100%;height:100%;object-fit:cover;filter:saturate(.85);transition:transform .8s cubic-bezier(.2,.7,.2,1)}
.lab-editorial::after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.82));content:""}
.lab-editorial:hover img{transform:scale(1.05)}
.lab-editorial>span{position:absolute;z-index:2;right:28px;bottom:26px;left:28px;display:grid;gap:6px}
.lab-editorial small{color:var(--acid);font-size:8px;font-weight:900;letter-spacing:.18em}
.lab-editorial strong{max-width:600px;font-family:var(--serif);font-size:clamp(27px,3vw,46px);font-weight:400;font-style:italic;line-height:1.02}
.lab-editorial em{margin-top:10px;color:rgba(255,255,255,.68);font-size:8px;font-weight:900;font-style:normal;letter-spacing:.14em;text-transform:uppercase}

.lab-runway-section{background:var(--surface)}
.model-slider-shell{overflow:hidden;border:1px solid var(--line);border-radius:34px;background:var(--paper);box-shadow:none}
.model-slide{grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);min-height:640px}
.model-slide-media{background:var(--surface-3)}
.model-slide-media img{min-height:640px;object-fit:cover;padding:0}
.model-slide-media::after{background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.72))}
.model-slide-number,.model-slide-badge{border-radius:999px;background:#090a0d;color:#fff}
.model-slide-badge{color:var(--acid)}
.model-slide-copy{padding:58px}
.model-slide-copy h3{font-family:var(--sans);font-size:clamp(54px,5vw,86px);font-weight:950;letter-spacing:-.07em;text-transform:uppercase}
.model-slide-copy>p{font-size:13px;line-height:1.65}
.model-slide-meta{border-color:var(--line)}
.model-slider-controls{min-height:84px;background:var(--ink);color:var(--paper);border:0}
.model-slider-arrows button{border-color:rgba(255,255,255,.2);background:transparent;color:var(--paper)}
.model-slider-dots button{background:rgba(255,255,255,.25)}
.model-slider-dots button.active{background:var(--acid)}
.model-slider-progress{background:rgba(255,255,255,.18)}
.model-slider-progress b{background:var(--acid)}

.lab-products-section{background:var(--paper)}
.lab-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.lab-product-card{overflow:visible;border:0;border-radius:0;background:transparent;box-shadow:none;transform:none}
.lab-product-card::before{display:none}
.lab-product-card:hover{transform:none;box-shadow:none}
.lab-product-media{position:relative;aspect-ratio:1/.84;overflow:hidden;border-radius:24px;background:#e7ebe5}
html[data-theme="dark"] .lab-product-media{background:#232830}
.lab-product-media img{width:100%;height:100%;padding:0;object-fit:cover;transition:transform .6s cubic-bezier(.2,.7,.2,1)}
.lab-product-card:hover .lab-product-media img{transform:scale(1.045)}
.lab-product-topline{position:absolute;z-index:3;top:17px;right:17px;left:17px;display:flex;align-items:center;justify-content:space-between;pointer-events:none}
.lab-product-topline span,.lab-product-topline small{padding:8px 10px;border-radius:999px;background:rgba(9,10,13,.85);color:#fff;font-size:7px;font-weight:900;letter-spacing:.11em;text-transform:uppercase;backdrop-filter:blur(10px)}
.lab-product-topline span{color:var(--acid)}
.lab-card-open{position:absolute;z-index:4;right:17px;bottom:17px;width:52px;height:52px;display:grid;place-items:center;border-radius:50%;background:var(--acid);color:#090a0d;font-size:19px;transition:.25s ease}
.lab-card-open:hover{transform:rotate(45deg) scale(1.06);background:#fff}
.lab-product-media .single-item-badge{display:none}
.lab-product-body{padding:20px 4px 0}
.lab-product-brand{display:flex;align-items:center;gap:10px;color:var(--muted);font-size:8px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}
.lab-product-brand i{height:1px;flex:1;background:var(--line)}
.lab-product-brand strong{color:var(--ink);font-size:12px;letter-spacing:0}
.lab-product-card h3{margin:10px 0 4px;font-family:var(--sans);font-size:clamp(30px,2.4vw,42px);font-weight:950;letter-spacing:-.055em;line-height:.96;text-transform:uppercase}
.lab-product-card .product-reference{color:var(--muted);font-size:8px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.lab-product-card .product-description{display:-webkit-box;overflow:hidden;margin-top:12px;color:var(--muted);font-size:11px;line-height:1.55;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.lab-product-footer{margin-top:18px;padding-top:14px;border-top:1px solid var(--line)}
.lab-product-footer .product-availability{margin-bottom:12px}
.stock-pill{border-radius:999px;background:transparent;border:1px solid var(--line);color:var(--muted)}
.stock-pill i{background:var(--acid);box-shadow:none}
.product-action-row{gap:7px}
.product-choose,.product-quick{min-height:48px;border-radius:999px}
.product-choose{background:var(--ink);color:var(--paper)}
.product-choose:hover{background:var(--green-2);color:#fff}
.product-quick{border:1px solid var(--line);background:transparent;color:var(--ink)}
.lab-collection-link{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-top:64px;padding:26px 0;border-block:1px solid var(--line)}
.lab-collection-link span{color:var(--muted);font-size:12px}
.lab-collection-link a{display:flex;align-items:center;gap:18px;color:var(--ink);font-size:15px;font-weight:900;text-transform:uppercase}
.lab-collection-link b{width:46px;height:46px;display:grid;place-items:center;border-radius:50%;background:var(--acid);color:#090a0d}

.lab-method-section{background:var(--cyan);color:#090a0d}
.lab-method-grid{display:grid;grid-template-columns:minmax(320px,.8fr) minmax(460px,1.2fr);gap:8vw}
.lab-method-head{position:sticky;top:145px;align-self:start}
.lab-method-head .lab-section-code{color:#090a0d}
.lab-method-head h2{font-size:clamp(54px,5.4vw,92px)}
.lab-method-head p{max-width:520px;color:rgba(9,10,13,.65);font-size:13px;line-height:1.7}
.lab-method-steps{border-top:1px solid rgba(9,10,13,.24)}
.lab-method-steps article{display:grid;grid-template-columns:62px 1fr 52px;align-items:center;gap:22px;min-height:155px;border-bottom:1px solid rgba(9,10,13,.24)}
.lab-method-steps article>span{font-size:9px;font-weight:900;letter-spacing:.15em}
.lab-method-steps h3{margin:0;font-family:var(--sans);font-size:clamp(35px,3.5vw,58px);font-weight:950;letter-spacing:-.055em;text-transform:uppercase}
.lab-method-steps p{margin:7px 0 0;color:rgba(9,10,13,.62);font-size:11px}
.lab-method-steps article>b{width:46px;height:46px;display:grid;place-items:center;border:1px solid rgba(9,10,13,.32);border-radius:50%;transition:.25s ease}
.lab-method-steps article:hover>b{background:#090a0d;color:#fff;transform:rotate(45deg)}

.lab-request-wrap{background:var(--paper)}
.lab-request-panel{position:relative;overflow:hidden;display:grid;grid-template-columns:minmax(300px,.8fr) minmax(420px,1.2fr);gap:7vw;padding:70px;border:0;border-radius:34px;background:#090a0d;color:#fff;box-shadow:none}
.lab-request-panel::before{position:absolute;right:-110px;top:-140px;width:440px;height:440px;border:1px solid rgba(217,255,63,.28);border-radius:50%;content:""}
.lab-request-panel::after{position:absolute;right:10px;top:-20px;width:230px;height:230px;border:1px solid rgba(144,236,255,.24);border-radius:50%;content:""}
.lab-request-panel>div,.lab-request-panel form{position:relative;z-index:1}
.lab-request-panel .eyebrow{color:var(--acid)}
.lab-request-panel h2{margin:18px 0 12px;color:#fff;font-family:var(--sans);font-size:clamp(42px,4vw,70px);font-weight:950;letter-spacing:-.055em;line-height:.9;text-transform:uppercase}
.lab-request-panel p{color:rgba(255,255,255,.58)}
.lab-request-panel .missing-model-form{display:grid;gap:12px}
.lab-request-panel label span{color:rgba(255,255,255,.56)}
.lab-request-panel input{min-height:54px;border-color:rgba(255,255,255,.18);border-radius:14px;background:rgba(255,255,255,.06);color:#fff}
.lab-request-panel input::placeholder{color:rgba(255,255,255,.35)}

.lab-inner-hero{position:relative;overflow:hidden;background:#090a0d;color:#fff}
.lab-inner-hero::before{position:absolute;inset:0;opacity:.16;background-image:linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);background-size:90px 90px;content:""}
.lab-inner-shell{position:relative;z-index:1;min-height:690px;display:grid;grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr);align-items:center;gap:7vw;padding-block:85px}
.lab-inner-copy{max-width:760px}
.lab-page-index{color:var(--acid)}
.lab-inner-copy h1{margin:30px 0 24px;color:#fff;font-family:var(--sans);font-size:clamp(68px,7vw,125px);font-weight:950;letter-spacing:-.075em;line-height:.82;text-transform:uppercase}
.lab-inner-copy h1 em{font-family:var(--serif);font-weight:400;text-transform:none}
.lab-inner-copy>p{max-width:620px;color:rgba(255,255,255,.58);font-size:15px;line-height:1.7}
.lab-inner-copy .inner-hero-actions{margin-top:34px}
.lab-inner-copy .button-outline{border-color:rgba(255,255,255,.25);color:#fff}
.lab-inner-stage{position:relative;min-height:560px}
.lab-inner-stage figure{position:absolute;inset:10px 55px 18px 5px;overflow:hidden;margin:0;border-radius:26px;background:#e9ece9;transform:rotate(2.5deg)}
.lab-inner-stage figure img{width:100%;height:100%;object-fit:cover}
.lab-inner-stage::after{position:absolute;right:0;bottom:5px;width:180px;height:180px;border-radius:50%;background:var(--acid);content:""}
.lab-inner-stamp{position:absolute;z-index:3;right:38px;bottom:55px;width:118px;height:118px;display:grid;place-items:center;border:1px solid rgba(9,10,13,.2);border-radius:50%;color:#090a0d;font-size:8px;font-weight:950;letter-spacing:.18em;text-align:center;line-height:1.5;animation:labFloat 5s ease-in-out infinite}
.lab-inner-caption{position:absolute;z-index:2;left:-28px;bottom:42px;min-width:340px;padding:20px 22px;border:1px solid rgba(255,255,255,.16);border-radius:18px;background:rgba(9,10,13,.82);backdrop-filter:blur(14px)}
.lab-inner-caption small{display:block;color:var(--acid);font-size:7px;font-weight:900;letter-spacing:.16em}
.lab-inner-caption strong{display:block;margin-top:6px;color:#fff;font-family:var(--serif);font-size:22px;font-weight:400;font-style:italic}

.lab-category-switcher{background:var(--paper)}
.lab-category-rail{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.lab-category-pill{position:relative;min-height:156px;display:grid;grid-template-columns:42px 120px 1fr 48px;align-items:center;gap:18px;padding:18px;border:1px solid var(--line);border-radius:24px;background:var(--surface);color:var(--ink);transition:.3s ease}
.lab-category-pill:hover{border-color:transparent;background:var(--acid);color:#090a0d;transform:translateY(-4px)}
.lab-category-pill>span{font-size:9px;font-weight:900}
.lab-category-pill img{width:120px;height:120px;object-fit:cover;border-radius:50%}
.lab-category-pill div{display:grid;gap:6px}
.lab-category-pill small{font-size:8px;font-weight:900;letter-spacing:.16em}
.lab-category-pill strong{font-family:var(--sans);font-size:27px;font-weight:950;letter-spacing:-.04em;text-transform:uppercase}
.lab-category-pill>b{width:44px;height:44px;display:grid;place-items:center;border:1px solid currentColor;border-radius:50%;transition:.25s ease}
.lab-category-pill:hover>b{transform:rotate(45deg);background:#090a0d;color:#fff}
.lab-brand-section{background:var(--surface)}
.lab-brand-directory{grid-template-columns:repeat(6,1fr);gap:10px;background:transparent}
.lab-brand-directory .brand-choice{min-height:150px;border:1px solid var(--line);border-radius:22px;background:var(--paper)}
.lab-brand-directory .brand-choice:hover,.lab-brand-directory .brand-choice.active{border-color:#090a0d;background:#090a0d;color:#fff;transform:translateY(-4px)}
.lab-brand-directory .brand-choice img{max-width:92px;max-height:38px;filter:grayscale(1)}
.lab-brand-directory .brand-choice:hover img,.lab-brand-directory .brand-choice.active img{filter:grayscale(1) invert(1)}
.lab-quick-header{margin-top:60px;border-top:1px solid var(--line);border-bottom:0}
.lab-quick-header h3{font-family:var(--sans);font-size:42px;font-weight:950;letter-spacing:-.05em;text-transform:uppercase}
.quick-model-controls button{border-radius:50%;background:var(--ink);color:var(--paper)}
.lab-quick-picker{gap:12px}
.quick-model-card{border:0;border-radius:20px;background:var(--paper);box-shadow:none}
.quick-model-card-media{border-radius:20px 20px 0 0}
.quick-model-card-copy strong{font-family:var(--sans);font-weight:950;letter-spacing:-.04em;text-transform:uppercase}
.lab-catalogue{background:var(--paper)}
.lab-catalogue-head{margin-bottom:50px}
.lab-catalogue-head h2{font-size:clamp(55px,6vw,100px)}
.collection-toolbar{top:96px;gap:12px;margin-bottom:30px;padding:12px;border:1px solid var(--line);border-radius:22px;background:rgba(244,241,233,.92);box-shadow:0 15px 45px rgba(0,0,0,.08);backdrop-filter:blur(18px)}
html[data-theme="dark"] .collection-toolbar{background:rgba(11,12,15,.92)}
.collection-filter-panel{gap:10px}
.filter-tabs{gap:6px}
.filter-tabs button{border-radius:999px}
.filter-tabs button.active{background:var(--ink);color:var(--paper)}
.field-shell{border-radius:999px;background:var(--surface)}
.results-line{padding-block:12px;border-bottom:1px solid var(--line)}

.lab-services-section{background:var(--paper)}
.lab-service-bento{display:grid;grid-template-columns:1.15fr .85fr .85fr;grid-auto-rows:minmax(260px,auto);gap:14px}
.lab-service-bento .service-card{position:relative;min-height:0;overflow:hidden;padding:28px;border:1px solid var(--line);border-radius:26px;background:var(--surface);transition:.3s ease}
.lab-service-bento .service-card:hover{border-color:transparent;background:var(--acid);color:#090a0d;transform:translateY(-4px)}
.lab-service-bento .service-card>span{position:absolute;right:22px;top:22px;color:var(--muted);font-size:9px;font-weight:900;letter-spacing:.14em}
.lab-service-bento .service-icon{width:62px;height:62px;margin:auto 0 28px;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--green-2)}
.lab-service-bento .service-card:hover .service-icon{border-color:#090a0d;color:#090a0d}
.lab-service-bento .service-card h2{font-family:var(--sans);font-size:34px;font-weight:950;letter-spacing:-.045em;text-transform:uppercase}
.lab-service-bento .service-card p{color:var(--muted);line-height:1.65}
.lab-service-bento .service-card:hover p{color:rgba(9,10,13,.65)}
.lab-service-bento .service-card>small{margin-top:28px;font-size:7px;font-weight:900;letter-spacing:.16em}
.lab-service-feature{grid-row:span 2;background:#090a0d!important;color:#fff!important}
.lab-service-feature::before{position:absolute;right:-90px;top:-90px;width:300px;height:300px;border:1px solid rgba(217,255,63,.25);border-radius:50%;content:""}
.lab-service-feature .service-icon{border-color:rgba(255,255,255,.25)!important;color:var(--acid)!important}
.lab-service-feature p{color:rgba(255,255,255,.58)!important}
.lab-service-wide{grid-column:span 2;background:var(--cyan)!important;color:#090a0d!important}
.lab-service-wide p{color:rgba(9,10,13,.65)!important}
.lab-process-section{background:#090a0d;color:#fff}
.lab-process-wrap{display:grid;grid-template-columns:minmax(320px,.8fr) minmax(480px,1.2fr);gap:8vw}
.lab-process-title{align-self:start;position:sticky;top:145px}
.lab-process-title .lab-section-code{color:var(--acid)}
.lab-process-title h2{color:#fff;font-size:clamp(54px,5vw,88px)}
.lab-process-title p{color:rgba(255,255,255,.5)}
.lab-process-list{border-top:1px solid rgba(255,255,255,.18)}
.lab-process-list article{display:grid;grid-template-columns:70px 1fr;gap:20px;align-items:center;min-height:145px;border-bottom:1px solid rgba(255,255,255,.18)}
.lab-process-list article>span{color:var(--acid);font-size:9px;font-weight:900;letter-spacing:.16em}
.lab-process-list h3{margin:0;color:#fff;font-family:var(--sans);font-size:40px;font-weight:950;letter-spacing:-.04em;text-transform:uppercase}
.lab-process-list p{margin:6px 0 0;color:rgba(255,255,255,.5);font-size:11px}
.lab-cta-section{background:var(--paper)}
.lab-service-cta{border-radius:30px;background:var(--green-2);color:#fff}
.lab-service-cta h2{font-family:var(--sans);font-weight:950;letter-spacing:-.045em;text-transform:uppercase}

.lab-location-section{background:var(--paper)}
.lab-location-bento{display:grid;grid-template-columns:1fr 1.15fr;grid-template-rows:auto 230px;gap:14px}
.lab-location-card{grid-row:1/3;padding:52px;border:0;border-radius:28px;background:#090a0d;color:#fff}
.lab-location-card .lab-section-code{color:var(--acid)}
.lab-location-card h2{margin:26px 0 8px;color:#fff;font-family:var(--sans);font-size:clamp(48px,5vw,78px);font-weight:950;letter-spacing:-.055em;line-height:.92;text-transform:uppercase}
.lab-location-card .location-city{color:rgba(255,255,255,.5)}
.lab-location-card dl{margin-top:50px}
.lab-location-card dl div{border-top-color:rgba(255,255,255,.15)}
.lab-location-card dt{color:rgba(255,255,255,.45)}
.lab-location-card dd{color:#fff}
.lab-location-card .button-outline{border-color:rgba(255,255,255,.25);color:#fff}
.lab-location-card .config-note{color:rgba(255,255,255,.45)}
.lab-location-preview{position:relative;min-height:460px;overflow:hidden;border:0;border-radius:28px;background:var(--cyan)}
.lab-location-preview .location-preview-grid{opacity:.25;background-image:linear-gradient(rgba(9,10,13,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(9,10,13,.18) 1px,transparent 1px)}
.lab-location-preview .location-pin{width:110px;height:110px;border-radius:50%;background:#090a0d;color:var(--acid);font-family:var(--sans);font-size:22px;font-weight:950;transform:none}
.lab-location-preview small,.lab-location-preview strong,.lab-location-preview p{color:#090a0d}
.lab-location-preview strong{font-family:var(--sans);font-weight:950;font-style:normal;text-transform:uppercase}
.lab-visit-note{display:grid;align-content:end;padding:28px;border:1px solid var(--line);border-radius:24px;background:var(--surface)}
.lab-visit-note span{color:var(--green-2);font-size:9px;font-weight:900;letter-spacing:.16em}
.lab-visit-note h3{margin:28px 0 8px;font-family:var(--sans);font-size:30px;font-weight:950;letter-spacing:-.04em;text-transform:uppercase}
.lab-visit-note p{margin:0;color:var(--muted);font-size:11px;line-height:1.6}
.lab-visit-section{background:var(--surface)}
.lab-visit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.lab-visit-grid article{min-height:330px;display:flex;flex-direction:column;padding:30px;border:1px solid var(--line);border-radius:26px;background:var(--paper);transition:.3s ease}
.lab-visit-grid article:hover{background:var(--acid);color:#090a0d;transform:translateY(-4px)}
.lab-visit-grid span{align-self:flex-end;font-size:9px;font-weight:900}
.lab-visit-grid h3{margin:auto 0 12px;font-family:var(--sans);font-size:34px;font-weight:950;letter-spacing:-.045em;text-transform:uppercase}
.lab-visit-grid p{margin:0;color:var(--muted);font-size:11px;line-height:1.65}
.lab-visit-grid article:hover p{color:rgba(9,10,13,.62)}

.lab-contact-section{background:var(--paper)}
.lab-contact-layout{display:grid;grid-template-columns:minmax(360px,.85fr) minmax(500px,1.15fr);gap:7vw;align-items:start}
.lab-contact-info>h2{font-size:clamp(54px,5.2vw,88px)}
.lab-contact-info>p{max-width:540px;margin:22px 0 48px;color:var(--muted);font-size:13px;line-height:1.7}
.lab-contact-info article{display:grid;grid-template-columns:88px 1fr 50px;align-items:center;gap:18px;min-height:130px;border-top:1px solid var(--line)}
.lab-contact-info article:last-child{border-bottom:1px solid var(--line)}
.lab-contact-info article>small{font-size:7px;font-weight:900;letter-spacing:.16em}
.lab-contact-info article h3{margin:0;font-family:var(--sans);font-size:25px;font-weight:950;letter-spacing:-.04em;text-transform:uppercase}
.lab-contact-info article p{margin:6px 0 0;color:var(--muted);font-size:10px}
.lab-contact-info article>button,.lab-contact-info article>a{width:46px;height:46px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--ink);transition:.25s ease}
.lab-contact-info article:hover>button,.lab-contact-info article:hover>a{background:var(--acid);color:#090a0d;transform:rotate(45deg)}
.lab-contact-form{position:sticky;top:125px;padding:50px;border:0;border-radius:30px;background:#090a0d;color:#fff;box-shadow:none}
.lab-contact-form h2{color:#fff;font-family:var(--sans);font-size:clamp(44px,4vw,66px);font-weight:950;letter-spacing:-.05em;text-transform:uppercase}
.lab-contact-form>p,.lab-contact-form label span{color:rgba(255,255,255,.55)}
.lab-contact-form input,.lab-contact-form select,.lab-contact-form textarea{min-height:54px;border-color:rgba(255,255,255,.17);border-radius:14px;background:rgba(255,255,255,.06);color:#fff}
.lab-contact-form select option{color:#090a0d}
.lab-contact-form textarea{min-height:150px}
.lab-contact-form input::placeholder,.lab-contact-form textarea::placeholder{color:rgba(255,255,255,.35)}
.lab-contact-form .config-note{color:rgba(255,255,255,.42)}

.lab-footer{overflow:hidden;background:#090a0d;color:#fff}
.lab-footer-top{display:grid;grid-template-columns:1fr 210px;align-items:end;gap:60px;padding-block:105px 70px;border-bottom:1px solid rgba(255,255,255,.14)}
.lab-footer-title>span{color:var(--acid);font-size:8px;font-weight:900;letter-spacing:.18em}
.lab-footer-title h2{max-width:1000px;color:#fff;font-size:clamp(62px,7vw,120px)}
.lab-footer-circle{width:190px;height:190px;display:grid;place-content:center;justify-items:center;border:1px solid rgba(255,255,255,.23);border-radius:50%;color:#fff;text-align:center;transition:.3s ease}
.lab-footer-circle:hover{border-color:var(--acid);background:var(--acid);color:#090a0d;transform:rotate(-6deg)}
.lab-footer-circle svg{width:24px;height:24px}
.lab-footer-circle strong{margin-top:10px;font-size:8px;letter-spacing:.14em;line-height:1.5}
.lab-footer-circle b{margin-top:7px}
.lab-footer-main{padding-block:60px}
.lab-footer .brand-footer .lab-monogram{background:transparent;color:#fff}
.lab-footer .footer-brand p,.lab-footer .footer-column a,.lab-footer .footer-column span{color:rgba(255,255,255,.5)}
.lab-footer .footer-column strong{color:#fff}
.lab-footer .footer-column a:hover{color:var(--acid)}
.lab-footer .footer-bottom{border-top-color:rgba(255,255,255,.12);color:rgba(255,255,255,.35);font-size:7px;letter-spacing:.13em}
.lab-floating-wa{border-radius:999px;background:var(--acid);color:#090a0d;box-shadow:0 18px 45px rgba(0,0,0,.25)}

.modal-backdrop,.cart-backdrop{background:rgba(0,0,0,.8);backdrop-filter:blur(18px)}
.product-modal{overflow:hidden;border:0;border-radius:30px;background:var(--surface)}
.modal-visual{background:#e8ece8}
.modal-visual img{padding:0;border-radius:0;object-fit:cover;filter:none}
.modal-visual>span{border-radius:999px;background:#090a0d;color:var(--acid)}
.modal-close{border-radius:50%;background:var(--acid);color:#090a0d}
.modal-copy h2{font-family:var(--sans);font-weight:950;letter-spacing:-.055em;text-transform:uppercase}
.modal-heading small{color:var(--green-2)}
.modal-specs{border-color:var(--line)}
.modal-select-grid select,.custom-color-row input{border-radius:12px}
.cart-panel{background:var(--surface)}
.cart-head{background:#090a0d;color:#fff}
.cart-head h2{font-family:var(--sans);font-weight:950;text-transform:uppercase}
.cart-footer{background:var(--surface)}
.cart-checkout,.checkout-form .button{border-radius:999px}
.cart-item img{border-radius:16px}
.shipping-progress i b{background:var(--acid)}

.business-toast{border:1px solid rgba(255,255,255,.14);border-radius:18px;background:#090a0d;color:#fff}
.business-toast strong{color:var(--acid)}
.not-found{background:#090a0d;color:#fff}
.not-found h1{font-family:var(--sans);font-weight:950;text-transform:uppercase}
.not-found h1 em{color:var(--acid);font-family:var(--serif);font-weight:400;text-transform:none}
.not-found p{color:rgba(255,255,255,.55)}

html[dir="rtl"] .lab-hero h1,html[dir="rtl"] .lab-inner-copy h1,html[dir="rtl"] .lab-intro-title h2,html[dir="rtl"] .lab-section-heading h2{text-align:right}
html[dir="rtl"] .lab-universe-card::after{right:auto;left:0}
html[dir="rtl"] .lab-product-topline{direction:rtl}
html[dir="rtl"] .lab-inner-caption{left:auto;right:-28px}

@media(max-width:1180px){
  .lab-desktop-nav{display:none}
  .lab-menu-trigger{display:grid}
  .lab-hero-shell,.lab-inner-shell{grid-template-columns:1fr;gap:55px}
  .lab-hero-copy,.lab-inner-copy{max-width:900px}
  .lab-hero-stage{width:min(100%,850px);margin-inline:auto}
  .lab-inner-stage{width:min(100%,820px);margin-inline:auto}
  .lab-intro-grid{grid-template-columns:130px 1fr}
  .lab-intro-copy{grid-column:2}
  .lab-universe-card{grid-template-columns:150px 1fr}
  .lab-universe-copy{grid-template-columns:1fr 1fr auto}
  .lab-service-bento{grid-template-columns:1fr 1fr}
  .lab-service-feature{grid-row:span 1}
  .lab-service-wide{grid-column:span 1}
  .lab-brand-directory{grid-template-columns:repeat(4,1fr)}
  .lab-product-grid{grid-template-columns:repeat(2,1fr)}
  .lab-location-bento{grid-template-columns:1fr 1fr}
  .lab-location-card{grid-row:auto;grid-column:1/3}
}

@media(max-width:820px){
  .container{width:min(100% - 30px,var(--container))}
  .section{padding-block:88px}
  .lab-announcement .announcement-inner{justify-content:center;text-align:center}
  .lab-announcement .announcement-inner div,.lab-announcement .announcement-inner p span{display:none}
  .lab-nav-shell{min-height:72px}
  .lab-monogram{width:40px;height:40px}
  .lab-brand .brand-copy strong{font-size:15px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .nav-icon,.lab-cart-trigger,.lab-menu-trigger{width:40px;height:40px;min-height:40px;padding:0;justify-content:center}
  .lab-cart-trigger>span{display:none}
  .lab-cart-trigger b{position:absolute;right:-4px;top:-4px}
  .lab-hero{min-height:auto}
  .lab-hero-shell{min-height:0;padding-block:68px 120px}
  .lab-hero-kicker{margin-bottom:28px}
  .lab-hero h1{font-size:clamp(58px,18vw,92px)}
  .lab-hero-copy>p{font-size:14px}
  .lab-actions{display:grid}
  .lab-actions .button{width:100%}
  .lab-hero-meta{grid-template-columns:1fr 1fr}
  .lab-hero-meta>div:nth-child(2){border-right:0}
  .lab-hero-meta>div:last-child{grid-column:1/3;border-top:1px solid rgba(255,255,255,.14)}
  .lab-hero-stage{min-height:520px}
  .lab-stage-main{inset:20px 24px 40px 10px;border-radius:180px 180px 22px 22px}
  .lab-stage-side{right:-5px;width:155px;height:205px;border-width:7px}
  .lab-lens-disc{right:0;width:110px;height:110px}
  .lab-stage-note{left:0;bottom:55px;padding:14px 15px}
  .lab-stage-index{font-size:130px}
  .lab-hero-bottom{grid-template-columns:1fr}
  .lab-hero-bottom>span{display:none}
  .lab-marquee{border-left:0}
  .lab-intro-grid,.lab-section-heading,.lab-dark-heading{grid-template-columns:1fr;gap:18px;margin-bottom:40px}
  .lab-intro-copy{grid-column:auto}
  .lab-intro-title h2,.lab-section-heading h2,.lab-dark-heading h2,.lab-method-head h2,.lab-catalogue-head h2,.lab-footer-title h2,.lab-contact-info>h2,.lab-process-title h2{font-size:clamp(45px,13vw,70px)}
  .lab-universe-card{grid-template-columns:110px 1fr;gap:18px;min-height:160px}
  .lab-universe-media{width:110px;height:115px}
  .lab-universe-copy{grid-template-columns:1fr auto;gap:8px 16px}
  .lab-universe-copy h3{font-size:38px}
  .lab-universe-copy p{grid-column:1/3}
  .lab-universe-copy b{display:none}
  .lab-editorial-grid{grid-template-columns:1fr;grid-template-rows:500px 320px 320px}
  .lab-editorial-a{grid-row:auto}
  .model-slide{grid-template-columns:1fr;min-height:0}
  .model-slide-media img{min-height:430px}
  .model-slide-copy{padding:34px 24px}
  .model-slide-copy h3{font-size:50px}
  .model-slider-controls{grid-template-columns:auto 1fr}
  .model-slider-progress{display:none}
  .lab-product-grid{grid-template-columns:1fr}
  .lab-product-media{aspect-ratio:1/.82}
  .lab-product-card h3{font-size:39px}
  .lab-method-grid,.lab-process-wrap,.lab-contact-layout{grid-template-columns:1fr;gap:55px}
  .lab-method-head,.lab-process-title,.lab-contact-form{position:static}
  .lab-method-steps article{min-height:130px;grid-template-columns:45px 1fr 42px}
  .lab-method-steps h3{font-size:35px}
  .lab-request-panel{grid-template-columns:1fr;gap:34px;padding:38px 22px}
  .lab-inner-shell{min-height:0;padding-block:68px}
  .lab-inner-copy h1{font-size:clamp(58px,17vw,90px)}
  .lab-inner-stage{min-height:470px}
  .lab-inner-stage figure{inset:10px 18px 25px 0}
  .lab-inner-stamp{right:5px;bottom:38px;width:95px;height:95px}
  .lab-inner-caption{left:0;bottom:30px;min-width:0;width:calc(100% - 75px)}
  .lab-category-rail{grid-template-columns:1fr}
  .lab-category-pill{grid-template-columns:35px 92px 1fr 40px;min-height:125px;padding:14px}
  .lab-category-pill img{width:92px;height:92px}
  .lab-category-pill strong{font-size:22px}
  .lab-brand-directory{grid-template-columns:repeat(2,1fr)}
  .lab-service-bento{grid-template-columns:1fr}
  .lab-service-wide{grid-column:auto}
  .lab-service-bento .service-card{min-height:270px}
  .lab-location-bento{grid-template-columns:1fr;grid-template-rows:auto}
  .lab-location-card{grid-column:auto;padding:36px 24px}
  .lab-location-preview{min-height:430px}
  .lab-visit-grid{grid-template-columns:1fr}
  .lab-visit-grid article{min-height:260px}
  .lab-contact-info article{grid-template-columns:74px 1fr 44px}
  .lab-contact-form{padding:36px 22px}
  .lab-footer-top{grid-template-columns:1fr;gap:38px;padding-block:80px 55px}
  .lab-footer-circle{width:150px;height:150px}
  .lab-footer-main{grid-template-columns:1fr 1fr}
  .lab-footer-main .footer-brand{grid-column:1/3}
  .lab-collection-link{align-items:flex-start;flex-direction:column}
  .collection-toolbar{top:72px;border-radius:0}
}

@media(max-width:520px){
  .lab-brand .brand-copy small{display:none}
  .lab-nav-actions .theme-toggle{display:none}
  .lab-hero h1{font-size:16.2vw}
  .lab-hero-kicker b{display:none}
  .lab-hero-meta strong{font-size:22px}
  .lab-stage-main figcaption strong{font-size:23px}
  .lab-stage-side{width:135px;height:175px}
  .lab-lens-disc{width:92px;height:92px}
  .lab-lens-disc span{font-size:24px}
  .lab-universe-card{grid-template-columns:88px 1fr}
  .lab-universe-media{width:88px;height:100px}
  .lab-universe-copy h3{font-size:33px}
  .lab-universe-copy small{font-size:6px}
  .lab-category-pill{grid-template-columns:28px 75px 1fr 36px;gap:10px}
  .lab-category-pill img{width:75px;height:75px}
  .lab-category-pill strong{font-size:18px}
  .lab-category-pill small{font-size:6px}
  .lab-brand-directory{grid-template-columns:1fr 1fr}
  .lab-brand-directory .brand-choice{min-height:125px}
  .lab-product-media{aspect-ratio:1/.9}
  .lab-contact-info article{grid-template-columns:1fr 44px;padding-block:20px}
  .lab-contact-info article>small{grid-column:1/3}
  .lab-footer-main{grid-template-columns:1fr}
  .lab-footer-main .footer-brand{grid-column:auto}
  .lab-footer .footer-bottom{display:grid;gap:8px}
}

@media(prefers-reduced-motion:reduce){
  .lab-marquee div,.lab-lens-disc,.lab-inner-stamp{animation:none!important}
}

:root{
  --v3-navy:#070b2a;
  --v3-navy-2:#0d154a;
  --v3-indigo:#3527d9;
  --v3-violet:#6b46ff;
  --v3-electric:#7868ff;
  --v3-gold:#f6c565;
  --v3-cream:#fbfaf7;
  --v3-white:#fff;
  --v3-ink:#101329;
  --v3-muted:#646a80;
  --v3-line:rgba(16,19,41,.11);
  --v3-shadow:0 26px 75px rgba(8,13,50,.14);
  --v3-shadow-soft:0 14px 45px rgba(8,13,50,.09);
  --v3-radius:30px;
}
html{scroll-behavior:smooth}
body{overflow-x:hidden;background:var(--v3-cream);color:var(--v3-ink)}
body::selection{background:var(--v3-indigo);color:#fff}
.container{width:min(1240px,calc(100% - 40px))}
.section{padding:110px 0}
.reveal{transform:translateY(24px);opacity:0;transition:opacity .75s ease var(--reveal-delay,0ms),transform .75s cubic-bezier(.2,.75,.2,1) var(--reveal-delay,0ms)}
.reveal.is-visible{transform:none;opacity:1}

.lab-announcement{position:relative;z-index:1002;border:0;background:linear-gradient(90deg,#2116ae,#4e35ed 60%,#2918b9);color:#fff}
.lab-announcement .announcement-inner{min-height:34px}
.lab-announcement p,.lab-announcement div{font-size:10px;letter-spacing:.04em}
.lab-announcement strong{color:#fff}
.lab-header{position:sticky;z-index:1000;top:0;border-bottom:1px solid rgba(255,255,255,.1);background:rgba(7,11,42,.91);box-shadow:0 12px 35px rgba(4,7,27,.16);backdrop-filter:blur(20px)}
.lab-nav-shell{min-height:82px;padding:0}
.lab-brand{display:flex;min-width:255px;align-items:center;color:#fff}
.lab-brand-logo{display:block;width:270px;height:auto;max-height:62px;object-fit:contain;object-position:left center}
.lab-desktop-nav{gap:7px}
.lab-desktop-nav a{position:relative;padding:13px 15px;border-radius:13px;color:rgba(255,255,255,.72);font-size:11px;font-weight:800;letter-spacing:.02em;text-transform:none}
.lab-desktop-nav a::before{position:absolute;right:15px;bottom:7px;left:15px;height:2px;border-radius:5px;background:var(--v3-gold);content:"";transform:scaleX(0);transition:.25s ease}
.lab-desktop-nav a:hover,.lab-desktop-nav a.active{background:rgba(255,255,255,.07);color:#fff}
.lab-desktop-nav a:hover::before,.lab-desktop-nav a.active::before{transform:scaleX(1)}
.lab-desktop-nav a i{display:none}
.lab-nav-actions{gap:7px}
.v3-header-call{display:flex;align-items:center;gap:9px;min-height:45px;padding:0 17px;border-radius:13px;background:linear-gradient(135deg,var(--v3-violet),var(--v3-indigo));color:#fff;font-size:11px;font-weight:900;box-shadow:0 10px 28px rgba(84,59,236,.32)}
.v3-header-call svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8}
.lab-nav-actions .language-trigger,.lab-nav-actions .nav-icon,.lab-cart-trigger,.lab-menu-trigger{border-color:rgba(255,255,255,.13);background:rgba(255,255,255,.07);color:#fff}
.lab-cart-trigger span{display:none}
.lab-cart-trigger b{background:var(--v3-gold);color:var(--v3-navy)}
.lab-mobile-menu{top:82px;background:rgba(7,11,42,.98);color:#fff}
.lab-mobile-menu a{color:#fff}
.lab-mobile-label{color:var(--v3-gold)}

.v3-hero{position:relative;isolation:isolate;overflow:hidden;padding:82px 0 0;background:radial-gradient(circle at 84% 14%,rgba(106,77,255,.36),transparent 29%),radial-gradient(circle at 8% 80%,rgba(41,104,255,.22),transparent 28%),linear-gradient(135deg,#050822 0%,#080d34 48%,#10175a 100%);color:#fff}
.v3-hero::before{position:absolute;inset:0;z-index:-2;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:70px 70px;mask-image:linear-gradient(90deg,#000,transparent 72%);content:""}
.v3-hero::after{position:absolute;z-index:-1;right:-260px;top:-180px;width:820px;height:820px;border:1px solid rgba(246,197,101,.22);border-radius:50%;box-shadow:0 0 0 80px rgba(255,255,255,.018),0 0 0 160px rgba(255,255,255,.012);content:""}
.v3-hero-orbit{position:absolute;z-index:-1;left:-250px;bottom:70px;width:610px;height:610px;border:1px solid rgba(122,104,255,.25);border-radius:50%}
.v3-hero-orbit::after{position:absolute;inset:75px;border:1px solid rgba(246,197,101,.18);border-radius:50%;content:""}
.v3-hero-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(530px,1.08fr);align-items:center;gap:70px;min-height:670px;padding-bottom:85px}
.v3-hero-copy{position:relative;z-index:2}
.v3-kicker,.v3-overline{display:inline-flex;align-items:center;gap:10px;color:var(--v3-gold);font-size:10px;font-weight:900;letter-spacing:.17em;text-transform:uppercase}
.v3-kicker i{width:8px;height:8px;transform:rotate(45deg);background:var(--v3-gold);box-shadow:0 0 18px rgba(246,197,101,.8)}
.v3-hero h1{max-width:720px;margin:21px 0 17px;font-size:clamp(64px,7vw,108px);font-weight:900;letter-spacing:-.07em;line-height:.87}
.v3-hero h1 em{display:inline-block;color:var(--v3-gold);font-family:var(--serif);font-weight:400;letter-spacing:-.035em}
.v3-hero h2{margin:0;color:rgba(255,255,255,.9);font-size:clamp(18px,2vw,27px);font-weight:500;letter-spacing:-.02em}
.v3-hero-copy>p{max-width:610px;margin:24px 0 0;color:rgba(255,255,255,.68);font-size:16px;line-height:1.72}
.v3-hero-actions{display:flex;flex-wrap:wrap;gap:13px;margin-top:34px}
.v3-button{display:inline-flex;min-height:54px;align-items:center;justify-content:center;gap:12px;padding:0 22px;border:1px solid transparent;border-radius:15px;font-size:11px;font-weight:900;letter-spacing:.03em;transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease}
.v3-button:hover{transform:translateY(-3px)}
.v3-button b{font-size:15px}
.v3-button-primary{background:linear-gradient(135deg,var(--v3-violet),var(--v3-indigo));color:#fff;box-shadow:0 16px 36px rgba(80,54,234,.36)}
.v3-button-primary:hover{box-shadow:0 20px 44px rgba(80,54,234,.48)}
.v3-button-ghost{border-color:rgba(255,255,255,.25);background:rgba(255,255,255,.05);color:#fff;backdrop-filter:blur(10px)}
.v3-button-ghost:hover{background:#fff;color:var(--v3-navy)}
.v3-button-dark{background:var(--v3-navy);color:#fff;box-shadow:var(--v3-shadow-soft)}
.v3-hero-points{display:flex;flex-wrap:wrap;gap:20px;margin-top:30px;color:rgba(255,255,255,.68);font-size:10px;font-weight:700}
.v3-hero-points span{display:flex;align-items:center;gap:7px}
.v3-hero-points i{display:grid;width:18px;height:18px;place-items:center;border:1px solid rgba(246,197,101,.48);border-radius:6px;color:var(--v3-gold);font-style:normal;font-size:10px}
.v3-hero-visual{position:relative;height:610px;perspective:1000px}
.v3-hero-main{position:absolute;inset:18px 58px 5px 105px;overflow:hidden;margin:0;border:1px solid rgba(255,255,255,.18);border-radius:260px 260px 34px 34px;background:#c9c9c9;box-shadow:0 46px 100px rgba(0,0,0,.36);transform:rotate(1.7deg)}
.v3-hero-main::after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 52%,rgba(4,7,25,.64));content:""}
.v3-hero-main img{width:100%;height:100%;object-fit:cover;transform:scale(1.045);transition:transform 1s cubic-bezier(.2,.7,.2,1)}
.v3-hero-visual:hover .v3-hero-main img{transform:scale(1.1)}
.v3-hero-float{position:absolute;z-index:4;overflow:hidden;margin:0;border:9px solid var(--v3-navy);background:#fff;box-shadow:0 22px 55px rgba(0,0,0,.36)}
.v3-hero-float img{width:100%;height:100%;object-fit:cover}
.v3-hero-float-a{right:0;bottom:15px;width:205px;height:250px;border-radius:30px;transform:rotate(-4deg)}
.v3-hero-float-b{left:10px;bottom:56px;width:180px;height:220px;border-radius:85px 85px 25px 25px;transform:rotate(4deg)}
.v3-rating-chip{position:absolute;z-index:5;right:9px;top:52px;display:grid;grid-template-columns:auto auto;align-items:end;gap:1px 9px;padding:15px 18px;border:1px solid rgba(255,255,255,.17);border-radius:18px;background:rgba(7,11,42,.76);box-shadow:0 16px 40px rgba(0,0,0,.22);backdrop-filter:blur(14px)}
.v3-rating-chip strong{font-size:29px;line-height:1}.v3-rating-chip span{color:var(--v3-gold);font-size:11px;letter-spacing:2px}.v3-rating-chip small{grid-column:1/3;color:rgba(255,255,255,.62);font-size:9px}
.v3-hero-seal{position:absolute;z-index:5;left:17px;top:35px;width:132px;height:132px;display:grid;place-content:center;border:1px solid rgba(246,197,101,.44);border-radius:50%;background:rgba(7,11,42,.64);text-align:center;backdrop-filter:blur(14px);animation:v3-float 5s ease-in-out infinite}
.v3-hero-seal::before{position:absolute;inset:9px;border:1px solid rgba(255,255,255,.15);border-radius:50%;content:""}
.v3-hero-seal span,.v3-hero-seal small{position:relative;font-size:7px;font-weight:900;letter-spacing:.16em}.v3-hero-seal strong{position:relative;margin:4px 0;color:var(--v3-gold);font-size:20px;letter-spacing:.05em}
@keyframes v3-float{50%{transform:translateY(-10px) rotate(2deg)}}
.v3-trust-strip{position:relative;z-index:10;display:grid;grid-template-columns:repeat(4,1fr);margin-bottom:-57px;border:1px solid rgba(255,255,255,.8);border-radius:24px;background:rgba(255,255,255,.96);box-shadow:0 24px 60px rgba(4,8,35,.22);color:var(--v3-ink);backdrop-filter:blur(18px)}
.v3-trust-strip article{display:flex;min-height:112px;align-items:center;gap:14px;padding:22px 24px;border-right:1px solid var(--v3-line)}
.v3-trust-strip article:last-child{border:0}
.v3-trust-icon{display:grid;flex:0 0 44px;width:44px;height:44px;place-items:center;border:1px solid rgba(53,39,217,.2);border-radius:14px;background:rgba(53,39,217,.06);color:var(--v3-indigo);font-size:19px}
.v3-trust-strip strong{display:block;font-size:12px}.v3-trust-strip small{display:block;margin-top:5px;color:var(--v3-muted);font-size:9px;line-height:1.45}

.v3-section-head,.v3-showcase-head{display:flex;align-items:end;justify-content:space-between;gap:50px;margin-bottom:45px}
.v3-section-head>div,.v3-showcase-head>div{max-width:800px}
.v3-section-head h2,.v3-showcase-head h2,.v3-boutique-copy h2,.v3-reviews-head h2,.v3-contact-card h2,.v3-request-panel h2{margin:12px 0 0;font-size:clamp(44px,5.5vw,78px);font-weight:900;letter-spacing:-.065em;line-height:.93}
.v3-section-head>p{max-width:450px;margin:0;color:var(--v3-muted);font-size:13px;line-height:1.7}
.v3-section-head>a,.v3-showcase-head>a{color:inherit;font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}

.v3-categories{padding-top:160px;background:linear-gradient(180deg,#f8f7fb,#fff)}
.v3-category-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:13px}
.v3-category-card{position:relative;overflow:hidden;min-height:260px;border:1px solid var(--v3-line);border-radius:24px;background:#fff;box-shadow:var(--v3-shadow-soft);color:#fff;isolation:isolate}
.v3-category-card::after{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,transparent 35%,rgba(5,8,33,.88));content:""}
.v3-category-card img{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;transition:.7s cubic-bezier(.2,.7,.2,1)}
.v3-category-card:hover img{transform:scale(1.09)}
.v3-category-card>span{position:absolute;right:15px;bottom:16px;left:15px;display:grid;gap:3px;padding:15px;border:1px solid rgba(255,255,255,.17);border-radius:16px;background:rgba(7,11,42,.47);backdrop-filter:blur(10px)}
.v3-category-card i{color:var(--v3-gold);font-size:8px;font-weight:900;font-style:normal;letter-spacing:.14em}.v3-category-card strong{font-size:18px}.v3-category-card small{color:rgba(255,255,255,.66);font-size:8px}

.v3-showcase{background:var(--v3-navy);color:#fff}
.v3-showcase .v3-overline{color:var(--v3-gold)}
.v3-showcase-head>a{color:#fff}
.v3-mosaic{display:grid;grid-template-columns:1.15fr .92fr .92fr;grid-auto-rows:250px;gap:13px}
.v3-tile{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.12);border-radius:25px;color:#fff;isolation:isolate}
.v3-tile::after{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,transparent 38%,rgba(3,6,26,.9));content:""}
.v3-tile img{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;transition:.75s cubic-bezier(.2,.7,.2,1)}
.v3-tile:hover img{transform:scale(1.06)}
.v3-tile>span{position:absolute;right:23px;bottom:21px;left:23px;display:grid;gap:5px}
.v3-tile small{color:var(--v3-gold);font-size:8px;font-weight:900;letter-spacing:.16em}.v3-tile strong{max-width:480px;font-family:var(--serif);font-size:25px;font-weight:400;line-height:1.05}
.v3-tile-xl{grid-row:span 2}.v3-tile-wide{grid-column:span 1}.v3-tile-tall{grid-row:span 2}

.v3-runway{background:#f2f2f8}
.v3-runway .model-slider-shell{overflow:hidden;border:1px solid rgba(17,20,48,.1);border-radius:32px;background:#fff;box-shadow:var(--v3-shadow)}
.v3-runway .model-slide{grid-template-columns:1.05fr .95fr;min-height:610px}
.v3-runway .model-slide-media{background:linear-gradient(145deg,#ebeaf4,#f7f7fb)}
.v3-runway .model-slide-media img{min-height:610px;padding:38px;object-fit:contain;filter:drop-shadow(0 35px 35px rgba(11,15,52,.17))}
.v3-runway .model-slide-copy{padding:60px}
.v3-runway .model-slide-copy h3{font-size:clamp(48px,5vw,78px);text-transform:none}
.v3-runway .model-slide-copy .eyebrow{color:var(--v3-indigo)}
.v3-runway .model-slide-actions .button-primary{background:var(--v3-indigo)}
.v3-runway .model-slider-controls{min-height:78px;background:var(--v3-navy);color:#fff}
.v3-runway .model-slider-dots button.active,.v3-runway .model-slider-progress b{background:var(--v3-gold)}

.v3-products{background:#fff}
.v3-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.v3-product-grid .lab-product-card{overflow:hidden;border:1px solid var(--v3-line);border-radius:26px;background:#fff;box-shadow:0 12px 38px rgba(8,13,50,.07);transition:transform .28s ease,box-shadow .28s ease}
.v3-product-grid .lab-product-card:hover{transform:translateY(-8px);box-shadow:0 24px 60px rgba(8,13,50,.14)}
.v3-product-grid .lab-product-media{aspect-ratio:1.1/1;border-radius:0;background:linear-gradient(145deg,#eeedf5,#fafafa)}
.v3-product-grid .lab-product-media img{padding:24px;object-fit:contain;transition:.55s ease}
.v3-product-grid .lab-product-card:hover .lab-product-media img{transform:scale(1.05) rotate(-1deg)}
.v3-product-grid .lab-product-body{padding:24px}
.v3-product-grid .lab-product-body h3{font-size:25px;text-transform:none}
.v3-product-grid .lab-product-footer{margin-top:20px}
.v3-product-grid .product-choose{background:var(--v3-navy);color:#fff}
.v3-center-action{display:flex;justify-content:center;margin-top:45px}

.v3-boutique{background:linear-gradient(145deg,#f5f4fb,#fff)}
.v3-boutique-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(580px,1.2fr);align-items:center;gap:72px}
.v3-boutique-copy h2 em,.v3-reviews-head h2 em{color:var(--v3-indigo);font-family:var(--serif);font-weight:400}
.v3-boutique-copy>p{max-width:600px;margin:26px 0 0;color:var(--v3-muted);font-size:14px;line-height:1.8}
.v3-boutique-stats{display:grid;grid-template-columns:repeat(3,1fr);margin:34px 0;border-block:1px solid var(--v3-line)}
.v3-boutique-stats span{display:grid;gap:3px;padding:20px;border-right:1px solid var(--v3-line)}.v3-boutique-stats span:first-child{padding-left:0}.v3-boutique-stats span:last-child{border:0}
.v3-boutique-stats strong{font-size:27px}.v3-boutique-stats small{color:var(--v3-muted);font-size:8px;text-transform:uppercase;letter-spacing:.08em}
.v3-inline-actions{display:flex;flex-wrap:wrap;align-items:center;gap:24px}.v3-text-link{color:var(--v3-indigo);font-size:10px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.v3-boutique-gallery{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:270px 270px;gap:13px}
.v3-boutique-gallery figure{overflow:hidden;margin:0;border-radius:25px;background:#ddd;box-shadow:var(--v3-shadow-soft)}
.v3-boutique-gallery .v3-shop-main{grid-row:1/3}
.v3-boutique-gallery img{width:100%;height:100%;object-fit:cover;transition:.7s ease}.v3-boutique-gallery figure:hover img{transform:scale(1.05)}

.v3-services{position:relative;overflow:hidden;background:linear-gradient(135deg,#070b2a,#101655 58%,#301cb0);color:#fff}
.v3-services::after{position:absolute;right:-200px;bottom:-250px;width:700px;height:700px;border:1px solid rgba(255,255,255,.12);border-radius:50%;box-shadow:0 0 0 85px rgba(255,255,255,.018),0 0 0 170px rgba(255,255,255,.012);content:""}
.v3-section-head-light{position:relative;z-index:2}.v3-section-head-light .v3-overline{color:var(--v3-gold)}.v3-section-head-light a{color:#fff}
.v3-service-grid{position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:minmax(225px,auto);gap:13px}
.v3-service-card{position:relative;overflow:hidden;padding:27px;border:1px solid rgba(255,255,255,.13);border-radius:24px;background:rgba(255,255,255,.075);backdrop-filter:blur(15px);transition:.3s ease}
.v3-service-card:hover{transform:translateY(-7px);border-color:rgba(246,197,101,.45);background:rgba(255,255,255,.12)}
.v3-service-feature{grid-column:span 2;grid-row:span 2;padding:42px;background:linear-gradient(145deg,rgba(106,70,255,.42),rgba(255,255,255,.07))}
.v3-service-card>span{position:absolute;right:20px;top:19px;color:rgba(255,255,255,.28);font-size:10px;font-weight:900}.v3-service-card>i{display:grid;width:48px;height:48px;place-items:center;border-radius:15px;background:rgba(255,255,255,.1);color:var(--v3-gold);font-size:22px;font-style:normal}
.v3-service-card h3{margin:27px 0 10px;font-size:23px;letter-spacing:-.03em}.v3-service-feature h3{margin-top:80px;font-size:42px}.v3-service-card p{max-width:420px;margin:0;color:rgba(255,255,255,.62);font-size:12px;line-height:1.65}.v3-service-card a{display:inline-block;margin-top:25px;color:var(--v3-gold);font-size:10px;font-weight:900;text-transform:uppercase}

.v3-reviews{background:#f5f4fb}
.v3-reviews-head{display:grid;grid-template-columns:1fr auto;align-items:end;margin-bottom:45px}.v3-reviews-head>.v3-overline{grid-column:1/3}.v3-reviews-score{display:grid;grid-template-columns:auto auto;align-items:end;gap:2px 12px;padding:18px 24px;border:1px solid var(--v3-line);border-radius:19px;background:#fff;box-shadow:var(--v3-shadow-soft)}.v3-reviews-score strong{font-size:38px}.v3-reviews-score span{color:#f0ae18;letter-spacing:3px}.v3-reviews-score small{grid-column:1/3;color:var(--v3-muted);font-size:9px}
.v3-review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.v3-review-grid blockquote{position:relative;margin:0;padding:31px;border:1px solid var(--v3-line);border-radius:25px;background:#fff;box-shadow:var(--v3-shadow-soft)}
.v3-review-grid blockquote::after{position:absolute;right:25px;top:20px;color:rgba(53,39,217,.08);font-family:Georgia,serif;font-size:90px;content:'“'}
.v3-review-grid div{color:#f0ae18;font-size:13px;letter-spacing:3px}.v3-review-grid p{position:relative;z-index:1;min-height:110px;margin:25px 0;color:var(--v3-ink);font-family:var(--serif);font-size:21px;line-height:1.6}.v3-review-grid footer{padding-top:18px;border-top:1px solid var(--v3-line);color:var(--v3-muted);font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.07em}

.v3-contact-cta{padding-top:0;background:#f5f4fb}
.v3-contact-card{position:relative;overflow:hidden;padding:55px;border-radius:32px;background:linear-gradient(120deg,#2919c7,#6142ff 60%,#2510ad);box-shadow:0 35px 80px rgba(47,28,197,.28);color:#fff}
.v3-contact-card::before{position:absolute;right:-145px;top:-160px;width:520px;height:520px;border:1px solid rgba(255,255,255,.22);border-radius:50%;box-shadow:0 0 0 70px rgba(255,255,255,.035),0 0 0 140px rgba(255,255,255,.02);content:""}
.v3-contact-card>div{position:relative;z-index:1}.v3-contact-card .v3-overline{color:#fff}.v3-contact-card h2{max-width:800px}.v3-contact-card>div:first-child p{max-width:680px;margin:20px 0 0;color:rgba(255,255,255,.7);font-size:13px;line-height:1.7}
.v3-contact-actions{display:grid;grid-template-columns:1fr 1fr;gap:13px;margin-top:38px}.v3-contact-phone,.v3-contact-whatsapp{display:grid;grid-template-columns:1fr auto;align-items:center;min-height:105px;padding:22px 25px;border:1px solid rgba(255,255,255,.18);border-radius:21px;background:rgba(255,255,255,.1);color:#fff;text-align:left;backdrop-filter:blur(12px);transition:.25s ease}.v3-contact-phone:hover,.v3-contact-whatsapp:hover{transform:translateY(-4px);background:#fff;color:var(--v3-indigo)}.v3-contact-phone small,.v3-contact-whatsapp small{font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.v3-contact-phone strong,.v3-contact-whatsapp strong{grid-row:2;font-size:25px}.v3-contact-phone span,.v3-contact-whatsapp span{grid-column:2;grid-row:1/3;font-size:25px}
.v3-contact-meta{display:flex;flex-wrap:wrap;gap:28px;margin-top:26px;padding-top:25px;border-top:1px solid rgba(255,255,255,.16)}.v3-contact-meta span{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.72);font-size:9px}.v3-contact-meta i{color:var(--v3-gold);font-style:normal;font-size:18px}

.v3-request-wrap{background:#fff}
.v3-request-panel{display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;padding:52px;border:1px solid var(--v3-line);border-radius:30px;background:linear-gradient(145deg,#fbfbfe,#f1effb);box-shadow:var(--v3-shadow-soft)}
.v3-request-panel h2{font-size:clamp(38px,4vw,60px)}.v3-request-panel>div>p{max-width:520px;margin:20px 0 0;color:var(--v3-muted);font-size:13px;line-height:1.7}
.v3-request-panel .missing-model-form{display:grid;grid-template-columns:1fr 1fr;gap:14px}.v3-request-panel label:nth-child(3){grid-column:1/3}.v3-request-panel label span{font-size:9px;font-weight:900}.v3-request-panel input{min-height:52px;border:1px solid var(--v3-line);border-radius:13px;background:#fff}.v3-request-panel button{grid-column:1/3}

.lab-footer{background:#050822;color:#fff}
.lab-footer-top{border-color:rgba(255,255,255,.12)}
.lab-footer-title>span{color:var(--v3-gold)}
.lab-footer-title h2{font-size:clamp(50px,6vw,90px)}
.lab-footer-circle{border-color:rgba(246,197,101,.5);background:linear-gradient(145deg,rgba(107,70,255,.4),rgba(255,255,255,.04))}
.lab-footer-circle:hover{background:var(--v3-gold);color:var(--v3-navy)}
.lab-footer-main{border-color:rgba(255,255,255,.12)}
.lab-footer .lab-brand-logo{width:310px}
.lab-floating-wa{background:#25d366;color:#fff;box-shadow:0 15px 38px rgba(37,211,102,.34)}

html[data-theme="dark"] body{background:#0d1020;color:#f8f8ff}
html[data-theme="dark"] .v3-categories,html[data-theme="dark"] .v3-products,html[data-theme="dark"] .v3-boutique,html[data-theme="dark"] .v3-reviews,html[data-theme="dark"] .v3-contact-cta,html[data-theme="dark"] .v3-request-wrap,html[data-theme="dark"] .v3-runway{background:#101425}
html[data-theme="dark"] .v3-section-head>p,html[data-theme="dark"] .v3-boutique-copy>p{color:#a8aec2}
html[data-theme="dark"] .v3-category-card,html[data-theme="dark"] .v3-product-grid .lab-product-card,html[data-theme="dark"] .v3-review-grid blockquote,html[data-theme="dark"] .v3-reviews-score,html[data-theme="dark"] .v3-request-panel{border-color:rgba(255,255,255,.1);background:#171c31;color:#fff}
html[data-theme="dark"] .v3-request-panel input{border-color:rgba(255,255,255,.1);background:#0f1427;color:#fff}
html[data-theme="dark"] .v3-review-grid p{color:#fff}
html[data-theme="dark"] .v3-runway .model-slider-shell{border-color:rgba(255,255,255,.1);background:#171c31}

@media (max-width:1120px){
  .lab-desktop-nav{display:none}.lab-menu-trigger{display:flex}.v3-header-call{display:none}.lab-brand{min-width:auto}.lab-brand-logo{width:245px}
  .v3-hero-grid{grid-template-columns:.9fr 1.1fr;gap:30px}.v3-hero h1{font-size:74px}.v3-hero-visual{height:565px}.v3-hero-main{inset:22px 40px 15px 70px}.v3-hero-float-b{left:0;width:145px;height:190px}.v3-hero-float-a{width:175px;height:220px}
  .v3-trust-strip{grid-template-columns:repeat(2,1fr)}.v3-trust-strip article:nth-child(2){border-right:0}.v3-trust-strip article:nth-child(-n+2){border-bottom:1px solid var(--v3-line)}
  .v3-categories{padding-top:190px}.v3-category-grid{grid-template-columns:repeat(3,1fr)}
  .v3-mosaic{grid-template-columns:1fr 1fr;grid-auto-rows:300px}.v3-tile-xl{grid-row:span 2}.v3-tile-tall{grid-row:span 1}
  .v3-boutique-grid{grid-template-columns:1fr;gap:50px}.v3-boutique-gallery{grid-template-rows:310px 310px}
  .v3-service-grid{grid-template-columns:repeat(3,1fr)}.v3-service-feature{grid-column:span 2}
  .v3-product-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:820px){
  .section{padding:82px 0}.container{width:min(100% - 28px,720px)}
  .lab-announcement .announcement-inner>div{display:none}.lab-announcement .announcement-inner{justify-content:center}.lab-announcement p{text-align:center}
  .lab-nav-shell{min-height:72px}.lab-mobile-menu{top:72px}.lab-brand-logo{width:215px}.lab-nav-actions .language-switcher{display:none}
  .v3-hero{padding-top:55px}.v3-hero-grid{display:flex;min-height:auto;flex-direction:column;gap:42px;padding-bottom:85px}.v3-hero-copy{width:100%}.v3-hero h1{font-size:clamp(57px,14vw,82px)}.v3-hero h2{font-size:18px}.v3-hero-copy>p{font-size:14px}.v3-hero-visual{width:100%;height:560px}.v3-hero-main{inset:20px 38px 5px 88px}.v3-hero-float-a{right:4px}.v3-hero-float-b{left:5px}.v3-hero-seal{left:10px}.v3-rating-chip{right:5px}
  .v3-trust-strip{margin-bottom:-95px}.v3-categories{padding-top:200px}.v3-section-head,.v3-showcase-head{display:grid;gap:20px}.v3-section-head>p{max-width:600px}.v3-category-grid{grid-template-columns:repeat(2,1fr)}.v3-category-card{min-height:280px}
  .v3-mosaic{grid-template-columns:1fr;grid-auto-rows:330px}.v3-tile-xl,.v3-tile-tall{grid-row:span 1}
  .v3-runway .model-slide{grid-template-columns:1fr}.v3-runway .model-slide-media,.v3-runway .model-slide-media img{min-height:480px}.v3-runway .model-slide-copy{padding:38px}
  .v3-product-grid{grid-template-columns:1fr 1fr}
  .v3-service-grid{grid-template-columns:1fr 1fr}.v3-service-feature{grid-column:1/3;grid-row:span 1}.v3-service-feature h3{margin-top:45px}
  .v3-reviews-head{grid-template-columns:1fr;gap:25px}.v3-reviews-head>.v3-overline{grid-column:auto}.v3-reviews-score{width:max-content}.v3-review-grid{grid-template-columns:1fr}
  .v3-contact-card{padding:38px}.v3-contact-actions{grid-template-columns:1fr}.v3-request-panel{grid-template-columns:1fr;gap:38px}
}
@media (max-width:560px){
  .container{width:calc(100% - 22px)}.section{padding:68px 0}
  .lab-brand-logo{width:174px}.lab-nav-actions{gap:4px}.lab-nav-actions .theme-toggle{display:none}.lab-cart-trigger,.lab-menu-trigger{width:42px;height:42px}
  .v3-hero{padding-top:38px}.v3-kicker{font-size:8px}.v3-hero h1{font-size:52px;line-height:.92}.v3-hero h2{font-size:15px;line-height:1.4}.v3-hero-copy>p{font-size:13px}.v3-hero-actions{display:grid}.v3-button{width:100%}.v3-hero-points{gap:10px 15px}.v3-hero-visual{height:445px}.v3-hero-main{inset:20px 22px 10px 54px;border-radius:180px 180px 25px 25px}.v3-hero-float-a{width:128px;height:165px;border-width:6px}.v3-hero-float-b{width:105px;height:140px;border-width:6px}.v3-hero-seal{top:5px;width:100px;height:100px}.v3-hero-seal strong{font-size:15px}.v3-rating-chip{top:28px;padding:11px 13px}.v3-rating-chip strong{font-size:23px}
  .v3-trust-strip{grid-template-columns:1fr;margin-bottom:-165px}.v3-trust-strip article{min-height:82px;padding:14px 17px;border-right:0;border-bottom:1px solid var(--v3-line)!important}.v3-trust-strip article:last-child{border-bottom:0!important}.v3-categories{padding-top:240px}
  .v3-section-head h2,.v3-showcase-head h2,.v3-boutique-copy h2,.v3-reviews-head h2,.v3-contact-card h2,.v3-request-panel h2{font-size:42px}.v3-category-grid{grid-template-columns:1fr 1fr;gap:9px}.v3-category-card{min-height:215px;border-radius:18px}.v3-category-card>span{right:9px;bottom:9px;left:9px;padding:12px}.v3-category-card strong{font-size:16px}
  .v3-mosaic{grid-auto-rows:275px;gap:9px}.v3-tile{border-radius:20px}.v3-tile strong{font-size:22px}
  .v3-runway .model-slide-media,.v3-runway .model-slide-media img{min-height:350px}.v3-runway .model-slide-media img{padding:18px}.v3-runway .model-slide-copy{padding:25px}.v3-runway .model-slide-copy h3{font-size:43px}.v3-runway .model-slide-actions{display:grid}
  .v3-product-grid{grid-template-columns:1fr}.v3-product-grid .lab-product-body{padding:20px}
  .v3-boutique-stats{grid-template-columns:1fr 1fr 1fr}.v3-boutique-stats span{padding:16px 10px}.v3-boutique-gallery{grid-template-columns:1fr 1fr;grid-template-rows:260px 180px}.v3-boutique-gallery .v3-shop-main{grid-column:1/3;grid-row:auto}.v3-boutique-gallery figure{border-radius:18px}
  .v3-service-grid{grid-template-columns:1fr}.v3-service-feature{grid-column:auto}.v3-service-card{min-height:210px}.v3-service-feature h3{font-size:32px}
  .v3-review-grid p{min-height:auto;font-size:19px}.v3-contact-card{padding:28px 20px;border-radius:24px}.v3-contact-phone strong,.v3-contact-whatsapp strong{font-size:20px}.v3-contact-meta{display:grid;gap:14px}
  .v3-request-panel{padding:25px 18px;border-radius:22px}.v3-request-panel .missing-model-form{grid-template-columns:1fr}.v3-request-panel label:nth-child(3),.v3-request-panel button{grid-column:auto}
}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important}.v3-hero-seal{animation:none}.reveal{transform:none;opacity:1;transition:none}}

.v3-location-photo{position:relative;overflow:hidden;padding:0!important;background:#101531!important}
.v3-location-photo>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.72}
.v3-location-photo::after{position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,11,42,.08),rgba(7,11,42,.92));content:""}
.v3-location-photo>div{position:absolute;z-index:2;right:28px;bottom:28px;left:28px;color:#fff}
.v3-location-photo small{color:var(--v3-gold);font-size:8px;font-weight:900;letter-spacing:.15em}
.v3-location-photo strong{display:block;margin-top:8px;font-size:30px}
.v3-location-photo p{max-width:440px;color:rgba(255,255,255,.68);font-size:11px}
.v3-location-photo a{display:inline-flex;margin-top:12px;color:#fff;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.v3-real-gallery{background:#fff}
.v3-real-gallery-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr;grid-auto-rows:310px;gap:13px}
.v3-real-gallery-grid figure{position:relative;overflow:hidden;margin:0;border-radius:25px;background:#ddd;box-shadow:var(--v3-shadow-soft)}
.v3-real-gallery-grid figure:first-child{grid-row:span 2}
.v3-real-gallery-grid img{width:100%;height:100%;object-fit:cover;transition:.7s ease}
.v3-real-gallery-grid figure:hover img{transform:scale(1.06)}
.v3-real-gallery-grid figcaption{position:absolute;right:15px;bottom:15px;left:15px;padding:13px 15px;border:1px solid rgba(255,255,255,.18);border-radius:14px;background:rgba(7,11,42,.6);color:#fff;font-size:9px;font-weight:900;letter-spacing:.06em;text-transform:uppercase;backdrop-filter:blur(10px)}
html[data-theme="dark"] .v3-real-gallery{background:#101425}
@media(max-width:820px){.v3-real-gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:260px}.v3-real-gallery-grid figure:first-child{grid-column:1/3;grid-row:auto}}
@media(max-width:560px){.v3-real-gallery-grid{grid-template-columns:1fr;grid-auto-rows:250px}.v3-real-gallery-grid figure:first-child{grid-column:auto}.v3-real-gallery-grid figure{border-radius:18px}}

body.mobile-nav-open{overflow:hidden;overscroll-behavior:none;touch-action:none}

@media (max-width:1120px){
  .lab-nav-shell{grid-template-columns:minmax(0,1fr) auto;gap:10px}
  .lab-nav-actions{position:relative;z-index:2;flex:0 0 auto}
  .lab-nav-actions .language-switcher{display:block}
  .lab-nav-actions .theme-toggle{display:grid}

  
  .lab-mobile-menu{
    position:fixed;
    z-index:1200;
    top:var(--mobile-menu-top,72px);
    right:0;
    bottom:0;
    left:0;
    display:block;
    max-height:none;
    overflow:hidden;
    padding:12px;
    border:0;
    background:rgba(3,6,28,.70);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:opacity .24s ease,visibility .24s ease;
  }
  .lab-mobile-menu.is-open{
    max-height:none;
    border:0;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .lab-mobile-menu .mobile-menu-inner{
    width:min(410px,100%);
    max-height:calc(100dvh - var(--mobile-menu-top,72px) - 24px);
    margin-inline-start:auto;
    padding:15px;
    overflow-y:auto;
    overscroll-behavior:contain;
    border:1px solid rgba(255,255,255,.13);
    border-radius:26px;
    background:linear-gradient(155deg,rgba(15,22,72,.99),rgba(5,9,38,.99));
    box-shadow:0 30px 90px rgba(0,0,0,.48);
    transform:translateY(-12px) scale(.975);
    transform-origin:top right;
    transition:transform .28s cubic-bezier(.2,.78,.2,1);
  }
  html[dir="rtl"] .lab-mobile-menu .mobile-menu-inner{transform-origin:top left}
  .lab-mobile-menu.is-open .mobile-menu-inner{transform:none}

  .mobile-menu-head{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:3px 3px 13px}
  .mobile-menu-head>div{display:grid;gap:4px}
  .mobile-menu-head small{color:var(--v3-gold);font-size:7px;font-weight:950;letter-spacing:.2em}
  .mobile-menu-head strong{color:#fff;font-size:19px;font-weight:900;letter-spacing:-.025em}
  .mobile-menu-close{width:42px;height:42px;display:grid;place-items:center;flex:0 0 42px;border:1px solid rgba(255,255,255,.16);border-radius:14px;background:rgba(255,255,255,.07);color:#fff;font-size:25px;line-height:1;transition:.2s ease}
  .mobile-menu-close:hover,.mobile-menu-close:focus-visible{border-color:var(--v3-gold);background:var(--v3-gold);color:var(--v3-navy);transform:rotate(5deg)}

  .mobile-nav-links{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .lab-mobile-menu .mobile-nav-links a{
    position:relative;
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:12px 14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:17px;
    background:rgba(255,255,255,.055);
    color:#fff;
    font-family:var(--sans);
    font-size:13px;
    font-weight:850;
    letter-spacing:.005em;
    transition:transform .2s ease,border-color .2s ease,background .2s ease;
  }
  .lab-mobile-menu .mobile-nav-links a::after{content:"↗";color:rgba(255,255,255,.38);font-size:13px}
  .lab-mobile-menu .mobile-nav-links a:hover,.lab-mobile-menu .mobile-nav-links a:focus-visible{transform:translateY(-2px);border-color:rgba(246,197,101,.55);background:rgba(255,255,255,.10)}
  .lab-mobile-menu .mobile-nav-links a.active{border-color:rgba(246,197,101,.55);background:linear-gradient(135deg,rgba(107,70,255,.42),rgba(53,39,217,.34));box-shadow:inset 0 0 0 1px rgba(255,255,255,.04)}
  .lab-mobile-menu .mobile-nav-links a.active::before{position:absolute;top:11px;bottom:11px;left:0;width:3px;border-radius:0 5px 5px 0;background:var(--v3-gold);content:""}
  html[dir="rtl"] .lab-mobile-menu .mobile-nav-links a.active::before{right:0;left:auto;border-radius:5px 0 0 5px}
  .mobile-nav-links a:last-child{grid-column:1/-1}

  .mobile-preferences{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:10px;margin-top:11px;padding-top:11px;border-top:1px solid rgba(255,255,255,.10)}
  .mobile-language-block{display:grid;gap:7px}
  .mobile-language-block>small{color:rgba(255,255,255,.50);font-size:7px;font-weight:900;letter-spacing:.16em;text-transform:uppercase}
  .mobile-language-options{display:grid;grid-template-columns:repeat(3,1fr);gap:6px}
  .mobile-language-options button{min-height:41px;padding:0 12px;border:1px solid rgba(255,255,255,.11);border-radius:12px;background:rgba(255,255,255,.055);color:rgba(255,255,255,.72);font-size:10px;font-weight:900;letter-spacing:.08em;transition:.2s ease}
  .mobile-language-options button:hover,.mobile-language-options button.is-active{border-color:var(--v3-gold);background:var(--v3-gold);color:var(--v3-navy)}
  .mobile-theme-button{min-width:118px;min-height:41px;display:flex;align-items:center;justify-content:center;gap:8px;padding:0 12px;border:1px solid rgba(255,255,255,.11);border-radius:12px;background:rgba(255,255,255,.055);color:#fff;font-size:9px;font-weight:850}
  .mobile-theme-button .theme-sun,.mobile-theme-button .theme-moon{grid-area:auto}
  .mobile-theme-button b{white-space:nowrap}

  .mobile-contact-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:11px}
  .mobile-call-button,.lab-mobile-menu .mobile-wa-button{min-height:50px;display:flex!important;align-items:center;justify-content:center;gap:9px;margin:0;padding:0 13px;border:0;border-radius:15px;font-family:var(--sans);font-size:11px;font-weight:900}
  .mobile-call-button{background:#fff;color:var(--v3-navy)}
  .mobile-call-button .nav-svg{width:17px;height:17px}
  .lab-mobile-menu .mobile-wa-button{background:linear-gradient(135deg,#24c66d,#0ca958);color:#fff;box-shadow:0 12px 28px rgba(13,175,91,.24)}
  .lab-mobile-menu .mobile-wa-button .wa-icon{width:18px;height:18px}
  .lab-mobile-menu .mobile-wa-button b{margin-inline-start:auto}
}

@media (max-width:820px){
  .lab-brand{min-width:0}
  .lab-brand-logo{width:clamp(146px,34vw,192px)}
  .lab-nav-actions{gap:5px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .theme-toggle,.lab-cart-trigger,.lab-menu-trigger{width:40px;min-width:40px;height:40px;min-height:40px;padding:0;border-radius:13px}
  .lab-nav-actions .language-trigger{display:inline-flex;gap:0}
  .lab-nav-actions .language-trigger .nav-svg,.lab-nav-actions .language-trigger>span{display:none}
  .lab-nav-actions .language-trigger strong{font-size:9px}
  .lab-nav-actions .theme-toggle{font-size:14px}
  .language-menu{position:fixed;top:calc(var(--mobile-menu-top,106px) + 7px);right:10px;width:min(220px,calc(100vw - 20px));border-color:rgba(255,255,255,.13);background:#0b1035;color:#fff;box-shadow:0 24px 70px rgba(0,0,0,.4)}
  html[dir="rtl"] .language-menu{right:auto;left:10px}
  .language-menu button{color:#fff}
  .language-menu button:hover,.language-menu button.is-active{background:rgba(255,255,255,.09);color:var(--v3-gold)}
}

@media (max-width:560px){
  .lab-nav-shell{min-height:68px}
  .lab-brand-logo{width:132px;max-height:48px}
  .lab-nav-actions{gap:4px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .theme-toggle,.lab-cart-trigger,.lab-menu-trigger{width:37px;min-width:37px;height:37px;min-height:37px;border-radius:12px}
  .lab-cart-trigger .cart-icon{width:17px;height:17px}
  .lab-cart-trigger b{top:-5px;right:-5px;min-width:19px;height:19px;padding:0 4px;border-width:2px;font-size:7px}
  .lab-menu-trigger i{width:16px}
  .lab-mobile-menu{padding:8px}
  .lab-mobile-menu .mobile-menu-inner{max-height:calc(100dvh - var(--mobile-menu-top,68px) - 16px);padding:12px;border-radius:22px}
  .mobile-nav-links{gap:7px}
  .lab-mobile-menu .mobile-nav-links a{min-height:53px;padding:10px 12px;border-radius:14px;font-size:12px}
  .mobile-preferences{grid-template-columns:1fr}
  .mobile-theme-button{width:100%;min-width:0}
  .mobile-contact-actions{grid-template-columns:1fr}
  .mobile-call-button,.lab-mobile-menu .mobile-wa-button{min-height:48px}
}

@media (max-width:390px){
  .lab-brand-logo{width:112px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .theme-toggle,.lab-cart-trigger,.lab-menu-trigger{width:35px;min-width:35px;height:35px;min-height:35px}
  .lab-nav-actions{gap:3px}
  .mobile-nav-links{grid-template-columns:1fr}
  .mobile-nav-links a:last-child{grid-column:auto}
}

@media (max-width:780px){
  .modal-backdrop{
    align-items:flex-end;
    justify-content:center;
    padding:8px 8px 0;
    overflow:hidden;
  }
  .product-modal{
    width:100%;
    height:min(94dvh,920px);
    max-height:94dvh;
    display:flex;
    flex-direction:column;
    overflow:hidden!important;
    border:1px solid rgba(255,255,255,.18);
    border-bottom:0;
    border-radius:25px 25px 0 0;
    box-shadow:0 -24px 80px rgba(0,0,0,.34);
  }
  .modal-close{
    position:absolute;
    top:12px;
    right:12px;
    width:43px;
    height:43px;
    border:1px solid rgba(255,255,255,.48);
    background:var(--v3-gold);
    color:var(--v3-navy);
    box-shadow:0 12px 30px rgba(0,0,0,.22);
  }
  html[dir="rtl"] .modal-close{right:auto;left:12px}
  .modal-visual,.modal-visual.is-photo-fill{
    flex:0 0 clamp(250px,38dvh,340px);
    min-height:0!important;
    max-height:none!important;
    height:auto;
    padding:0!important;
    overflow:hidden;
    background:#edf0ed;
  }
  .modal-visual img,.modal-visual.is-photo-fill img{
    width:100%;
    height:100%;
    min-height:0!important;
    max-height:none!important;
    padding:0!important;
    border-radius:0;
    object-fit:cover!important;
  }
  .modal-visual>span{top:13px;left:13px;max-width:calc(100% - 72px);padding:8px 11px;font-size:7px}
  html[dir="rtl"] .modal-visual>span{right:13px;left:auto}
  .modal-photo-note{right:10px;bottom:10px;left:10px;padding:8px 10px;border-radius:13px;font-size:8px;line-height:1.35}
  .modal-photo-note i{flex:0 0 27px;width:27px;height:27px;font-size:8px}
  .modal-copy{
    flex:1 1 auto;
    min-height:0;
    max-height:none!important;
    overflow-y:auto!important;
    padding:25px 18px calc(24px + env(safe-area-inset-bottom));
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
  }
  .modal-heading{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:start;gap:13px}
  .modal-heading h2{margin-top:6px;font-size:clamp(35px,10vw,48px);line-height:.9;overflow-wrap:anywhere}
  .modal-price-block{padding-top:2px}
  .modal-price-block>strong{font-size:27px;white-space:nowrap}
  .modal-story{margin:20px 0;font-size:13px;line-height:1.65}
  .modal-specs{margin-bottom:19px}
  .modal-specs span{min-width:0;padding:12px}
  .modal-specs b{overflow-wrap:anywhere;font-size:10px}
  .option-block{margin-top:20px}
  .modal-colors{gap:7px}
  .color-choice{min-height:43px;padding:7px 10px}
  .custom-color-box{padding:15px;border-radius:16px}
  .custom-color-action{grid-template-columns:1fr;gap:7px}
  .custom-color-action input,.custom-color-action button,.modal-select-grid select{min-height:48px;font-size:16px}
  .modal-select-grid{grid-template-columns:1fr;gap:10px}
  .modal-stock-line{display:grid;gap:5px;padding:13px 0;font-size:9px}
  .modal-actions{position:sticky;z-index:4;bottom:calc(-24px - env(safe-area-inset-bottom));grid-template-columns:1fr 1fr;gap:8px;margin:22px -18px calc(-24px - env(safe-area-inset-bottom));padding:13px 18px calc(13px + env(safe-area-inset-bottom));border-top:1px solid var(--line);background:color-mix(in srgb,var(--surface) 94%,transparent);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
  .quantity-control{grid-column:1/-1;justify-self:stretch;display:grid;grid-template-columns:48px 1fr 48px}
  .quantity-control button,.quantity-control span{width:auto;height:45px}
  .modal-actions .button{min-height:50px;padding-inline:12px;border-radius:14px;font-size:10px}
  .modal-actions .modal-wa{grid-column:auto}
}

@media (max-width:460px){
  .product-modal{height:96dvh;max-height:96dvh}
  .modal-visual,.modal-visual.is-photo-fill{flex-basis:clamp(230px,34dvh,300px)}
  .modal-heading h2{font-size:36px}
  .modal-price-block>strong{font-size:24px}
  .modal-actions{grid-template-columns:1fr}
  .modal-actions .modal-wa{grid-column:auto}
  .quantity-control{grid-column:auto}
}

@media (max-width:560px){
  button,a,.v3-button,.button,.product-choose,.product-quick{touch-action:manipulation}
  .v3-button,.button{min-height:50px;border-radius:14px}
  .v3-product-grid .product-action-row{grid-template-columns:minmax(0,1fr) 48px;gap:8px}
  .v3-product-grid .product-choose{min-height:48px;border-radius:13px}
  .v3-product-grid .product-quick{width:48px;min-width:48px;height:48px;border-radius:13px}
  .lab-floating-wa{right:14px;bottom:calc(14px + env(safe-area-inset-bottom));width:54px;height:54px;padding:0;justify-content:center}
  .lab-floating-wa span{display:none}
}

body.mobile-nav-open{touch-action:auto}
.mobile-theme-button{position:relative}
.mobile-theme-button .theme-sun,.mobile-theme-button .theme-moon{position:absolute;left:12px;grid-area:auto}
.mobile-theme-button b{margin-left:21px}
html[dir="rtl"] .mobile-theme-button .theme-sun,html[dir="rtl"] .mobile-theme-button .theme-moon{right:12px;left:auto}
html[dir="rtl"] .mobile-theme-button b{margin-right:21px;margin-left:0}
@media (max-width:780px){
  .modal-visual img{padding:14px!important;object-fit:contain!important}
  .modal-visual.is-photo-fill img{padding:0!important;object-fit:cover!important}
  .modal-actions{bottom:0}
}

@media (max-width:1120px){
  .lab-mobile-menu{
    position:absolute;
    top:100%;
    right:0;
    bottom:auto;
    left:0;
    height:calc(100dvh - 72px);
  }
  .lab-mobile-menu .mobile-menu-inner{max-height:calc(100dvh - 96px)}
}
@media (max-width:560px){
  .lab-mobile-menu{height:calc(100dvh - 68px)}
  .lab-mobile-menu .mobile-menu-inner{max-height:calc(100dvh - 84px)}
}

@media (max-width:780px){
  .modal-actions{
    position:static;
    margin:22px 0 0;
    padding:0;
    border-top:0;
    background:transparent;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
}
@media (max-width:1120px){
  .lab-mobile-menu .mobile-call-button{
    min-height:50px;
    display:flex!important;
    align-items:center;
    justify-content:center;
    gap:9px;
    margin:0;
    padding:0 13px;
    border:0;
    border-radius:15px;
    background:#fff;
    color:var(--v3-navy)!important;
    font-family:var(--sans);
    font-size:11px;
    font-weight:900;
    line-height:1.2;
  }
  .lab-mobile-menu .mobile-call-button::after{display:none}
}

@media (max-width:820px){
  .language-menu button{background:transparent!important;color:rgba(255,255,255,.82)!important}
  .language-menu button:hover,.language-menu button.is-active{background:rgba(255,255,255,.09)!important;color:var(--v3-gold)!important}
  .language-menu button>span{border-color:rgba(255,255,255,.15)}
  .lab-menu-trigger{position:relative;display:grid}
  .lab-menu-trigger i{position:absolute;top:50%;left:50%;width:16px;height:2px;margin:-1px 0 0 -8px;border-radius:5px;transform-origin:center}
  .lab-menu-trigger i:first-child{transform:translateY(-3px)}
  .lab-menu-trigger i:last-child{transform:translateY(3px)}
  .lab-menu-trigger.is-open i:first-child{transform:rotate(45deg)}
  .lab-menu-trigger.is-open i:last-child{transform:rotate(-45deg)}
}

:root{--v5-cobalt:#2357ff;--v5-electric:#7447ff;--v5-ink:#060a26;--v5-ice:#f5f7ff}
.v3-hero-main,.v3-hero-float,.v3-category-card,.v3-tile,.v3-boutique-gallery figure,.v5-gallery-grid figure{transform:translateZ(0)}
.v3-hero-main img,.v3-hero-float img,.v3-category-card img,.v3-tile img,.v3-boutique-gallery img,.v5-gallery-grid img{filter:saturate(1.04) contrast(1.025)}
.v3-hero-main{inset:6px 34px 2px 82px;border-radius:42px 220px 42px 42px;transform:rotate(0);box-shadow:0 45px 120px rgba(0,0,0,.42)}
.v3-hero-main::before{position:absolute;inset:14px;z-index:2;border:1px solid rgba(255,255,255,.28);border-radius:32px 202px 32px 32px;content:"";pointer-events:none}
.v3-hero-main img{object-position:center 58%}
.v3-hero-float{border:5px solid rgba(10,15,48,.92);box-shadow:0 22px 60px rgba(0,0,0,.42),0 0 0 1px rgba(255,255,255,.18)}
.v3-hero-float-a{right:-12px;bottom:22px;width:220px;height:250px;border-radius:28px;transform:rotate(-2deg)}
.v3-hero-float-b{left:0;bottom:48px;width:175px;height:210px;border-radius:28px;transform:rotate(2deg)}
.v3-category-card{min-height:285px;border-radius:28px;box-shadow:0 16px 45px rgba(13,21,63,.14)}
.v3-category-card::before{position:absolute;inset:10px;z-index:1;border:1px solid rgba(255,255,255,.28);border-radius:20px;content:"";pointer-events:none}
.v3-category-card>span{z-index:2;background:linear-gradient(135deg,rgba(5,9,37,.78),rgba(33,32,103,.52));box-shadow:0 12px 30px rgba(0,0,0,.22)}
.v3-showcase{background:radial-gradient(circle at 82% 6%,rgba(116,71,255,.22),transparent 25%),linear-gradient(145deg,#050823,#0a1241 62%,#11195b)}
.v3-tile{border-radius:28px;box-shadow:0 18px 55px rgba(0,0,0,.25)}
.v3-tile::before{position:absolute;inset:10px;z-index:1;border:1px solid rgba(255,255,255,.2);border-radius:20px;content:"";pointer-events:none}
.v3-tile>span{z-index:2;padding:16px;border-radius:18px;background:linear-gradient(90deg,rgba(5,8,33,.78),rgba(5,8,33,.12));backdrop-filter:blur(6px)}
.v3-boutique-gallery figure{border-radius:26px;box-shadow:0 24px 60px rgba(11,19,55,.18)}
.v3-boutique-gallery .v3-shop-main img{object-position:center 58%}
.v5-gallery-grid{display:grid;grid-template-columns:1.25fr .8fr .8fr;grid-auto-rows:300px;gap:14px}
.v5-gallery-grid figure{position:relative;overflow:hidden;margin:0;border:1px solid rgba(24,37,88,.1);border-radius:28px;background:#dfe3ee;box-shadow:0 20px 55px rgba(14,22,56,.14)}
.v5-gallery-grid .v5-gallery-hero{grid-row:span 2}.v5-gallery-grid .v5-gallery-wide{grid-column:span 2}
.v5-gallery-grid img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.7,.2,1)}
.v5-gallery-grid figure:hover img{transform:scale(1.055)}
.v5-gallery-grid figcaption{position:absolute;right:15px;bottom:15px;left:15px;display:grid;gap:4px;padding:15px 16px;border:1px solid rgba(255,255,255,.22);border-radius:17px;background:linear-gradient(135deg,rgba(5,9,37,.8),rgba(24,31,86,.45));color:#fff;backdrop-filter:blur(12px)}
.v5-gallery-grid figcaption small{color:#d7c17c;font-size:8px;font-weight:900;letter-spacing:.16em}.v5-gallery-grid figcaption strong{font-family:var(--serif);font-size:18px;font-weight:400;line-height:1.1}
.lab-inner-stage figure img{object-position:center 58%}
@media(max-width:980px){.v5-gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:270px}.v5-gallery-grid .v5-gallery-hero{grid-column:span 2;grid-row:auto}.v5-gallery-grid .v5-gallery-wide{grid-column:span 2}}
@media(max-width:560px){
 .v3-hero-main{inset:10px 18px 8px 45px;border-radius:26px 150px 26px 26px}.v3-hero-main::before{inset:8px;border-radius:20px 137px 20px 20px}
 .v3-hero-float-a{right:0;width:120px;height:150px}.v3-hero-float-b{left:0;width:98px;height:128px}
 .v3-category-card{min-height:230px;border-radius:20px}.v3-category-card::before{inset:7px;border-radius:14px}.v3-category-card img{object-position:center}
 .v3-tile{border-radius:20px}.v3-tile::before{inset:7px;border-radius:14px}.v3-tile>span{right:12px;bottom:12px;left:12px;padding:13px}
 .v5-gallery-grid{grid-template-columns:1fr;grid-auto-rows:280px;gap:10px}.v5-gallery-grid .v5-gallery-hero,.v5-gallery-grid .v5-gallery-wide{grid-column:auto}.v5-gallery-grid figure{border-radius:20px}.v5-gallery-grid figcaption{right:10px;bottom:10px;left:10px}
}

:root{
  --v6-brand-blue:#2b6fbd;
  --v6-brand-cyan:#34c3cc;
  --v6-brand-navy:#081235;
  --v6-card:#ffffff;
  --v6-soft:#eef4ff;
}

.lab-brand{align-items:center;gap:14px}
.lab-brand-logo{width:min(340px,30vw);max-height:72px;object-fit:contain;object-position:left center;filter:drop-shadow(0 10px 24px rgba(0,0,0,.14))}
.lab-footer .lab-brand-logo{width:min(360px,100%);max-height:82px}
@media (max-width:980px){.lab-brand-logo{width:230px;max-height:60px}}
@media (max-width:640px){.lab-brand-logo{width:175px;max-height:52px}}
@media (max-width:420px){.lab-brand-logo{width:150px;max-height:46px}}

.v6-hero-brand{display:inline-flex;align-items:center;gap:14px;padding:12px 16px;margin:14px 0 6px;border:1px solid rgba(255,255,255,.18);border-radius:20px;background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.04));backdrop-filter:blur(12px);box-shadow:0 18px 40px rgba(2,7,29,.18)}
.v6-hero-brand img{width:54px;height:54px;object-fit:contain;filter:drop-shadow(0 8px 16px rgba(0,0,0,.18))}
.v6-hero-brand strong{display:block;font-size:14px;letter-spacing:.01em;color:#fff}
.v6-hero-brand small{display:block;margin-top:4px;color:rgba(255,255,255,.74);font-size:10px;letter-spacing:.08em;text-transform:uppercase}

.v6-trust-strip{position:relative;z-index:10;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-bottom:-72px;padding:12px;border:1px solid rgba(255,255,255,.7);border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(243,247,255,.96));box-shadow:0 24px 65px rgba(7,11,42,.18);backdrop-filter:blur(18px)}
.v6-trust-strip article{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:14px;min-height:112px;padding:18px 18px;border:1px solid rgba(19,38,96,.08);border-radius:22px;background:linear-gradient(135deg,#fff,rgba(236,243,255,.92));box-shadow:0 12px 24px rgba(13,21,63,.06)}
.v6-trust-icon{width:54px;height:54px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(135deg,var(--v6-brand-blue),#4f64ff 52%,var(--v6-brand-cyan));box-shadow:0 14px 28px rgba(35,87,255,.18);color:#fff;font-size:25px;font-weight:900}
.v6-trust-copy{display:grid;gap:3px}
.v6-trust-copy strong{display:block;font-size:14px;line-height:1.2;color:#0b153e}
.v6-trust-copy small{display:block;font-size:11px;line-height:1.5;color:#5c6889}
.v6-trust-copy b{display:inline-flex;align-items:center;gap:6px;padding:4px 9px;margin-top:6px;width:max-content;border-radius:999px;background:#edf4ff;color:#2047a8;font-size:9px;letter-spacing:.08em;text-transform:uppercase}

.v6-photo-card img{object-position:center center!important}
.v6-photo-card span{background:linear-gradient(115deg,rgba(7,11,42,.82),rgba(7,11,42,.22))!important}
.v6-photo-card span strong{max-width:18ch}
.v6-shop-main img,.v6-boutique-promo img{object-position:center center!important}
.v6-logo-panel{display:flex;align-items:center;justify-content:center;padding:18px;border-radius:22px;border:1px solid rgba(33,53,120,.09);background:linear-gradient(180deg,#fff,rgba(243,247,255,.98));box-shadow:0 16px 34px rgba(11,19,55,.08)}
.v6-logo-panel img{width:min(100%,420px);height:auto;object-fit:contain}
.v6-boutique-grid-enhanced{align-items:stretch}
.v6-boutique-gallery{grid-template-columns:1.1fr .9fr;grid-auto-rows:minmax(180px,1fr)}
.v6-boutique-gallery .v6-logo-panel{grid-column:span 2}

.v6-gallery-note{display:flex;align-items:center;gap:12px;padding:14px 16px;border:1px solid rgba(34,54,122,.1);border-radius:20px;background:linear-gradient(180deg,#fff,#f3f7ff);box-shadow:0 12px 28px rgba(11,19,55,.08)}
.v6-gallery-note img{width:54px;height:54px;object-fit:contain}
.v6-gallery-note div{display:grid;gap:4px}
.v6-gallery-note strong{font-size:13px;color:#081235}
.v6-gallery-note small{color:#5c6889;font-size:10px;line-height:1.45}

.v3-categories{padding-top:170px}
@media (max-width:980px){
  .v6-trust-strip{grid-template-columns:repeat(2,minmax(0,1fr));margin-bottom:-98px}
  .v3-categories{padding-top:200px}
  .v6-boutique-gallery{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .v6-hero-brand{width:100%;padding:11px 13px;border-radius:16px}
  .v6-hero-brand img{width:46px;height:46px}
  .v6-hero-brand strong{font-size:13px}
  .v6-trust-strip{grid-template-columns:1fr;gap:10px;margin-bottom:-178px;padding:10px;border-radius:22px}
  .v6-trust-strip article{min-height:92px;padding:14px 14px;border-radius:18px}
  .v6-trust-icon{width:46px;height:46px;border-radius:15px;font-size:21px}
  .v6-trust-copy strong{font-size:13px}
  .v6-trust-copy small{font-size:10px}
  .v3-categories{padding-top:255px}
  .v6-boutique-gallery{grid-template-columns:1fr;grid-auto-rows:auto}
  .v6-boutique-gallery .v6-logo-panel{grid-column:auto}
}
@media (max-width:420px){
  .v6-trust-strip{margin-bottom:-208px}
  .v3-categories{padding-top:285px}
}
html[data-theme="dark"] .v6-trust-strip{background:linear-gradient(180deg,rgba(18,24,49,.98),rgba(14,20,42,.96));border-color:rgba(255,255,255,.08)}
html[data-theme="dark"] .v6-trust-strip article{background:linear-gradient(180deg,rgba(26,33,64,.96),rgba(16,21,42,.96));border-color:rgba(255,255,255,.06);box-shadow:0 16px 30px rgba(0,0,0,.18)}
html[data-theme="dark"] .v6-trust-copy strong{color:#fff}
html[data-theme="dark"] .v6-trust-copy small{color:#b7c0d8}
html[data-theme="dark"] .v6-trust-copy b{background:rgba(255,255,255,.08);color:#9ac8ff}
html[data-theme="dark"] .v6-logo-panel,html[data-theme="dark"] .v6-gallery-note{background:linear-gradient(180deg,#171c31,#101425);border-color:rgba(255,255,255,.08)}
html[data-theme="dark"] .v6-gallery-note strong{color:#fff}
html[data-theme="dark"] .v6-gallery-note small{color:#b7c0d8}

:root{
  --v7-navy:#06102f;
  --v7-navy-2:#0a1b4f;
  --v7-blue:#2c70bd;
  --v7-cyan:#33b6c3;
  --v7-violet:#5d3df3;
  --v7-gold:#f6c565;
  --v7-paper:#f7f8fc;
  --v7-line:rgba(15,32,84,.11);
  --v7-shadow:0 24px 70px rgba(6,16,47,.16);
}

html{scroll-behavior:smooth}
body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}
img{image-rendering:auto}
button,a{-webkit-tap-highlight-color:transparent}
::selection{background:rgba(51,182,195,.28);color:inherit}

.lab-announcement{
  background:linear-gradient(90deg,#1728a9 0%,#4e35ed 54%,#2666de 100%);
  box-shadow:inset 0 -1px rgba(255,255,255,.12);
}
.lab-announcement .announcement-inner{min-height:38px;gap:20px;padding-block:5px}
.lab-announcement p,.lab-announcement div{font-size:10.5px;line-height:1.4;letter-spacing:.055em}
.lab-announcement p{display:flex;align-items:center;gap:8px}
.lab-announcement p::before{width:8px;height:8px;flex:0 0 8px;border:2px solid rgba(255,255,255,.7);border-radius:50%;background:#d9ff42;box-shadow:0 0 0 4px rgba(217,255,66,.14);content:""}
.lab-announcement div{display:flex;align-items:center;gap:17px}
.lab-announcement div span,.lab-announcement div a{white-space:nowrap;color:rgba(255,255,255,.88)}

.lab-header{
  border-bottom:1px solid rgba(255,255,255,.09);
  background:rgba(6,16,47,.94);
  box-shadow:0 15px 45px rgba(3,8,28,.18);
  backdrop-filter:blur(22px) saturate(1.25);
  -webkit-backdrop-filter:blur(22px) saturate(1.25);
}
.lab-nav-shell{
  display:grid;
  grid-template-columns:minmax(280px,350px) minmax(390px,1fr) auto;
  align-items:center;
  gap:22px;
  min-height:94px;
  padding:10px 0;
}
.v7-brand{display:flex;min-width:0;align-items:center;gap:12px;color:#fff;text-decoration:none}
.v7-brand-mark{width:66px;height:54px;display:grid;place-items:center;flex:0 0 66px;border:1px solid rgba(94,162,242,.22);border-radius:18px;background:linear-gradient(145deg,rgba(94,162,242,.12),rgba(97,212,223,.07));box-shadow:inset 0 1px rgba(255,255,255,.09),0 12px 30px rgba(0,0,0,.12)}
.v7-brand-mark img{display:block;width:58px;height:38px;object-fit:contain;filter:drop-shadow(0 7px 12px rgba(0,0,0,.18))}
.v7-brand-copy{min-width:0;display:grid;gap:2px;line-height:1}
.v7-brand-copy strong{overflow:hidden;color:#c8ebff;font-family:Tahoma,Arial,sans-serif;font-size:14px;font-weight:700;white-space:nowrap;text-overflow:ellipsis}
.v7-brand-copy b{overflow:hidden;color:#fff;font-size:11px;font-weight:900;letter-spacing:.03em;white-space:nowrap;text-overflow:ellipsis}
.v7-brand-copy small{overflow:hidden;color:#61d4df;font-size:7.5px;font-weight:900;letter-spacing:.13em;white-space:nowrap;text-overflow:ellipsis}

.lab-desktop-nav{justify-self:center;align-self:center;gap:4px;padding:6px;border:1px solid rgba(255,255,255,.09);border-radius:20px;background:rgba(255,255,255,.035);box-shadow:inset 0 1px rgba(255,255,255,.04)}
.lab-desktop-nav a{min-width:72px;padding:12px 14px;border-radius:14px;text-align:center;color:rgba(255,255,255,.72);font-size:10px;font-weight:850;letter-spacing:.015em}
.lab-desktop-nav a::before{right:20px;bottom:7px;left:20px;height:2px;background:linear-gradient(90deg,var(--v7-cyan),var(--v7-gold))}
.lab-desktop-nav a:hover,.lab-desktop-nav a.active{background:rgba(255,255,255,.085);color:#fff}
.lab-nav-actions{justify-self:end;gap:7px}
.v3-header-call{min-height:46px;padding:0 16px;border:1px solid rgba(255,255,255,.12);border-radius:15px;background:linear-gradient(135deg,#3e63ff,#6a40f4);box-shadow:0 13px 32px rgba(74,63,244,.27)}
.lab-nav-actions .language-trigger,.lab-nav-actions .nav-icon,.lab-cart-trigger,.lab-menu-trigger{min-width:46px;height:46px;border-radius:15px;background:rgba(255,255,255,.055);box-shadow:inset 0 1px rgba(255,255,255,.05)}
.lab-nav-actions .language-trigger:hover,.lab-nav-actions .nav-icon:hover,.lab-cart-trigger:hover,.lab-menu-trigger:hover{border-color:rgba(97,212,223,.46);background:rgba(255,255,255,.1)}

.v3-hero{overflow:hidden;padding-top:72px;background:radial-gradient(circle at 83% 10%,rgba(81,64,231,.34),transparent 30%),radial-gradient(circle at 4% 76%,rgba(35,104,220,.24),transparent 29%),linear-gradient(135deg,#04091f 0%,#071236 48%,#101a5d 100%)}
.v3-hero-grid{grid-template-columns:minmax(0,.95fr) minmax(520px,1.05fr);gap:62px;min-height:680px;padding-bottom:58px}
.v3-hero h1{margin:17px 0 16px;font-size:clamp(66px,6.45vw,103px);line-height:.89}
.v3-hero-copy>p{max-width:590px;color:rgba(255,255,255,.73);font-size:15px;line-height:1.75}
.v6-hero-brand{max-width:440px;margin:13px 0 4px;padding:11px 14px;border-radius:17px;background:linear-gradient(135deg,rgba(255,255,255,.105),rgba(255,255,255,.035))}
.v6-hero-brand img{width:62px;height:42px;object-fit:contain;filter:none}
.v6-hero-brand strong{font-size:13px}.v6-hero-brand small{font-size:8px;color:#7fe1e9}
.v3-button{min-height:52px;border-radius:15px}
.v3-hero-visual{height:610px}
.v3-hero-main{inset:12px 38px 2px 82px;border-radius:46px 215px 46px 46px;box-shadow:0 44px 100px rgba(0,0,0,.34);transform:none;animation:v7-main-float 7s ease-in-out infinite}
.v3-hero-main::after{background:linear-gradient(180deg,transparent 64%,rgba(4,8,29,.38))}
.v3-hero-main img{object-position:center 59%;filter:none!important;transform:scale(1.015)}
.v3-hero-visual:hover .v3-hero-main img{transform:scale(1.055)}
.v3-hero-float{border-width:6px;border-color:#091235;box-shadow:0 20px 55px rgba(0,0,0,.32),0 0 0 1px rgba(255,255,255,.13)}
.v3-hero-float img{filter:none!important}
.v3-hero-float-a{right:-2px;bottom:16px;width:205px;height:242px;border-radius:28px;transform:rotate(-2deg)}
.v3-hero-float-a img{object-position:center 42%}
.v3-hero-float-b{left:0;bottom:44px;width:176px;height:210px;border-radius:26px;transform:rotate(2deg)}
.v3-hero-float-b img{object-position:center 42%}
.v3-rating-chip{right:8px;top:52px;border-radius:18px;background:rgba(7,18,54,.88)}
.v3-hero-seal{left:18px;top:32px;width:126px;height:126px;background:rgba(7,18,54,.82)}

.v6-trust-strip{
  z-index:12;
  gap:12px;
  margin:0 auto 42px;
  padding:12px;
  border:1px solid rgba(255,255,255,.74);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,247,255,.98));
  box-shadow:0 25px 70px rgba(3,9,34,.25);
  color:#0b153e;
}
.v6-trust-strip article{min-height:124px;gap:13px;padding:18px 16px;border:1px solid rgba(28,58,132,.09);border-radius:21px;background:linear-gradient(145deg,#fff,#f0f5ff);box-shadow:0 10px 26px rgba(9,27,76,.07)}
.v6-trust-icon{width:52px;height:52px;border-radius:17px;background:linear-gradient(145deg,#306fe8,#5b47ee 56%,#32bbc7);font-size:22px}
.v6-trust-copy{min-width:0;gap:4px}
.v6-trust-copy strong{font-size:13px;line-height:1.26}
.v6-trust-copy small{font-size:10px;line-height:1.55}
.v6-trust-copy b{padding:5px 9px;margin-top:5px;background:#e8f2ff;color:#2858b9;font-size:7.5px;letter-spacing:.11em}
.v3-categories{padding-top:94px;background:linear-gradient(180deg,#f5f7fc,#fff)}

.v3-hero-main img,.v3-hero-float img,.v3-category-card img,.v3-tile img,.v3-boutique-gallery img,.v5-gallery-grid img,.lab-inner-stage img,.v3-location-photo img{filter:none!important}
.v3-category-card{min-height:310px;border:1px solid rgba(14,35,91,.08);border-radius:26px;background:#dfe7f2;box-shadow:0 18px 45px rgba(7,24,69,.12)}
.v3-category-card::before{border-color:rgba(255,255,255,.36)}
.v3-category-card>span{right:14px;bottom:14px;left:14px;padding:15px 16px;border:1px solid rgba(255,255,255,.21);border-radius:17px;background:linear-gradient(125deg,rgba(5,14,45,.88),rgba(18,32,87,.48));backdrop-filter:blur(10px)}
.v3-category-card img{transform:scale(1.01);transition:transform .75s cubic-bezier(.2,.75,.2,1)}
.v3-category-card:hover img{transform:scale(1.055)}
.v3-category-card:nth-child(1) img{object-position:center 45%}
.v3-category-card:nth-child(2) img{object-position:center 43%}
.v3-category-card:nth-child(3) img{object-position:center 43%}
.v3-category-card:nth-child(4) img{object-position:center 46%}
.v3-category-card:nth-child(5) img{object-position:center 58%}
.v3-category-card:nth-child(6) img{object-position:center 58%}
.v3-tile,.v3-boutique-gallery figure,.v5-gallery-grid figure{border:1px solid rgba(255,255,255,.16);box-shadow:0 22px 56px rgba(6,16,47,.16)}
.v3-tile img,.v3-boutique-gallery img,.v5-gallery-grid img{object-position:center 48%;transform:scale(1.002)}
.v3-tile:hover img,.v5-gallery-grid figure:hover img{transform:scale(1.045)}
.v6-logo-panel img{filter:none!important}

.lab-inner-hero{background:radial-gradient(circle at 82% 7%,rgba(78,63,234,.28),transparent 30%),linear-gradient(135deg,#04091f,#07153e 60%,#112261)}
.lab-inner-stage figure{border-radius:34px;box-shadow:0 34px 90px rgba(0,0,0,.35)}
.lab-inner-stage figure img{object-position:center 45%;filter:none!important}
.lab-inner-caption{border-radius:17px;background:rgba(5,15,48,.84)}
.lab-category-switcher{background:linear-gradient(180deg,#f7f9fd,#fff)}
.lab-category-rail{gap:13px}
.lab-category-pill{min-height:166px;border:1px solid rgba(20,43,104,.09);border-radius:24px;background:#fff;box-shadow:0 16px 40px rgba(9,28,78,.09)}
.lab-category-pill img{filter:none!important;object-position:center 48%}
.lab-category-pill:hover{border-color:rgba(51,182,195,.45);box-shadow:0 22px 52px rgba(9,28,78,.15)}
.lab-brand-section{background:radial-gradient(circle at 90% 8%,rgba(51,182,195,.12),transparent 28%),linear-gradient(145deg,#06102f,#0c1e58);color:#fff}
.lab-brand-section .lab-section-heading p{color:rgba(255,255,255,.62)}
.lab-brand-directory{gap:10px}
.lab-brand-directory .brand-choice{border-color:rgba(255,255,255,.1);border-radius:18px;background:rgba(255,255,255,.055);color:#fff;box-shadow:none}
.lab-brand-directory .brand-choice:hover,.lab-brand-directory .brand-choice.is-active{border-color:rgba(97,212,223,.44);background:rgba(255,255,255,.11)}
.lab-quick-header{border-color:rgba(255,255,255,.1);color:#fff}
.lab-quick-picker{border-color:rgba(255,255,255,.08);background:rgba(255,255,255,.04)}
.lab-catalogue{background:linear-gradient(180deg,#f5f7fc,#fff)}
.collection-toolbar{top:105px;margin-bottom:22px;padding:14px;border:1px solid rgba(19,45,112,.1);border-radius:23px;background:rgba(255,255,255,.95);box-shadow:0 18px 48px rgba(7,25,73,.11)}
.filter-tabs{gap:6px}
.filter-tabs button{min-height:43px;border-radius:12px}
.field-shell{border-radius:13px;background:#f6f8fd}
.results-line{padding:4px 2px 16px}

.lab-contact-info{gap:12px}
.lab-contact-info article{min-height:112px;border-radius:20px}
.lab-contact-info article h3{overflow-wrap:anywhere}
.v7-address-ar{margin:10px 0 0;padding:12px 14px;border:1px solid rgba(28,61,130,.1);border-radius:14px;background:rgba(43,112,189,.06);color:#31507c;font-family:Tahoma,Arial,sans-serif;font-size:13px;line-height:1.75}
.lab-location-card dd a{color:inherit;text-decoration:underline;text-decoration-color:rgba(44,112,189,.32);text-underline-offset:4px}
.v3-location-photo img{object-position:center 43%}

.v7-footer-brand{align-items:flex-start}
.v7-footer-brand .v7-brand-mark{background:rgba(255,255,255,.07)}
.v7-footer-brand .v7-brand-copy strong{font-size:15px}
.v7-footer-brand .v7-brand-copy b{font-size:12px}
.v7-footer-brand .v7-brand-copy small{font-size:8px}

@keyframes v7-main-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.reveal{transition-duration:.72s}
.v3-button,.button,.lab-category-pill,.v3-category-card,.v3-tile,.product-card{transition-timing-function:cubic-bezier(.2,.75,.2,1)}

@media(max-width:1180px){
  .lab-nav-shell{grid-template-columns:minmax(240px,300px) 1fr auto;gap:12px}
  .v7-brand-mark{width:58px;height:50px;flex-basis:58px}.v7-brand-mark img{width:52px}
  .v7-brand-copy strong{font-size:12px}.v7-brand-copy b{font-size:9px}.v7-brand-copy small{font-size:6.5px}
  .lab-desktop-nav a{min-width:62px;padding-inline:10px;font-size:9px}
  .v3-header-call span{display:none}
  .v3-header-call{width:46px;padding:0;justify-content:center}
  .v3-hero-grid{grid-template-columns:minmax(0,1fr) minmax(460px,.95fr);gap:35px}
  .v6-trust-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:980px){
  .lab-announcement .announcement-inner{min-height:34px;justify-content:center}
  .lab-announcement p{font-size:9px;text-align:center}
  .lab-announcement p span{display:none}
  .lab-announcement .announcement-inner>div{display:none}
  .lab-nav-shell{display:flex;min-height:74px;padding:9px 0;gap:7px}
  .v7-brand{margin-right:auto;gap:8px}
  .v7-brand-mark{width:49px;height:44px;flex-basis:49px;border-radius:14px}.v7-brand-mark img{width:45px;height:31px}
  .v7-brand-copy strong{font-size:10px}.v7-brand-copy b{font-size:7.5px}.v7-brand-copy small{font-size:5.7px}
  .lab-nav-actions{gap:5px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .theme-toggle,.lab-cart-trigger,.lab-menu-trigger{width:40px;min-width:40px;height:40px;min-height:40px;border-radius:13px}
  .v3-hero{padding-top:48px}
  .v3-hero-grid{display:grid;grid-template-columns:1fr;gap:34px;min-height:0;padding-bottom:42px}
  .v3-hero-copy{text-align:left}
  .v3-hero h1{max-width:650px;font-size:clamp(58px,12vw,88px)}
  .v3-hero-visual{height:540px}
  .v3-hero-main{inset:0 36px 0 66px}
  .v6-trust-strip{grid-template-columns:repeat(2,minmax(0,1fr));margin-bottom:34px}
  .v3-categories{padding-top:78px}
  .collection-toolbar{top:84px}
}

@media(max-width:640px){
  .v7-brand-copy strong{display:none}.v7-brand-copy b{max-width:105px;font-size:7px}.v7-brand-copy small{max-width:105px;font-size:5.3px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .theme-toggle,.lab-cart-trigger,.lab-menu-trigger{width:38px;min-width:38px;height:38px;min-height:38px}
  .lab-nav-actions .language-trigger{display:inline-flex!important}
  .v3-hero{padding-top:34px}
  .v6-hero-brand{width:auto;max-width:100%;gap:10px;padding:9px 11px}.v6-hero-brand img{width:48px;height:32px}.v6-hero-brand strong{font-size:11px}.v6-hero-brand small{font-size:6.5px}
  .v3-hero h1{font-size:clamp(50px,15.4vw,70px);letter-spacing:-.065em}
  .v3-hero h2{font-size:17px;line-height:1.4}
  .v3-hero-copy>p{font-size:13px;line-height:1.65}
  .v3-hero-actions{display:grid;grid-template-columns:1fr;gap:9px;margin-top:24px}.v3-button{width:100%;justify-content:center}
  .v3-hero-points{display:grid;grid-template-columns:1fr 1fr;gap:11px;margin-top:22px}.v3-hero-points span:last-child{grid-column:1/-1}
  .v3-hero-visual{height:405px}
  .v3-hero-main{inset:0 22px 0 38px;border-radius:28px 135px 28px 28px;animation:none}
  .v3-hero-main img{object-position:center 58%;transform:scale(1.005)}
  .v3-hero-float-a{right:0;bottom:9px;width:118px;height:142px;border-width:4px;border-radius:18px}
  .v3-hero-float-b{left:0;bottom:34px;width:98px;height:122px;border-width:4px;border-radius:18px}
  .v3-rating-chip{right:0;top:25px;padding:10px 12px;border-radius:13px}.v3-rating-chip strong{font-size:23px}.v3-rating-chip span{font-size:8px}.v3-rating-chip small{font-size:6px}
  .v3-hero-seal{left:0;top:12px;width:86px;height:86px}.v3-hero-seal strong{font-size:13px}.v3-hero-seal span,.v3-hero-seal small{font-size:4.8px}
  .v6-trust-strip{grid-template-columns:1fr;gap:9px;margin:0 auto 26px;padding:9px;border-radius:21px}
  .v6-trust-strip article{min-height:90px;grid-template-columns:45px 1fr;padding:13px;border-radius:16px}.v6-trust-icon{width:45px;height:45px;border-radius:14px;font-size:19px}.v6-trust-copy strong{font-size:12px}.v6-trust-copy small{font-size:9.2px}.v6-trust-copy b{font-size:6.6px}
  .v3-categories{padding-top:66px}
  .v3-category-grid{gap:11px}.v3-category-card{min-height:245px;border-radius:20px}.v3-category-card>span{right:9px;bottom:9px;left:9px;padding:12px;border-radius:14px}
  .lab-inner-hero{padding-top:42px}.lab-inner-stage figure{border-radius:23px}
  .lab-category-rail{display:grid;grid-template-columns:1fr;gap:10px}.lab-category-pill{min-height:145px;border-radius:19px}
  .collection-toolbar{top:76px;border-radius:19px}
  .v7-address-ar{font-size:12px}
  .lab-contact-info article{min-height:104px}
}

@media(max-width:390px){
  .v7-brand-copy{display:none}
  .v7-brand-mark{width:45px;height:40px;flex-basis:45px}.v7-brand-mark img{width:41px}
  .lab-nav-actions .language-trigger,.lab-nav-actions .theme-toggle,.lab-cart-trigger,.lab-menu-trigger{width:35px;min-width:35px;height:35px;min-height:35px}
  .v3-hero h1{font-size:47px}
  .v3-hero-visual{height:375px}
}

html[data-theme="dark"] .v3-categories,html[data-theme="dark"] .lab-category-switcher,html[data-theme="dark"] .lab-catalogue{background:#0f1427}
html[data-theme="dark"] .v6-trust-strip{border-color:rgba(255,255,255,.08);background:linear-gradient(180deg,#161d36,#10162b)}
html[data-theme="dark"] .v6-trust-strip article{border-color:rgba(255,255,255,.07);background:linear-gradient(145deg,#1b2441,#141b32)}
html[data-theme="dark"] .v3-category-card{border-color:rgba(255,255,255,.07);background:#151c32}

@media(prefers-reduced-motion:reduce){.v3-hero-main{animation:none}.v3-category-card img,.v3-tile img,.v5-gallery-grid img{transition:none}}
.v7-location-address{max-width:620px;margin:10px 0 4px;color:#263e6d;font-size:14px;font-weight:750;line-height:1.6}
.v3-contact-meta a{color:inherit;text-decoration:none}
html[data-theme="dark"] .v7-location-address{color:#c5d0e7}

:root{
  --v8-ink:#0b1433;
  --v8-ink-2:#172247;
  --v8-muted:#586683;
  --v8-soft:#eef3fc;
  --v8-surface:#ffffff;
  --v8-surface-2:#f7f9fd;
  --v8-line:rgba(17,35,85,.12);
  --v8-blue:#3568f4;
  --v8-cyan:#42c8d1;
  --v8-gold:#f6c565;
  --v8-shadow:0 22px 58px rgba(6,19,56,.12);
}

html[data-theme="light"]{
  --paper:#f4f7fc;
  --paper-deep:#eaf0f9;
  --surface:#ffffff;
  --surface-2:#f6f8fc;
  --surface-3:#eaf0f8;
  --ink:#0b1433;
  --muted:#586683;
  --soft-muted:#7b87a2;
  --line:rgba(17,35,85,.12);
  --line-strong:rgba(17,35,85,.22);
  color-scheme:light;
}
html[data-theme="dark"]{
  --paper:#090f20;
  --paper-deep:#0d1529;
  --surface:#151e35;
  --surface-2:#1a2540;
  --surface-3:#22304c;
  --ink:#f7f9ff;
  --muted:#b5bfd3;
  --soft-muted:#8f9bb4;
  --line:rgba(226,234,255,.12);
  --line-strong:rgba(226,234,255,.22);
  color-scheme:dark;
}
body{background:var(--paper);color:var(--ink)}
body,button,input,select,textarea{font-feature-settings:"kern" 1,"liga" 1}
p{color:var(--muted)}

.lab-section-heading h2,.lab-catalogue-head h2,.v3-section-head h2,.v3-showcase-head h2,
.v3-boutique-copy h2,.v3-reviews-head h2,.v3-contact-card h2,.request-panel h2,
.lab-location-card h2,.lab-visit-section h2,.lab-service-intro h2,.lab-contact-info h2{
  color:var(--ink);
  text-wrap:balance;
}
.lab-section-heading p,.v3-section-head>p,.v3-boutique-copy>p,.lab-catalogue-head p,
.lab-location-card p,.lab-visit-section p,.request-panel p{color:var(--muted)}
.lab-section-code,.v3-overline,.eyebrow{color:#a26d13}
html[data-theme="dark"] .lab-section-code,
html[data-theme="dark"] .v3-overline,
html[data-theme="dark"] .eyebrow{color:#ffd36d}

.lab-category-switcher{background:linear-gradient(180deg,#f5f8fe 0%,#ffffff 100%);color:var(--v8-ink)}
.lab-category-switcher .lab-section-heading h2{color:#0b1433}
.lab-category-switcher .lab-section-heading p{color:#5a6782}
.lab-category-pill{
  isolation:isolate;
  overflow:hidden;
  color:#0b1433!important;
  border-color:rgba(24,48,111,.12)!important;
  background:linear-gradient(145deg,#ffffff 0%,#f5f8ff 100%)!important;
  box-shadow:0 18px 48px rgba(7,23,67,.10)!important;
}
.lab-category-pill::before{
  position:absolute;inset:0;z-index:-1;content:"";
  background:radial-gradient(circle at 84% 18%,rgba(66,200,209,.14),transparent 28%);
  opacity:.75;transition:opacity .3s ease;
}
.lab-category-pill>span{color:#7886a7!important}
.lab-category-pill small{color:#5269a4!important}
.lab-category-pill strong{color:#101936!important;text-shadow:none!important}
.lab-category-pill>b{border-color:rgba(38,75,170,.22)!important;color:#315fde!important;background:#fff!important}
.lab-category-pill:hover{
  color:#07102c!important;
  border-color:rgba(54,104,244,.42)!important;
  background:linear-gradient(135deg,#f1f6ff,#e8f9fb)!important;
  box-shadow:0 26px 64px rgba(7,23,67,.16)!important;
}
.lab-category-pill:hover::before{opacity:1}
.lab-category-pill:hover strong{color:#07102c!important}
.lab-category-pill:hover small{color:#3157a9!important}
.lab-category-pill:hover>b{background:#101936!important;color:#fff!important;border-color:#101936!important}

html[data-theme="dark"] .lab-category-switcher{
  background:radial-gradient(circle at 10% 0,rgba(53,104,244,.12),transparent 26%),linear-gradient(180deg,#0b1123,#0f172c);
  color:#fff;
}
html[data-theme="dark"] .lab-category-switcher .lab-section-heading h2{color:#f8faff}
html[data-theme="dark"] .lab-category-switcher .lab-section-heading p{color:#b7c1d5}
html[data-theme="dark"] .lab-category-pill{
  color:#fff!important;
  border-color:rgba(226,234,255,.10)!important;
  background:linear-gradient(145deg,#192441,#111a31)!important;
  box-shadow:0 22px 60px rgba(0,0,0,.24)!important;
}
html[data-theme="dark"] .lab-category-pill::before{background:radial-gradient(circle at 84% 18%,rgba(66,200,209,.16),transparent 30%)}
html[data-theme="dark"] .lab-category-pill>span{color:#8592ae!important}
html[data-theme="dark"] .lab-category-pill small{color:#88dbe2!important}
html[data-theme="dark"] .lab-category-pill strong{color:#f8faff!important}
html[data-theme="dark"] .lab-category-pill>b{border-color:rgba(145,169,228,.26)!important;color:#a9c9ff!important;background:rgba(255,255,255,.045)!important}
html[data-theme="dark"] .lab-category-pill:hover{
  border-color:rgba(66,200,209,.42)!important;
  background:linear-gradient(145deg,#213052,#17223c)!important;
}
html[data-theme="dark"] .lab-category-pill:hover strong{color:#fff!important}
html[data-theme="dark"] .lab-category-pill:hover small{color:#8ee9ef!important}
html[data-theme="dark"] .lab-category-pill:hover>b{background:#42c8d1!important;color:#07102c!important;border-color:#42c8d1!important}

.lab-brand-section .lab-section-heading h2,.lab-brand-section .lab-section-heading p,
.lab-brand-section .lab-section-code,.lab-quick-header h3,.lab-quick-header .eyebrow{color:#fff}
.lab-brand-section .lab-section-heading p{color:rgba(235,241,255,.72)}
.lab-brand-directory .brand-choice{color:#f7f9ff!important}
.lab-brand-directory .brand-choice-bottom small{color:rgba(232,240,255,.68)!important}
.lab-brand-directory .brand-choice-logo{color:#fff!important}
.lab-brand-directory .brand-choice-count{color:#d9e4ff!important}
.lab-quick-picker .quick-model-card{
  color:#0b1433!important;
  border:1px solid rgba(255,255,255,.12)!important;
  background:#fff!important;
  box-shadow:0 16px 38px rgba(0,0,0,.18)!important;
}
.lab-quick-picker .quick-model-card-copy strong{color:#0b1433!important}
.lab-quick-picker .quick-model-card-copy small{color:#315cb8!important}
.lab-quick-picker .quick-model-card-copy em{color:#61708d!important}
html[data-theme="dark"] .lab-quick-picker .quick-model-card{
  color:#fff!important;
  border-color:rgba(255,255,255,.10)!important;
  background:#151f38!important;
}
html[data-theme="dark"] .lab-quick-picker .quick-model-card-copy strong{color:#fff!important}
html[data-theme="dark"] .lab-quick-picker .quick-model-card-copy small{color:#7edce4!important}
html[data-theme="dark"] .lab-quick-picker .quick-model-card-copy em{color:#aeb9cf!important}

.lab-catalogue{background:linear-gradient(180deg,#f5f8fd,#fff);color:#0b1433}
.lab-catalogue .lab-catalogue-head h2{color:#0b1433}
.lab-catalogue .lab-section-code{color:#9a6814}
.collection-toolbar{
  color:#0b1433!important;
  border:1px solid rgba(20,44,103,.12)!important;
  background:rgba(255,255,255,.94)!important;
  box-shadow:0 18px 46px rgba(7,23,67,.10)!important;
}
.filter-tabs button{color:#4f5d79!important;background:transparent!important}
.filter-tabs button:hover{color:#0b1433!important;background:#edf3ff!important}
.filter-tabs button.active{color:#fff!important;background:#315ee8!important;box-shadow:0 9px 24px rgba(49,94,232,.22)}
.filter-tabs button small{color:inherit!important;opacity:.82}
.field-shell{border-color:rgba(24,48,111,.13)!important;background:#f6f8fc!important;color:#0b1433!important}
.field-shell>span{color:#5270bc!important}
.field-shell input,.field-shell select{color:#0b1433!important;background:transparent!important}
.field-shell input::placeholder{color:#7a86a1!important;opacity:1}
.results-line{color:#65718b}
.results-line strong{color:#0b1433}
.results-line button{color:#315ee8}

html[data-theme="dark"] .lab-catalogue{background:linear-gradient(180deg,#0c1325,#0a1020);color:#fff}
html[data-theme="dark"] .lab-catalogue .lab-catalogue-head h2{color:#fff}
html[data-theme="dark"] .collection-toolbar{
  color:#fff!important;
  border-color:rgba(226,234,255,.10)!important;
  background:rgba(18,27,49,.96)!important;
  box-shadow:0 20px 55px rgba(0,0,0,.26)!important;
}
html[data-theme="dark"] .filter-tabs button{color:#b9c4d9!important}
html[data-theme="dark"] .filter-tabs button:hover{color:#fff!important;background:rgba(255,255,255,.07)!important}
html[data-theme="dark"] .filter-tabs button.active{color:#fff!important;background:#4169f2!important}
html[data-theme="dark"] .field-shell{border-color:rgba(226,234,255,.10)!important;background:#101a31!important;color:#fff!important}
html[data-theme="dark"] .field-shell>span{color:#79cfd8!important}
html[data-theme="dark"] .field-shell input,
html[data-theme="dark"] .field-shell select{color:#f8faff!important;background:#101a31!important}
html[data-theme="dark"] .field-shell option{color:#f8faff;background:#101a31}
html[data-theme="dark"] .field-shell input::placeholder{color:#919db5!important}
html[data-theme="dark"] .results-line{color:#aeb8cc}
html[data-theme="dark"] .results-line strong{color:#fff}
html[data-theme="dark"] .results-line button{color:#83dce4}

.lab-product-card{color:#0b1433!important}
.lab-product-card .lab-product-brand{color:#66728d!important}
.lab-product-card .lab-product-brand strong{color:#0b1433!important}
.lab-product-card h3{color:#0b1433!important}
.lab-product-card .product-reference,.lab-product-card .product-description{color:#64718c!important}
.lab-product-card .product-description{border-color:rgba(18,42,100,.10)!important}
.lab-product-card .stock-pill{color:#1f6b50!important;background:#e8f7f1!important;border-color:#b9e5d4!important}
.lab-product-card .product-choose{background:#101936!important;color:#fff!important}
.lab-product-card .product-quick{border-color:rgba(18,42,100,.16)!important;background:#fff!important;color:#116f51!important}
html[data-theme="dark"] .lab-product-card{color:#fff!important}
html[data-theme="dark"] .lab-product-card .lab-product-brand{color:#aab5ca!important}
html[data-theme="dark"] .lab-product-card .lab-product-brand strong{color:#fff!important}
html[data-theme="dark"] .lab-product-card h3{color:#fff!important}
html[data-theme="dark"] .lab-product-card .product-reference,
html[data-theme="dark"] .lab-product-card .product-description{color:#aeb8cc!important}
html[data-theme="dark"] .lab-product-card .product-description{border-color:rgba(226,234,255,.10)!important}
html[data-theme="dark"] .lab-product-card .stock-pill{color:#9cf0cb!important;background:rgba(28,173,113,.13)!important;border-color:rgba(75,215,157,.22)!important}
html[data-theme="dark"] .lab-product-card .product-choose{background:#4169f2!important;color:#fff!important}
html[data-theme="dark"] .lab-product-card .product-quick{border-color:rgba(226,234,255,.13)!important;background:#151f38!important;color:#67dfa6!important}

.v3-categories,.v3-products,.v3-boutique,.v3-reviews,.v3-contact-cta,.v3-request-wrap,.v3-runway{color:var(--ink)}
.v3-section-head>p,.v3-boutique-copy>p{color:var(--muted)}
.v6-trust-strip article{color:#0b1433!important}
.v6-trust-copy strong{color:#0b1433!important}
.v6-trust-copy small{color:#586683!important}
html[data-theme="dark"] .v6-trust-strip article{color:#fff!important}
html[data-theme="dark"] .v6-trust-copy strong{color:#fff!important}
html[data-theme="dark"] .v6-trust-copy small{color:#b8c2d6!important}
.v3-review-grid blockquote{color:#0b1433}
.v3-review-grid blockquote p{color:#0b1433}
.v3-review-grid blockquote footer{color:#69748d}
html[data-theme="dark"] .v3-review-grid blockquote{color:#fff}
html[data-theme="dark"] .v3-review-grid blockquote p{color:#fff}
html[data-theme="dark"] .v3-review-grid blockquote footer{color:#b7c1d5}

.lab-service-card,.v3-service-card,.lab-visit-note,.lab-location-card,.location-card,
.lab-contact-info article,.request-panel,.v3-request-panel{
  color:#0b1433;
}
.lab-service-card h3,.v3-service-card h3,.lab-visit-note h3,.lab-contact-info article strong,
.request-panel h2,.v3-request-panel h2{color:#0b1433}
.lab-service-card p,.v3-service-card p,.lab-visit-note p,.lab-contact-info article p,
.request-panel p,.v3-request-panel p{color:#63708a}
html[data-theme="dark"] .lab-service-card,
html[data-theme="dark"] .v3-service-card,
html[data-theme="dark"] .lab-visit-note,
html[data-theme="dark"] .lab-location-card,
html[data-theme="dark"] .location-card,
html[data-theme="dark"] .lab-contact-info article,
html[data-theme="dark"] .request-panel,
html[data-theme="dark"] .v3-request-panel{
  color:#fff;
  border-color:rgba(226,234,255,.10);
  background:#151f38;
}
html[data-theme="dark"] .lab-service-card h3,
html[data-theme="dark"] .v3-service-card h3,
html[data-theme="dark"] .lab-visit-note h3,
html[data-theme="dark"] .lab-contact-info article strong,
html[data-theme="dark"] .request-panel h2,
html[data-theme="dark"] .v3-request-panel h2{color:#fff}
html[data-theme="dark"] .lab-service-card p,
html[data-theme="dark"] .v3-service-card p,
html[data-theme="dark"] .lab-visit-note p,
html[data-theme="dark"] .lab-contact-info article p,
html[data-theme="dark"] .request-panel p,
html[data-theme="dark"] .v3-request-panel p{color:#b7c1d5}

.missing-model-form label>span,.checkout-form label>span,.option-block>span{color:#37445f}
.missing-model-form input,.missing-model-form textarea,.checkout-form input,.checkout-form select,.checkout-form textarea,
.option-block select,.custom-color-box input{
  color:#0b1433!important;
  border-color:rgba(21,45,104,.14)!important;
  background:#fff!important;
}
.missing-model-form input::placeholder,.missing-model-form textarea::placeholder,
.checkout-form input::placeholder,.checkout-form textarea::placeholder,.custom-color-box input::placeholder{color:#7a86a0!important;opacity:1}
html[data-theme="dark"] .missing-model-form label>span,
html[data-theme="dark"] .checkout-form label>span,
html[data-theme="dark"] .option-block>span{color:#c4cde0}
html[data-theme="dark"] .missing-model-form input,
html[data-theme="dark"] .missing-model-form textarea,
html[data-theme="dark"] .checkout-form input,
html[data-theme="dark"] .checkout-form select,
html[data-theme="dark"] .checkout-form textarea,
html[data-theme="dark"] .option-block select,
html[data-theme="dark"] .custom-color-box input{
  color:#fff!important;
  border-color:rgba(226,234,255,.12)!important;
  background:#0f182d!important;
}
html[data-theme="dark"] .missing-model-form input::placeholder,
html[data-theme="dark"] .missing-model-form textarea::placeholder,
html[data-theme="dark"] .checkout-form input::placeholder,
html[data-theme="dark"] .checkout-form textarea::placeholder,
html[data-theme="dark"] .custom-color-box input::placeholder{color:#8f9bb3!important}

.product-modal,.cart-panel{color:#0b1433!important;background:#fff!important}
.modal-copy h2,.modal-copy h3,.modal-heading strong,.modal-price-block strong,
.modal-specs strong,.cart-head h2,.cart-item-copy strong,.cart-total strong{color:#0b1433!important}
.modal-story,.modal-specs small,.modal-stock-line,.cart-item-copy small,.cart-item-policy,.cart-total small{color:#64718b!important}
.modal-close,.cart-head button{color:#0b1433!important;background:#f0f4fb!important}
.modal-wa{color:#fff!important;background:#18ad68!important}
.modal-add{color:#fff!important;background:#315ee8!important}
html[data-theme="dark"] .product-modal,
html[data-theme="dark"] .cart-panel{color:#fff!important;background:#111a30!important}
html[data-theme="dark"] .modal-copy h2,
html[data-theme="dark"] .modal-copy h3,
html[data-theme="dark"] .modal-heading strong,
html[data-theme="dark"] .modal-price-block strong,
html[data-theme="dark"] .modal-specs strong,
html[data-theme="dark"] .cart-head h2,
html[data-theme="dark"] .cart-item-copy strong,
html[data-theme="dark"] .cart-total strong{color:#fff!important}
html[data-theme="dark"] .modal-story,
html[data-theme="dark"] .modal-specs small,
html[data-theme="dark"] .modal-stock-line,
html[data-theme="dark"] .cart-item-copy small,
html[data-theme="dark"] .cart-item-policy,
html[data-theme="dark"] .cart-total small{color:#b5bfd3!important}
html[data-theme="dark"] .modal-close,
html[data-theme="dark"] .cart-head button{color:#fff!important;background:#202b45!important}

.language-menu{color:#0b1433!important;background:#fff!important}
.language-menu button{color:#0b1433!important}
.language-menu button:hover,.language-menu button.is-active{color:#244fbe!important;background:#edf3ff!important}
html[data-theme="dark"] .language-menu{color:#fff!important;background:#101a31!important}
html[data-theme="dark"] .language-menu button{color:#eaf0ff!important}
html[data-theme="dark"] .language-menu button:hover,
html[data-theme="dark"] .language-menu button.is-active{color:#7de1e7!important;background:rgba(255,255,255,.07)!important}

.lab-footer{color:#fff}
.lab-footer p,.lab-footer .footer-column a,.lab-footer .footer-column span{color:rgba(236,242,255,.72)}
.lab-footer .footer-column strong{color:#fff}
.lab-footer .footer-column a:hover{color:#80e0e7}

.button,.v3-button,.product-choose,.product-quick,.mobile-filter-toggle,.mobile-filter-apply,
.mobile-filter-reset,.language-menu button,.lab-category-pill,.brand-choice,.quick-model-card{
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease,background-color .24s ease,color .24s ease;
}
.button:hover,.v3-button:hover,.product-choose:hover,.product-quick:hover{transform:translateY(-2px)}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid #5ad8df!important;
  outline-offset:3px!important;
}

@media(max-width:760px){
  .lab-category-pill{grid-template-columns:30px 88px minmax(0,1fr) 40px!important;gap:12px!important;min-height:128px!important;padding:13px!important}
  .lab-category-pill img{width:88px!important;height:88px!important}
  .lab-category-pill strong{font-size:19px!important;line-height:1.08!important}
  .lab-category-pill small{font-size:7px!important}
  .collection-toolbar{border-radius:20px!important}
  .collection-filter-panel{color:#0b1433!important;background:#fff!important}
  html[data-theme="dark"] .collection-filter-panel{color:#fff!important;background:#101a31!important}
  .mobile-filter-toggle{color:#0b1433!important;background:#fff!important}
  .mobile-filter-label small{color:#65718c!important}
  .mobile-filter-label strong,.mobile-filter-result b{color:#0b1433!important}
  html[data-theme="dark"] .mobile-filter-toggle{color:#fff!important;background:#151f38!important}
  html[data-theme="dark"] .mobile-filter-label small{color:#9da9c0!important}
  html[data-theme="dark"] .mobile-filter-label strong,
  html[data-theme="dark"] .mobile-filter-result b{color:#fff!important}
  .mobile-filter-reset{color:#314e99!important;background:#edf3ff!important}
  .mobile-filter-apply{color:#fff!important;background:#315ee8!important}
  .lab-product-card h3{font-size:clamp(27px,8vw,38px)!important}
}

@media(max-width:420px){
  .lab-category-pill{grid-template-columns:24px 76px minmax(0,1fr) 36px!important;gap:9px!important;min-height:112px!important;padding:10px!important}
  .lab-category-pill img{width:76px!important;height:76px!important}
  .lab-category-pill strong{font-size:16px!important}
  .lab-category-pill>b{width:34px!important;height:34px!important}
}

@keyframes v8SoftRise{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
.v3-hero-seal{animation:v8SoftRise 5.5s ease-in-out infinite}
.lab-category-pill img{transition:transform .65s cubic-bezier(.2,.72,.2,1),filter .35s ease}
.lab-category-pill:hover img{transform:scale(1.055)}
@media(prefers-reduced-motion:reduce){
  .v3-hero-seal{animation:none}
  *,*::before,*::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}
}

.brand-choice:disabled{opacity:.28;cursor:not-allowed;filter:grayscale(1);transform:none!important;box-shadow:none!important}
.brand-choice:disabled .brand-choice-count{background:rgba(127,137,165,.15);color:var(--ink-muted,#667085)}
.quick-model-card[hidden]{display:none!important}
.quick-model-controls button:disabled{opacity:.28;cursor:not-allowed;transform:none!important}
.product-grid.products-entering .lab-product-card{animation:catalogueFilterIn .42s cubic-bezier(.2,.72,.2,1) both}
@keyframes catalogueFilterIn{from{opacity:0;transform:translateY(14px) scale(.985)}to{opacity:1;transform:none}}


:root{
  --paper:#eef9fb;
  --paper-deep:#dceff3;
  --surface:#ffffff;
  --surface-2:#f5fbfc;
  --surface-3:#e6f4f7;
  --ink:#12384d;
  --muted:#5f7b89;
  --soft-muted:#7895a1;
  --green:#247fad;
  --green-2:#2ca9bd;
  --green-3:#4cc4cf;
  --acid:#8de2e7;
  --acid-2:#c9f3f5;
  --line:rgba(26,101,137,.14);
  --line-strong:rgba(26,101,137,.28);
  --shadow-sm:0 14px 34px rgba(38,111,139,.10);
  --shadow-md:0 28px 74px rgba(38,111,139,.15);
  --shadow-lg:0 42px 120px rgba(25,91,120,.20);
  --serif:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --sans:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif
}
html[data-theme="dark"]{
  --paper:#102b38;
  --paper-deep:#163845;
  --surface:#183a49;
  --surface-2:#1d4352;
  --surface-3:#245061;
  --ink:#f3fcfd;
  --muted:#bdd4dc;
  --soft-muted:#90b0bc;
  --green:#7bd6e0;
  --green-2:#55c1d1;
  --green-3:#39a9bd;
  --acid:#83e1e6;
  --acid-2:#b8f0f2;
  --line:rgba(223,247,250,.14);
  --line-strong:rgba(223,247,250,.28);
  --shadow-sm:0 18px 42px rgba(0,0,0,.18);
  --shadow-md:0 30px 80px rgba(0,0,0,.27);
  --shadow-lg:0 44px 130px rgba(0,0,0,.38)
}
body{background:linear-gradient(180deg,var(--paper),#f8fcfd 44%,var(--paper));letter-spacing:0}
html[data-theme="dark"] body{background:linear-gradient(180deg,#102b38,#132f3d 44%,#0f2936)}
h1,h2,h3,h4,.v3-hero h1,.lab-inner-copy h1,.lab-section-heading h2,.lab-footer-title h2{font-family:var(--sans);font-style:normal;letter-spacing:-.045em}
h1 em,h2 em,h3 em,.v3-hero h1 em,.lab-inner-copy h1 em,.lab-section-heading h2 em,.lab-footer-title h2 em{font-family:var(--sans);font-style:normal;font-weight:750;color:var(--green-2)}
body::before{opacity:.012}
::selection{background:#9ce7ea;color:#12384d}
:focus-visible{outline-color:#4fc8d2}
.announcement-bar,.lab-announcement{background:linear-gradient(90deg,#2d94b7,#48c2cb);color:#fff}
.announcement-inner strong{color:#fff}
.announcement-inner div{color:rgba(255,255,255,.92)}
.site-header,.lab-header{background:rgba(244,251,252,.94);border-color:rgba(31,119,151,.13);box-shadow:0 8px 28px rgba(30,111,140,.07)}
html[data-theme="dark"] .site-header,html[data-theme="dark"] .lab-header{background:rgba(16,43,56,.94)}
.v7-brand-mark{background:#fff;border:1px solid rgba(40,137,170,.14);box-shadow:0 8px 22px rgba(30,112,143,.10)}
.v7-brand-copy strong,.v7-brand-copy b{color:var(--ink)}
.v7-brand-copy small{color:var(--green-2)}
.desktop-nav,.lab-desktop-nav{background:rgba(255,255,255,.72);border-color:rgba(35,126,160,.12)}
html[data-theme="dark"] .desktop-nav,html[data-theme="dark"] .lab-desktop-nav{background:rgba(255,255,255,.05)}
.desktop-nav a.active,.lab-desktop-nav a.active{background:linear-gradient(135deg,#e3f6f8,#fff);color:#176f98}
html[data-theme="dark"] .desktop-nav a.active,html[data-theme="dark"] .lab-desktop-nav a.active{background:rgba(111,213,224,.14);color:#a9edf1}
.v3-header-call,.button-primary,.v3-button-primary{background:linear-gradient(135deg,#2c94bb,#43c1ca);box-shadow:0 14px 30px rgba(38,148,184,.22);color:#fff}
.v3-header-call:hover,.button-primary:hover,.v3-button-primary:hover{background:linear-gradient(135deg,#247da6,#34acbc)}
.button-accent,.product-choose b,.lab-category-pill>b{background:#8de2e7;color:#12384d}
.button-outline,.v3-button-ghost{border-color:rgba(39,126,159,.25);background:rgba(255,255,255,.55)}
html[data-theme="dark"] .button-outline,html[data-theme="dark"] .v3-button-ghost{background:rgba(255,255,255,.04)}
.v3-hero,.lab-inner-hero{background:radial-gradient(circle at 76% 22%,rgba(91,201,212,.28),transparent 28%),linear-gradient(135deg,#eaf8fa 0%,#d9f1f5 48%,#cbe9ef 100%);color:#12384d}
html[data-theme="dark"] .v3-hero,html[data-theme="dark"] .lab-inner-hero{background:radial-gradient(circle at 76% 22%,rgba(91,201,212,.18),transparent 28%),linear-gradient(135deg,#102c3a,#173b4b 55%,#1b4655);color:#f2fcfd}
.v3-hero p,.v3-hero h2,.lab-inner-copy p,.lab-inner-caption small{color:#587887}
html[data-theme="dark"] .v3-hero p,html[data-theme="dark"] .v3-hero h2,html[data-theme="dark"] .lab-inner-copy p,html[data-theme="dark"] .lab-inner-caption small{color:#c0dbe2}
.v3-kicker,.lab-page-index,.lab-section-code,.v3-overline,.eyebrow{color:#278bab}
.v3-hero-seal{border-color:rgba(36,130,163,.34);background:rgba(255,255,255,.78);color:#176e95}
html[data-theme="dark"] .v3-hero-seal{background:rgba(18,48,61,.82);color:#9be6eb}
.v3-rating-chip{background:rgba(255,255,255,.9);color:#12384d;border:1px solid rgba(38,133,165,.14);box-shadow:0 14px 40px rgba(28,103,134,.14)}
html[data-theme="dark"] .v3-rating-chip{background:rgba(19,49,62,.92);color:#fff}
.v3-rating-chip span{color:#2ca9bd}
.v6-hero-brand{background:rgba(255,255,255,.72);border-color:rgba(33,132,163,.17);box-shadow:0 18px 38px rgba(31,110,139,.12)}
.v6-hero-brand strong{color:#164e67}
.v6-hero-brand small{color:#2b8faa}
html[data-theme="dark"] .v6-hero-brand{background:rgba(255,255,255,.07)}
html[data-theme="dark"] .v6-hero-brand strong{color:#fff}
html[data-theme="dark"] .v6-hero-brand small{color:#9ee8ed}
.v3-hero-main,.v3-hero-float,.lab-inner-stage figure,.v3-tile,.v5-gallery-card,.location-preview{background:#fff;border-color:rgba(30,120,153,.15);box-shadow:0 24px 60px rgba(26,101,130,.16)}
.v3-hero-main img,.v3-hero-float img,.lab-inner-stage figure img,.v3-tile img,.v5-gallery-card img,.location-preview img{filter:none!important}
.v6-trust-strip{background:rgba(255,255,255,.94);border-color:rgba(35,130,161,.14);box-shadow:0 22px 60px rgba(27,102,132,.14)}
.v6-trust-strip article{background:linear-gradient(145deg,#fff,#edf9fa);border-color:rgba(35,130,161,.11)}
.v6-trust-icon{background:linear-gradient(135deg,#2c91b7,#49c3cb);box-shadow:0 12px 28px rgba(38,147,183,.20)}
.v6-trust-copy strong{color:#153f54}
.v6-trust-copy small{color:#66838f}
.v6-trust-copy b{background:#def4f6;color:#247e9d}
html[data-theme="dark"] .v6-trust-strip{background:rgba(19,48,61,.96)}
html[data-theme="dark"] .v6-trust-strip article{background:linear-gradient(145deg,#1a4050,#163543)}
.lab-category-switcher{background:#f5fbfc}
html[data-theme="dark"] .lab-category-switcher{background:#112d3a}
.lab-category-pill{background:#fff;border-color:rgba(36,127,158,.14);box-shadow:0 12px 34px rgba(31,105,133,.08)}
.lab-category-pill small{color:#2a91ae}
.lab-category-pill strong{color:#17465d!important}
.lab-category-pill>span{color:#5b8190}
html[data-theme="dark"] .lab-category-pill{background:#193b49}
html[data-theme="dark"] .lab-category-pill strong{color:#f4fcfd!important}
html[data-theme="dark"] .lab-category-pill small{color:#8be0e7}
.lab-category-pill img{background:#edf7f8}
.lab-collection-section,.products-section,.lab-services-section,.lab-contact-section,.lab-location-section{background:var(--paper)}
.product-card,.lab-product-card{background:var(--surface);border-color:rgba(35,128,160,.14);box-shadow:0 14px 38px rgba(28,101,129,.09)}
.product-card:hover,.lab-product-card:hover{box-shadow:0 24px 60px rgba(28,101,129,.16)}
.product-image,.lab-product-image{background:linear-gradient(145deg,#edf8fa,#fff)}
.product-image img,.lab-product-image img{object-fit:contain!important;padding:14px;filter:none!important}
.product-card h3,.lab-product-card h3,.product-price{color:#153f56!important}
html[data-theme="dark"] .product-card h3,html[data-theme="dark"] .lab-product-card h3,html[data-theme="dark"] .product-price{color:#f6fdfe!important}
.product-description,.product-meta,.product-card small{color:#688490!important}
html[data-theme="dark"] .product-description,html[data-theme="dark"] .product-meta,html[data-theme="dark"] .product-card small{color:#b7d0d8!important}
.stock-pill{background:#daf4f2;color:#1d776f;border-color:#a8e2dc}
.filter-panel,.lab-filter-panel,.search-box,.filter-select,.model-browser,.product-modal-card,.cart-panel,.contact-form-card,.service-card,.location-card,.review-card{background:var(--surface);border-color:rgba(35,128,160,.14);box-shadow:0 18px 48px rgba(28,101,129,.10)}
input,select,textarea{background:var(--surface-2)!important;border-color:rgba(35,128,160,.18)!important;color:var(--ink)!important}
input::placeholder,textarea::placeholder{color:var(--soft-muted)!important}
.language-menu,.mobile-menu,.lab-mobile-menu{background:rgba(245,252,253,.98);border-color:rgba(37,128,160,.15)}
html[data-theme="dark"] .language-menu,html[data-theme="dark"] .mobile-menu,html[data-theme="dark"] .lab-mobile-menu{background:rgba(16,43,56,.99)}
.site-footer,.lab-footer{background:linear-gradient(145deg,#d8f0f4,#eef9fb);color:#143e54}
html[data-theme="dark"] .site-footer,html[data-theme="dark"] .lab-footer{background:linear-gradient(145deg,#102b38,#193d4c);color:#f3fcfd}
.lab-footer-circle{background:linear-gradient(135deg,#2a92b7,#45c0c9);color:#fff}
.footer-column a:hover{color:#218aae}
.footer-social-link{display:flex!important;align-items:center;gap:9px;padding:8px 10px;border:1px solid rgba(35,128,160,.14);border-radius:12px;background:rgba(255,255,255,.52)}
html[data-theme="dark"] .footer-social-link{background:rgba(255,255,255,.05)}
.footer-social-link>span:first-child{width:23px;height:23px;display:grid;place-items:center;border-radius:50%;background:#d8f3f5;color:#207f9f;font-weight:800}
.footer-social-link.is-coming{opacity:.58}
.contact-socials{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.contact-socials a,.contact-socials span{padding:7px 10px;border-radius:999px;background:#e1f5f6;color:#1e7895;font-size:11px;font-weight:750}
.contact-social-arrow{align-self:center;font-size:22px;color:var(--green-2)}
.lab-floating-wa,.floating-whatsapp{background:linear-gradient(135deg,#28aebb,#4bcbd0);box-shadow:0 16px 38px rgba(32,163,177,.28)}
.v5-gallery-card img,.v3-boutique-gallery img,.lab-inner-stage img{object-position:center;filter:none!important}
.config-note{background:#e3f5f7;color:#276f88;border-color:#b9e4e8}
html[data-theme="dark"] .config-note{background:rgba(100,211,220,.10);color:#a8eaf0}
@media(max-width:980px){
  .nav-shell,.lab-nav-shell{gap:14px}
  .v7-brand-copy strong{font-size:15px}
  .v7-brand-copy b{font-size:10px}
}
@media(max-width:640px){
  .container{width:min(100% - 26px,var(--container))}
  .v3-hero,.lab-inner-hero{background:linear-gradient(160deg,#eefafb,#d7eff3)}
  html[data-theme="dark"] .v3-hero,html[data-theme="dark"] .lab-inner-hero{background:linear-gradient(160deg,#102b38,#193f4e)}
  .v3-hero-main img,.v3-hero-float img{object-fit:cover}
  .product-image,.lab-product-image{min-height:300px}
  .product-image img,.lab-product-image img{padding:8px}
  .announcement-inner div span:not(:last-child){display:none}
  .footer-social-link{width:100%}
}

@keyframes lemfnnenFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@keyframes lemfnnenGlow{0%,100%{box-shadow:0 24px 60px rgba(26,101,130,.14)}50%{box-shadow:0 28px 72px rgba(43,164,187,.23)}}
.v3-hero-main{animation:lemfnnenGlow 7s ease-in-out infinite}
.v3-hero-float-a{animation:lemfnnenFloat 7.5s ease-in-out infinite}
.v3-hero-float-b{animation:lemfnnenFloat 8.5s ease-in-out .8s infinite}
.product-card img,.lab-product-card img,.lab-category-pill img,.v5-gallery-card img{transition:transform .55s cubic-bezier(.2,.8,.2,1),filter .35s ease}
.product-card:hover img,.lab-product-card:hover img{transform:scale(1.025)}
.lab-category-pill:hover img,.v5-gallery-card:hover img{transform:scale(1.045)}
@media(prefers-reduced-motion:reduce){.v3-hero-main,.v3-hero-float-a,.v3-hero-float-b{animation:none}}
:root{
  --theme-light-bg:#f4fbfc;
  --theme-light-surface:#ffffff;
  --theme-light-surface-soft:#eaf6f8;
  --theme-light-ink:#12384d;
  --theme-light-heading:#0d3044;
  --theme-light-muted:#557382;
  --theme-light-border:rgba(29,112,145,.18);
  --theme-dark-bg:#0d2733;
  --theme-dark-surface:#143747;
  --theme-dark-surface-soft:#1b4353;
  --theme-dark-ink:#f3fbfd;
  --theme-dark-muted:#bfd6df;
  --theme-accent:#2aaabd;
  --theme-accent-strong:#187fa4;
  color-scheme:light;
}
html[data-theme="dark"]{color-scheme:dark}
html[data-theme="light"] body{background:var(--theme-light-bg);color:var(--theme-light-ink)}
html[data-theme="dark"] body{background:var(--theme-dark-bg);color:var(--theme-dark-ink)}
.reveal{opacity:1!important;transform:none!important;visibility:visible!important}
html[data-theme="light"] .lab-header,
html[data-theme="light"] .site-header{
  background:rgba(247,252,253,.96)!important;
  border-color:rgba(29,112,145,.13)!important;
  box-shadow:0 12px 35px rgba(27,92,118,.09)!important;
  color:var(--theme-light-ink)!important;
}
html[data-theme="dark"] .lab-header,
html[data-theme="dark"] .site-header{
  background:rgba(13,39,51,.96)!important;
  border-color:rgba(178,228,235,.11)!important;
  box-shadow:0 15px 40px rgba(0,0,0,.25)!important;
  color:var(--theme-dark-ink)!important;
}
html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] .lab-desktop-nav a{color:#36596a!important}
html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .desktop-nav a.is-active,
html[data-theme="light"] .lab-desktop-nav a:hover,
html[data-theme="light"] .lab-desktop-nav a.is-active{color:#126f94!important}
html[data-theme="dark"] .desktop-nav a,
html[data-theme="dark"] .lab-desktop-nav a{color:#c9dfe6!important}
html[data-theme="dark"] .desktop-nav a:hover,
html[data-theme="dark"] .desktop-nav a.is-active,
html[data-theme="dark"] .lab-desktop-nav a:hover,
html[data-theme="dark"] .lab-desktop-nav a.is-active{color:#78dce4!important}
html[data-theme="light"] .language-trigger,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .cart-trigger,
html[data-theme="light"] .lab-cart-trigger,
html[data-theme="light"] .menu-trigger,
html[data-theme="light"] .lab-menu-trigger{
  background:#fff!important;
  color:#17435a!important;
  border-color:rgba(29,112,145,.20)!important;
  box-shadow:0 8px 22px rgba(29,112,145,.08)!important;
}
html[data-theme="dark"] .language-trigger,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .cart-trigger,
html[data-theme="dark"] .lab-cart-trigger,
html[data-theme="dark"] .menu-trigger,
html[data-theme="dark"] .lab-menu-trigger{
  background:rgba(255,255,255,.07)!important;
  color:#f4fcfd!important;
  border-color:rgba(201,238,242,.16)!important;
  box-shadow:none!important;
}
html[data-theme="light"] .language-trigger strong,
html[data-theme="light"] .cart-trigger span,
html[data-theme="light"] .lab-cart-trigger span{color:#17435a!important}
html[data-theme="dark"] .language-trigger strong,
html[data-theme="dark"] .cart-trigger span,
html[data-theme="dark"] .lab-cart-trigger span{color:#f4fcfd!important}
html[data-theme="light"] .cart-trigger b,
html[data-theme="light"] .lab-cart-trigger b{
  background:#d7f4f5!important;
  color:#126b87!important;
}
html[data-theme="dark"] .cart-trigger b,
html[data-theme="dark"] .lab-cart-trigger b{
  background:#67d9df!important;
  color:#0b2e3d!important;
}
html[data-theme="light"] .menu-trigger i,
html[data-theme="light"] .lab-menu-trigger i{background:#17435a!important}
html[data-theme="dark"] .menu-trigger i,
html[data-theme="dark"] .lab-menu-trigger i{background:#f4fcfd!important}
html[data-theme="light"] .language-menu{
  background:#fff!important;
  border-color:var(--theme-light-border)!important;
  box-shadow:0 22px 55px rgba(21,74,97,.18)!important;
}
html[data-theme="light"] .language-menu button{color:#17435a!important}
html[data-theme="light"] .language-menu button:hover,
html[data-theme="light"] .language-menu button[aria-checked="true"]{background:#e8f7f8!important;color:#0f7898!important}
html[data-theme="dark"] .language-menu{
  background:#153745!important;
  border-color:rgba(212,241,244,.12)!important;
  box-shadow:0 24px 60px rgba(0,0,0,.35)!important;
}
html[data-theme="dark"] .language-menu button{color:#eaf8fa!important}
html[data-theme="dark"] .language-menu button:hover,
html[data-theme="dark"] .language-menu button[aria-checked="true"]{background:#215162!important;color:#8be5ea!important}
html[data-theme="light"] .lab-inner-hero,
html[data-theme="light"] .v3-hero{
  background:linear-gradient(145deg,#f3fbfc 0%,#dcedf2 54%,#cbe7ed 100%)!important;
  color:var(--theme-light-ink)!important;
}
html[data-theme="dark"] .lab-inner-hero,
html[data-theme="dark"] .v3-hero{
  background:linear-gradient(145deg,#0b2531 0%,#123746 58%,#194a58 100%)!important;
  color:var(--theme-dark-ink)!important;
}
html[data-theme="light"] .lab-inner-copy h1,
html[data-theme="light"] .lab-inner-hero h1,
html[data-theme="light"] .v3-hero h1{
  color:#0d3044!important;
  text-shadow:none!important;
}
html[data-theme="light"] .lab-inner-copy h1 em,
html[data-theme="light"] .lab-inner-hero h1 em,
html[data-theme="light"] .v3-hero h1 em{color:#1f91ac!important}
html[data-theme="dark"] .lab-inner-copy h1,
html[data-theme="dark"] .lab-inner-hero h1,
html[data-theme="dark"] .v3-hero h1{color:#f5fcfd!important}
html[data-theme="dark"] .lab-inner-copy h1 em,
html[data-theme="dark"] .lab-inner-hero h1 em,
html[data-theme="dark"] .v3-hero h1 em{color:#7bdde4!important}
html[data-theme="light"] .lab-inner-copy>p,
html[data-theme="light"] .lab-inner-hero p,
html[data-theme="light"] .v3-hero-copy>p{color:#486b7a!important}
html[data-theme="dark"] .lab-inner-copy>p,
html[data-theme="dark"] .lab-inner-hero p,
html[data-theme="dark"] .v3-hero-copy>p{color:#c4dbe2!important}
html[data-theme="light"] .lab-page-index,
html[data-theme="light"] .v3-kicker,
html[data-theme="light"] .lab-section-code,
html[data-theme="light"] .v3-overline{color:#167f9d!important}
html[data-theme="dark"] .lab-page-index,
html[data-theme="dark"] .v3-kicker,
html[data-theme="dark"] .lab-section-code,
html[data-theme="dark"] .v3-overline{color:#7cdee5!important}
html[data-theme="light"] .button-outline,
html[data-theme="light"] .v3-button-ghost{
  color:#123e55!important;
  background:rgba(255,255,255,.82)!important;
  border-color:rgba(25,112,144,.26)!important;
  box-shadow:0 10px 30px rgba(30,102,128,.08)!important;
}
html[data-theme="light"] .button-outline:hover,
html[data-theme="light"] .v3-button-ghost:hover{
  color:#fff!important;
  background:#187fa4!important;
  border-color:#187fa4!important;
}
html[data-theme="dark"] .button-outline,
html[data-theme="dark"] .v3-button-ghost{
  color:#f2fcfd!important;
  background:rgba(255,255,255,.07)!important;
  border-color:rgba(216,243,246,.24)!important;
}
html[data-theme="dark"] .button-outline:hover,
html[data-theme="dark"] .v3-button-ghost:hover{background:#2aaabd!important;border-color:#2aaabd!important;color:#082b39!important}
html[data-theme="light"] .v3-hero-points,
html[data-theme="light"] .v3-hero-points span,
html[data-theme="light"] .v3-hero-points small{color:#365d70!important}
html[data-theme="dark"] .v3-hero-points,
html[data-theme="dark"] .v3-hero-points span,
html[data-theme="dark"] .v3-hero-points small{color:#c9dfe6!important}
html[data-theme="light"] .v3-hero-points i{color:#1684a2!important;border-color:rgba(22,132,162,.35)!important}
html[data-theme="dark"] .v3-hero-points i{color:#73d9df!important;border-color:rgba(115,217,223,.35)!important}
html[data-theme="light"] .lab-inner-caption{
  background:rgba(255,255,255,.90)!important;
  color:#12384d!important;
  border-color:rgba(29,112,145,.16)!important;
}
html[data-theme="light"] .lab-inner-caption small{color:#567888!important}
html[data-theme="light"] .lab-inner-caption strong{color:#12384d!important}
html[data-theme="dark"] .lab-inner-caption{
  background:rgba(10,35,46,.90)!important;
  color:#f2fbfc!important;
  border-color:rgba(215,242,245,.13)!important;
}
html[data-theme="dark"] .lab-inner-caption small{color:#b7d1da!important}
html[data-theme="dark"] .lab-inner-caption strong{color:#f2fbfc!important}
html[data-theme="light"] .lab-inner-stamp{background:#fff!important;color:#157e9c!important;border-color:rgba(29,112,145,.20)!important}
html[data-theme="dark"] .lab-inner-stamp{background:#173c4b!important;color:#82dfe5!important;border-color:rgba(218,244,246,.13)!important}
.v3-showcase,
.v3-services,
.lab-brand-section,
.lab-process-section{
  background:linear-gradient(145deg,#0d2936,#133d4c 62%,#1b5260)!important;
  color:#f5fcfd!important;
}
.v3-showcase h1,.v3-showcase h2,.v3-showcase h3,.v3-showcase strong,
.v3-services h1,.v3-services h2,.v3-services h3,.v3-services strong,
.lab-brand-section h1,.lab-brand-section h2,.lab-brand-section h3,.lab-brand-section strong,
.lab-process-section h1,.lab-process-section h2,.lab-process-section h3,.lab-process-section strong{
  color:#f5fcfd!important;
}
.v3-showcase p,.v3-showcase small,.v3-showcase a,
.v3-services p,.v3-services small,.v3-services a,
.lab-brand-section p,.lab-brand-section small,.lab-brand-section a,
.lab-process-section p,.lab-process-section small,.lab-process-section a{
  color:#c4dbe2!important;
}
.v3-showcase .v3-overline,.v3-services .v3-overline,
.lab-brand-section .lab-section-code,.lab-process-section .lab-section-code{color:#77dce3!important}
.v3-showcase a:hover,.v3-services a:hover,.lab-brand-section a:hover,.lab-process-section a:hover{color:#8fe9ee!important}
html[data-theme="light"] .section:not(.v3-showcase):not(.v3-services):not(.lab-brand-section):not(.lab-process-section):not(.lab-cta-section){
  color:var(--theme-light-ink);
}
html[data-theme="light"] .lab-section-heading h2,
html[data-theme="light"] .v3-section-head h2,
html[data-theme="light"] .v3-categories h2,
html[data-theme="light"] .v3-products h2,
html[data-theme="light"] .v3-boutique h2,
html[data-theme="light"] .v3-reviews h2,
html[data-theme="light"] .v3-request-wrap h2,
html[data-theme="light"] .lab-contact-info h2,
html[data-theme="light"] .lab-location-section h2{color:#0d3044!important}
html[data-theme="light"] .lab-section-heading h2 em,
html[data-theme="light"] .v3-section-head h2 em,
html[data-theme="light"] .lab-contact-info h2 em{color:#1d8fac!important}
html[data-theme="light"] .lab-section-heading>p,
html[data-theme="light"] .v3-section-head>p,
html[data-theme="light"] .lab-contact-info>p,
html[data-theme="light"] .lab-location-section p{color:#557382!important}
html[data-theme="dark"] .lab-section-heading h2,
html[data-theme="dark"] .v3-section-head h2,
html[data-theme="dark"] .v3-categories h2,
html[data-theme="dark"] .v3-products h2,
html[data-theme="dark"] .v3-boutique h2,
html[data-theme="dark"] .v3-reviews h2,
html[data-theme="dark"] .v3-request-wrap h2,
html[data-theme="dark"] .lab-contact-info h2,
html[data-theme="dark"] .lab-location-section h2{color:#f4fcfd!important}
html[data-theme="dark"] .lab-section-heading h2 em,
html[data-theme="dark"] .v3-section-head h2 em,
html[data-theme="dark"] .lab-contact-info h2 em{color:#7bdde4!important}
html[data-theme="dark"] .lab-section-heading>p,
html[data-theme="dark"] .v3-section-head>p,
html[data-theme="dark"] .lab-contact-info>p,
html[data-theme="dark"] .lab-location-section p{color:#bdd4dd!important}
html[data-theme="light"] .service-card:not(.lab-service-feature),
html[data-theme="light"] .location-card,
html[data-theme="light"] .lab-location-card,
html[data-theme="light"] .contact-form-card,
html[data-theme="light"] .review-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .lab-product-card,
html[data-theme="light"] .filter-panel,
html[data-theme="light"] .lab-filter-panel,
html[data-theme="light"] .model-browser,
html[data-theme="light"] .lab-category-pill,
html[data-theme="light"] .brand-choice,
html[data-theme="light"] .lab-quick-card{
  background:#fff!important;
  color:#12384d!important;
  border-color:rgba(29,112,145,.16)!important;
  box-shadow:0 16px 44px rgba(24,91,116,.09)!important;
}
html[data-theme="dark"] .service-card:not(.lab-service-feature),
html[data-theme="dark"] .location-card,
html[data-theme="dark"] .lab-location-card,
html[data-theme="dark"] .contact-form-card,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .lab-product-card,
html[data-theme="dark"] .filter-panel,
html[data-theme="dark"] .lab-filter-panel,
html[data-theme="dark"] .model-browser,
html[data-theme="dark"] .lab-category-pill,
html[data-theme="dark"] .brand-choice,
html[data-theme="dark"] .lab-quick-card{
  background:#153847!important;
  color:#f4fcfd!important;
  border-color:rgba(205,238,242,.11)!important;
  box-shadow:0 18px 48px rgba(0,0,0,.20)!important;
}
html[data-theme="light"] .service-card:not(.lab-service-feature) h2,
html[data-theme="light"] .service-card:not(.lab-service-feature) h3,
html[data-theme="light"] .location-card h2,
html[data-theme="light"] .location-card h3,
html[data-theme="light"] .contact-form-card h2,
html[data-theme="light"] .contact-form-card h3,
html[data-theme="light"] .review-card h3,
html[data-theme="light"] .product-card h2,
html[data-theme="light"] .product-card h3,
html[data-theme="light"] .lab-product-card h2,
html[data-theme="light"] .lab-product-card h3,
html[data-theme="light"] .brand-choice strong,
html[data-theme="light"] .lab-category-pill strong,
html[data-theme="light"] .lab-quick-card strong{color:#0e3449!important}
html[data-theme="light"] .service-card:not(.lab-service-feature) p,
html[data-theme="light"] .service-card:not(.lab-service-feature) small,
html[data-theme="light"] .location-card p,
html[data-theme="light"] .location-card small,
html[data-theme="light"] .contact-form-card p,
html[data-theme="light"] .contact-form-card small,
html[data-theme="light"] .review-card p,
html[data-theme="light"] .product-card p,
html[data-theme="light"] .product-card small,
html[data-theme="light"] .lab-product-card p,
html[data-theme="light"] .lab-product-card small,
html[data-theme="light"] .brand-choice small,
html[data-theme="light"] .lab-category-pill small,
html[data-theme="light"] .lab-quick-card small{color:#5b7887!important}
html[data-theme="dark"] .service-card h2,
html[data-theme="dark"] .service-card h3,
html[data-theme="dark"] .location-card h2,
html[data-theme="dark"] .location-card h3,
html[data-theme="dark"] .contact-form-card h2,
html[data-theme="dark"] .contact-form-card h3,
html[data-theme="dark"] .review-card h3,
html[data-theme="dark"] .product-card h2,
html[data-theme="dark"] .product-card h3,
html[data-theme="dark"] .lab-product-card h2,
html[data-theme="dark"] .lab-product-card h3,
html[data-theme="dark"] .brand-choice strong,
html[data-theme="dark"] .lab-category-pill strong,
html[data-theme="dark"] .lab-quick-card strong{color:#f4fcfd!important}
html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .service-card small,
html[data-theme="dark"] .location-card p,
html[data-theme="dark"] .location-card small,
html[data-theme="dark"] .contact-form-card p,
html[data-theme="dark"] .contact-form-card small,
html[data-theme="dark"] .review-card p,
html[data-theme="dark"] .product-card p,
html[data-theme="dark"] .product-card small,
html[data-theme="dark"] .lab-product-card p,
html[data-theme="dark"] .lab-product-card small,
html[data-theme="dark"] .brand-choice small,
html[data-theme="dark"] .lab-category-pill small,
html[data-theme="dark"] .lab-quick-card small{color:#bdd4dd!important}
.lab-service-feature,
.lab-service-wide{
  background:linear-gradient(145deg,#157f9f,#2aaabd 55%,#66d2d7)!important;
  color:#fff!important;
}
.lab-service-feature h2,.lab-service-feature h3,.lab-service-feature p,.lab-service-feature small,
.lab-service-wide h2,.lab-service-wide h3,.lab-service-wide p,.lab-service-wide small{color:#fff!important}
html[data-theme="light"] .contact-form-card label{color:#244f63!important}
html[data-theme="dark"] .contact-form-card label{color:#d6ebf0!important}
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea,
html[data-theme="light"] .search-box,
html[data-theme="light"] .filter-select{
  background:#f5fbfc!important;
  color:#12384d!important;
  border-color:rgba(29,112,145,.20)!important;
}
html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder{color:#78919c!important;opacity:1!important}
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .search-box,
html[data-theme="dark"] .filter-select{
  background:#0e2d3b!important;
  color:#f4fcfd!important;
  border-color:rgba(202,237,241,.15)!important;
}
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder{color:#8faeb9!important;opacity:1!important}
html[data-theme="light"] option{background:#fff!important;color:#12384d!important}
html[data-theme="dark"] option{background:#143747!important;color:#f4fcfd!important}
html[data-theme="light"] .location-card dt,
html[data-theme="light"] .lab-location-card dt{color:#678493!important}
html[data-theme="light"] .location-card dd,
html[data-theme="light"] .lab-location-card dd{color:#12384d!important}
html[data-theme="dark"] .location-card dt,
html[data-theme="dark"] .lab-location-card dt{color:#9ebbc5!important}
html[data-theme="dark"] .location-card dd,
html[data-theme="dark"] .lab-location-card dd{color:#f4fcfd!important}
.location-preview,
.lab-location-preview{color:#fff!important}
.location-preview h2,.location-preview h3,.location-preview p,.location-preview small,.location-preview strong,
.lab-location-preview h2,.lab-location-preview h3,.lab-location-preview p,.lab-location-preview small,.lab-location-preview strong{color:#fff!important;text-shadow:0 2px 15px rgba(0,0,0,.45)!important}
html[data-theme="light"] .lab-contact-info article{
  background:#fff!important;
  border-color:rgba(29,112,145,.16)!important;
  color:#12384d!important;
  box-shadow:0 15px 40px rgba(24,91,116,.08)!important;
}
html[data-theme="light"] .lab-contact-info article h3{color:#12384d!important}
html[data-theme="light"] .lab-contact-info article p,
html[data-theme="light"] .lab-contact-info article small{color:#5b7887!important}
html[data-theme="dark"] .lab-contact-info article{
  background:#153847!important;
  border-color:rgba(204,238,242,.11)!important;
  color:#f4fcfd!important;
}
html[data-theme="dark"] .lab-contact-info article h3{color:#f4fcfd!important}
html[data-theme="dark"] .lab-contact-info article p,
html[data-theme="dark"] .lab-contact-info article small{color:#bdd4dd!important}
html[data-theme="light"] .product-price,
html[data-theme="light"] .product-card h3,
html[data-theme="light"] .lab-product-card h3{color:#10394f!important}
html[data-theme="dark"] .product-price,
html[data-theme="dark"] .product-card h3,
html[data-theme="dark"] .lab-product-card h3{color:#f5fcfd!important}
html[data-theme="light"] .product-description,
html[data-theme="light"] .product-meta{color:#607c8a!important}
html[data-theme="dark"] .product-description,
html[data-theme="dark"] .product-meta{color:#bdd4dd!important}
html[data-theme="light"] .product-modal,
html[data-theme="light"] .product-modal-card,
html[data-theme="light"] .cart-panel{
  background:#fff!important;
  color:#12384d!important;
}
html[data-theme="dark"] .product-modal,
html[data-theme="dark"] .product-modal-card,
html[data-theme="dark"] .cart-panel{
  background:#123441!important;
  color:#f4fcfd!important;
}
html[data-theme="light"] .product-modal-card h1,
html[data-theme="light"] .product-modal-card h2,
html[data-theme="light"] .product-modal-card h3,
html[data-theme="light"] .cart-panel h2,
html[data-theme="light"] .cart-panel h3{color:#10394f!important}
html[data-theme="light"] .product-modal-card p,
html[data-theme="light"] .product-modal-card small,
html[data-theme="light"] .cart-panel p,
html[data-theme="light"] .cart-panel small{color:#607c8a!important}
html[data-theme="dark"] .product-modal-card h1,
html[data-theme="dark"] .product-modal-card h2,
html[data-theme="dark"] .product-modal-card h3,
html[data-theme="dark"] .cart-panel h2,
html[data-theme="dark"] .cart-panel h3{color:#f4fcfd!important}
html[data-theme="dark"] .product-modal-card p,
html[data-theme="dark"] .product-modal-card small,
html[data-theme="dark"] .cart-panel p,
html[data-theme="dark"] .cart-panel small{color:#bdd4dd!important}
html[data-theme="light"] .mobile-menu,
html[data-theme="light"] .lab-mobile-menu{
  background:linear-gradient(180deg,#f7fcfd,#e9f6f8)!important;
  color:#12384d!important;
}
html[data-theme="light"] .mobile-menu-head strong,
html[data-theme="light"] .mobile-nav-links a,
html[data-theme="light"] .mobile-preferences,
html[data-theme="light"] .mobile-preferences small{color:#12384d!important}
html[data-theme="light"] .mobile-nav-links a{border-color:rgba(29,112,145,.14)!important}
html[data-theme="light"] .mobile-menu-close,
html[data-theme="light"] .mobile-language-options button,
html[data-theme="light"] .mobile-theme-button{
  background:#fff!important;
  color:#17435a!important;
  border-color:rgba(29,112,145,.20)!important;
}
html[data-theme="dark"] .mobile-menu,
html[data-theme="dark"] .lab-mobile-menu{
  background:linear-gradient(180deg,#102e3b,#0b2430)!important;
  color:#f4fcfd!important;
}
html[data-theme="dark"] .mobile-menu-head strong,
html[data-theme="dark"] .mobile-nav-links a,
html[data-theme="dark"] .mobile-preferences,
html[data-theme="dark"] .mobile-preferences small{color:#f4fcfd!important}
html[data-theme="dark"] .mobile-nav-links a{border-color:rgba(205,238,242,.12)!important}
html[data-theme="dark"] .mobile-menu-close,
html[data-theme="dark"] .mobile-language-options button,
html[data-theme="dark"] .mobile-theme-button{
  background:rgba(255,255,255,.07)!important;
  color:#f4fcfd!important;
  border-color:rgba(205,238,242,.16)!important;
}
html[data-theme="light"] .lab-footer,
html[data-theme="light"] .site-footer{
  background:linear-gradient(145deg,#d9f0f4,#eff9fa)!important;
  color:#12384d!important;
}
html[data-theme="light"] .lab-footer p,
html[data-theme="light"] .site-footer p,
html[data-theme="light"] .footer-column strong,
html[data-theme="light"] .footer-column a,
html[data-theme="light"] .footer-social-link{color:#254f62!important}
html[data-theme="light"] .footer-column small,
html[data-theme="light"] .footer-bottom,
html[data-theme="light"] .lab-footer small{color:#617f8d!important}
html[data-theme="light"] .footer-social-link{
  background:rgba(255,255,255,.72)!important;
  border-color:rgba(29,112,145,.15)!important;
}
html[data-theme="dark"] .lab-footer,
html[data-theme="dark"] .site-footer{
  background:linear-gradient(145deg,#0c2733,#173d4b)!important;
  color:#f4fcfd!important;
}
html[data-theme="dark"] .lab-footer p,
html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .footer-column strong,
html[data-theme="dark"] .footer-column a,
html[data-theme="dark"] .footer-social-link{color:#d5e9ee!important}
html[data-theme="dark"] .footer-column small,
html[data-theme="dark"] .footer-bottom,
html[data-theme="dark"] .lab-footer small{color:#a9c5ce!important}
html[data-theme="dark"] .footer-social-link{
  background:rgba(255,255,255,.055)!important;
  border-color:rgba(205,238,242,.12)!important;
}
html[data-theme="light"] .brand-choice-logo,
html[data-theme="light"] .brand-choice-logo strong{color:#12384d!important}
html[data-theme="dark"] .brand-choice-logo,
html[data-theme="dark"] .brand-choice-logo strong{color:#f4fcfd!important}
.brand-choice-logo,
.brand-choice-logo strong,
.lab-quick-card strong{
  overflow-wrap:anywhere!important;
  word-break:normal!important;
  line-height:1.05!important;
}
html[data-theme="light"] :focus-visible{outline:3px solid rgba(24,142,174,.55)!important;outline-offset:3px!important}
html[data-theme="dark"] :focus-visible{outline:3px solid rgba(113,222,229,.62)!important;outline-offset:3px!important}
@media(max-width:980px){
  html[data-theme="light"] .lab-nav-shell,
  html[data-theme="dark"] .lab-nav-shell{min-height:76px!important}
  .lab-brand,.v7-brand{min-width:0!important}
  .v7-brand-copy strong,.v7-brand-copy b,.v7-brand-copy small{white-space:normal!important}
}
@media(max-width:640px){
  html[data-theme="light"] .lab-inner-hero,
  html[data-theme="light"] .v3-hero{background:linear-gradient(155deg,#f4fbfc,#d7edf2)!important}
  html[data-theme="dark"] .lab-inner-hero,
  html[data-theme="dark"] .v3-hero{background:linear-gradient(155deg,#0b2632,#174452)!important}
  .inner-hero-actions .button,
  .v3-hero-actions .button{min-height:50px!important}
  .product-card h3,.lab-product-card h3{font-size:clamp(22px,7vw,34px)!important;line-height:1.02!important}
  .footer-social-link{min-height:46px!important}
}

.product-grid .lab-product-card:not(.is-photo-product) .lab-product-media,
.product-grid .product-card:not(.is-photo-product) .product-media{
  background:linear-gradient(145deg,#edf4f5,#f9fcfc)!important;
}
.product-grid .lab-product-card:not(.is-photo-product) .lab-product-media img,
.product-grid .product-card:not(.is-photo-product) .product-media img{
  width:100%!important;
  height:100%!important;
  padding:0!important;
  object-fit:cover!important;
  object-position:center!important;
  transform:scale(1.015);
  filter:saturate(.98) contrast(1.025)!important;
}
.product-grid .lab-product-card:not(.is-photo-product):hover .lab-product-media img,
.product-grid .product-card:not(.is-photo-product):hover .product-media img{
  transform:scale(1.055)!important;
}
.product-grid .lab-product-card.is-photo-product .lab-product-media,
.product-grid .product-card.is-photo-product .product-media{
  background:linear-gradient(145deg,#f4fbfc,#e8f4f6)!important;
}
.product-grid .lab-product-card.is-photo-product .lab-product-media img,
.product-grid .product-card.is-photo-product .product-media img{
  padding:18px!important;
  object-fit:contain!important;
  object-position:center!important;
  filter:none!important;
}
html[data-theme="dark"] .product-grid .lab-product-card:not(.is-photo-product) .lab-product-media,
html[data-theme="dark"] .product-grid .product-card:not(.is-photo-product) .product-media{
  background:linear-gradient(145deg,#183845,#0d2833)!important;
}
html[data-theme="dark"] .product-grid .lab-product-card.is-photo-product .lab-product-media,
html[data-theme="dark"] .product-grid .product-card.is-photo-product .product-media{
  background:linear-gradient(145deg,#183845,#102d38)!important;
}
@media(max-width:640px){
  .product-grid .lab-product-card:not(.is-photo-product) .lab-product-media img,
  .product-grid .product-card:not(.is-photo-product) .product-media img{
    transform:scale(1.01);
  }
  .product-grid .lab-product-card.is-photo-product .lab-product-media img,
  .product-grid .product-card.is-photo-product .product-media img{
    padding:12px!important;
  }
}

.footer-social-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
  margin-top:4px;
}
.footer-social-link{
  position:relative;
  display:grid!important;
  grid-template-columns:42px minmax(0,1fr) auto;
  align-items:center;
  gap:11px;
  min-height:58px;
  padding:9px 12px 9px 9px!important;
  overflow:hidden;
  border:1px solid rgba(31,133,164,.16)!important;
  border-radius:17px!important;
  background:rgba(255,255,255,.6)!important;
  color:#19485f!important;
  box-shadow:0 9px 24px rgba(25,103,129,.07);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease,background .24s ease!important;
}
.footer-social-link::before{
  content:"";
  position:absolute;
  inset:auto -28px -35px auto;
  width:92px;
  height:92px;
  border-radius:50%;
  opacity:.11;
  background:currentColor;
  transition:transform .3s ease,opacity .3s ease;
}
.footer-social-link:hover{
  transform:translateY(-3px);
  border-color:rgba(31,133,164,.34)!important;
  box-shadow:0 16px 34px rgba(25,103,129,.13);
}
.footer-social-link:hover::before{transform:scale(1.2);opacity:.16}
.footer-social-icon{
  width:42px!important;
  height:42px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:14px!important;
  background:linear-gradient(145deg,#e8fbfc,#caedf2)!important;
  color:#1f819f!important;
  box-shadow:inset 0 0 0 1px rgba(31,133,164,.08);
}
.footer-social-copy{min-width:0;display:grid;gap:2px;line-height:1.08}
.footer-social-copy b{font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:inherit}
.footer-social-copy small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:10px;color:#668894}
.footer-social-link>i{position:relative;z-index:1;font-style:normal;font-size:16px;color:#2b91ac}
.social-svg,.social-dock-svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.social-svg .social-fill,.social-dock-svg .social-fill{fill:currentColor;stroke:none}
.social-svg .social-dot,.social-dock-svg .social-dot{fill:currentColor;stroke:none}
.footer-social-link.whatsapp .footer-social-icon{background:linear-gradient(145deg,#dff9ea,#bdeed2)!important;color:#128c55!important}
.footer-social-link.instagram .footer-social-icon{background:linear-gradient(145deg,#fff0f5,#eadbff)!important;color:#b93d87!important}
.footer-social-link.tiktok .footer-social-icon{background:linear-gradient(145deg,#e8fbfc,#dfe6ff)!important;color:#173e55!important}
.footer-social-link.facebook .footer-social-icon{background:linear-gradient(145deg,#e7f1ff,#d4e6ff)!important;color:#1877f2!important}
.footer-social-link.email .footer-social-icon{background:linear-gradient(145deg,#eaf9ff,#d6effa)!important;color:#267f9f!important}
.footer-social-meta{display:grid;gap:5px;margin-top:12px;padding-top:12px;border-top:1px solid rgba(32,123,151,.12)}
.footer-social-meta span{font-size:10px;line-height:1.5;color:#62818d}
html[data-theme="dark"] .footer-social-link{
  background:rgba(255,255,255,.055)!important;
  border-color:rgba(181,229,236,.13)!important;
  color:#eaf9fb!important;
  box-shadow:0 12px 28px rgba(0,0,0,.13);
}
html[data-theme="dark"] .footer-social-link:hover{background:rgba(255,255,255,.085)!important;border-color:rgba(181,229,236,.25)!important}
html[data-theme="dark"] .footer-social-copy small,html[data-theme="dark"] .footer-social-meta span{color:#a8c7cf}

.social-dock{
  position:fixed;
  z-index:74;
  left:18px;
  top:50%;
  display:grid;
  gap:8px;
  padding:10px 8px;
  border:1px solid rgba(33,129,158,.16);
  border-radius:22px;
  background:rgba(245,252,253,.82);
  box-shadow:0 18px 44px rgba(16,92,118,.15);
  backdrop-filter:blur(16px) saturate(1.15);
  transform:translateY(-50%);
}
.social-dock-title{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  justify-self:center;
  padding:4px 0 5px;
  font-size:8px;
  font-weight:850;
  letter-spacing:.18em;
  color:#63828e;
}
.social-dock-link{
  position:relative;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:15px;
  color:#245c70;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(36,112,137,.1);
  box-shadow:0 8px 18px rgba(24,91,114,.08);
  transition:transform .22s ease,background .22s ease,color .22s ease,box-shadow .22s ease;
}
.social-dock-link span{
  position:absolute;
  left:56px;
  top:50%;
  padding:8px 10px;
  border-radius:10px;
  background:#153f52;
  color:#fff;
  font-size:10px;
  font-weight:750;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transform:translate(-5px,-50%);
  transition:.2s ease;
  box-shadow:0 10px 22px rgba(7,40,54,.2);
}
.social-dock-link:hover{transform:translateY(-2px) scale(1.04);box-shadow:0 12px 26px rgba(24,91,114,.16)}
.social-dock-link:hover span,.social-dock-link:focus-visible span{opacity:1;transform:translate(0,-50%)}
.social-dock-link.instagram:hover{color:#fff;background:linear-gradient(135deg,#8a3ab9,#e95950,#fccc63)}
.social-dock-link.tiktok:hover{color:#fff;background:linear-gradient(135deg,#111827,#1c4f60)}
.social-dock-link.facebook:hover{color:#fff;background:#1877f2}
.social-dock-link.email:hover{color:#fff;background:linear-gradient(135deg,#2384a4,#42b7c2)}
html[data-theme="dark"] .social-dock{background:rgba(10,35,46,.82);border-color:rgba(174,226,233,.13);box-shadow:0 20px 46px rgba(0,0,0,.28)}
html[data-theme="dark"] .social-dock-link{background:rgba(255,255,255,.065);border-color:rgba(255,255,255,.08);color:#ccebf0}
html[data-theme="dark"] .social-dock-title{color:#9dbcc4}

.contact-socials a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}
.contact-socials a:hover{transform:translateY(-2px);background:#caeef2;box-shadow:0 8px 18px rgba(31,128,155,.12)}
html[data-theme="dark"] .contact-socials a{background:rgba(111,208,216,.1);color:#bdebf0}

@media(max-width:1180px){
  .social-dock{display:none}
}
@media(max-width:640px){
  .footer-social-grid{grid-template-columns:1fr}
  .footer-social-link{width:100%;min-height:56px!important}
}

/* V14 — icon-only social experience, optimized for desktop and mobile */
.footer-social-column{min-width:0}
.footer-social-grid{
  display:flex!important;
  flex-wrap:wrap;
  align-items:center;
  gap:11px!important;
  margin-top:12px!important;
}
.footer-social-link{
  width:50px!important;
  height:50px!important;
  min-height:50px!important;
  flex:0 0 50px;
  display:grid!important;
  place-items:center!important;
  padding:0!important;
  border-radius:17px!important;
  overflow:visible!important;
  color:#fff!important;
  box-shadow:0 12px 28px rgba(21,81,105,.14)!important;
  transform:translateZ(0);
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease!important;
}
.footer-social-link::before{display:none!important}
.footer-social-link:hover{
  transform:translateY(-5px) scale(1.055)!important;
  box-shadow:0 19px 38px rgba(19,76,101,.22)!important;
  filter:saturate(1.08);
}
.footer-social-link:active{transform:translateY(-1px) scale(.97)!important}
.footer-social-link .footer-social-icon{
  width:100%!important;
  height:100%!important;
  display:grid!important;
  place-items:center!important;
  border-radius:inherit!important;
  background:transparent!important;
  color:inherit!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16)!important;
}
.footer-social-link .social-svg{width:22px!important;height:22px!important}
.footer-social-copy,.footer-social-link>i{display:none!important}
.footer-social-link.whatsapp{background:linear-gradient(145deg,#2bd977,#119b54)!important}
.footer-social-link.instagram{background:linear-gradient(135deg,#6f45d8 0%,#d63b85 48%,#f3a44a 100%)!important}
.footer-social-link.tiktok{background:linear-gradient(145deg,#111821,#173f4c)!important;box-shadow:0 12px 28px rgba(8,24,33,.24)!important}
.footer-social-link.facebook{background:linear-gradient(145deg,#2b8bff,#125dca)!important}
.footer-social-link.email{background:linear-gradient(145deg,#35bfd0,#187c9e)!important}
html[data-theme="dark"] .footer-social-link{color:#fff!important;border-color:rgba(255,255,255,.13)!important}
.footer-social-meta{margin-top:15px!important}

.social-dock{
  left:auto!important;
  right:17px!important;
  top:50%!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:7px!important;
  padding:8px!important;
  border-radius:24px!important;
}
.social-dock-title,.social-dock-link>span{display:none!important}
.social-dock-link{
  width:45px!important;
  height:45px!important;
  border-radius:15px!important;
}
.social-dock-link::after{
  content:attr(data-social-label);
  position:absolute;
  right:55px;
  top:50%;
  padding:7px 10px;
  border-radius:9px;
  background:#11394b;
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transform:translate(5px,-50%);
  transition:opacity .18s ease,transform .18s ease;
  box-shadow:0 10px 24px rgba(5,35,48,.2);
}
.social-dock-link:hover::after,.social-dock-link:focus-visible::after{opacity:1;transform:translate(0,-50%)}
.social-dock-link.whatsapp:hover{color:#fff;background:linear-gradient(145deg,#2bd977,#119b54)}
.social-dock-link.instagram:hover{color:#fff;background:linear-gradient(135deg,#6f45d8,#d63b85,#f3a44a)}
.social-dock-link.tiktok:hover{color:#fff;background:linear-gradient(145deg,#111821,#173f4c)}
.social-dock-link.facebook:hover{color:#fff;background:linear-gradient(145deg,#2b8bff,#125dca)}
.social-dock-link.email:hover{color:#fff;background:linear-gradient(145deg,#35bfd0,#187c9e)}

@media (min-width:1181px){
  .social-dock{display:grid!important}
}

@media (min-width:761px) and (max-width:1180px){
  .social-dock{display:none!important}
}

@media (max-width:760px){
  body{padding-bottom:78px}
  .footer-social-column{
    display:grid!important;
    justify-items:center;
    text-align:center;
    padding-top:4px;
  }
  .footer-social-grid{
    justify-content:center!important;
    gap:9px!important;
    width:100%;
    margin-top:13px!important;
  }
  .footer-social-link{
    width:47px!important;
    height:47px!important;
    min-height:47px!important;
    flex-basis:47px!important;
    border-radius:15px!important;
  }
  .footer-social-meta{
    width:100%;
    justify-items:center;
    margin-top:13px!important;
  }
  .social-dock{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    left:50%!important;
    right:auto!important;
    top:auto!important;
    bottom:calc(10px + env(safe-area-inset-bottom,0px))!important;
    width:max-content!important;
    max-width:calc(100vw - 20px)!important;
    padding:7px!important;
    gap:5px!important;
    border-radius:999px!important;
    transform:translateX(-50%)!important;
    background:rgba(244,252,253,.9)!important;
    border:1px solid rgba(29,120,150,.16)!important;
    box-shadow:0 18px 45px rgba(9,64,84,.22)!important;
    backdrop-filter:blur(18px) saturate(1.25)!important;
  }
  html[data-theme="dark"] .social-dock{
    background:rgba(10,35,46,.92)!important;
    border-color:rgba(183,231,237,.14)!important;
    box-shadow:0 18px 46px rgba(0,0,0,.34)!important;
  }
  .social-dock-link{
    width:43px!important;
    height:43px!important;
    flex:0 0 43px!important;
    border-radius:50%!important;
    box-shadow:none!important;
  }
  .social-dock-link::after{display:none!important}
  .social-dock-link.whatsapp{color:#fff!important;background:linear-gradient(145deg,#2bd977,#119b54)!important}
  .social-dock-link.instagram{color:#fff!important;background:linear-gradient(135deg,#6f45d8,#d63b85,#f3a44a)!important}
  .social-dock-link.tiktok{color:#fff!important;background:linear-gradient(145deg,#111821,#173f4c)!important}
  .social-dock-link.facebook{color:#fff!important;background:linear-gradient(145deg,#2b8bff,#125dca)!important}
  .social-dock-link.email{color:#fff!important;background:linear-gradient(145deg,#35bfd0,#187c9e)!important}
  .social-dock-svg{width:20px!important;height:20px!important}
  .floating-whatsapp,.lab-floating-wa{display:none!important}
}

@media (max-width:380px){
  .social-dock{gap:4px!important;padding:6px!important}
  .social-dock-link{width:39px!important;height:39px!important;flex-basis:39px!important}
  .footer-social-link{width:44px!important;height:44px!important;min-height:44px!important;flex-basis:44px!important}
}

/* ===== INFO / ABOUT PAGE ===== */
.about-page-main {
  position: relative;
}
.about-hero-section {
  padding: clamp(44px, 7vw, 92px) 0 clamp(24px, 4vw, 44px);
}
.about-hero-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.about-hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.1rem, 4.9vw, 4.55rem);
  line-height: .98;
  letter-spacing: -.05em;
  max-width: 12ch;
}
.about-intro {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.about-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.about-kpis article,
.about-mini-card,
.about-story-card,
.about-profile-card,
.about-cta-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-sm);
}
.about-kpis article {
  padding: 18px 16px;
  border-radius: 22px;
}
.about-kpis strong,
.about-mini-card strong {
  display: block;
  font-size: .98rem;
  line-height: 1.35;
}
.about-kpis span,
.about-mini-card p,
.about-profile-copy p,
.about-story-card p,
.about-cta-card p {
  color: var(--muted);
}
.about-kpis span {
  display: block;
  margin-top: 8px;
  font-size: .92rem;
  line-height: 1.55;
}
.about-profile-card {
  border-radius: 34px;
  overflow: hidden;
}
.about-portrait-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #eef2f3, #dadede);
}
.about-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-profile-copy {
  padding: 22px 24px 26px;
}
.about-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green) 10%, var(--surface));
  color: var(--green-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-profile-copy h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
}
.about-story-section {
  padding: 12px 0 clamp(28px, 4vw, 56px);
}
.about-story-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
}
.about-rich-text {
  display: grid;
  gap: 18px;
}
.about-rich-text p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
}
.about-side-stack {
  display: grid;
  gap: 16px;
}
.about-mini-card {
  padding: 20px 20px 18px;
  border-radius: 24px;
}
.about-mini-card p {
  margin: 10px 0 0;
  font-size: .96rem;
  line-height: 1.7;
}
.about-cta-section {
  padding: 0 0 clamp(48px, 6vw, 84px);
}
.about-cta-card {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 22px;
  align-items: center;
}
.about-cta-card h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  max-width: 14ch;
}
.about-cta-actions {
  display: grid;
  gap: 14px;
}
html[data-theme="dark"] .about-portrait-wrap {
  background: linear-gradient(180deg, #21292f, #171d23);
}
html[data-theme="dark"] .about-kpis article,
html[data-theme="dark"] .about-mini-card,
html[data-theme="dark"] .about-story-card,
html[data-theme="dark"] .about-profile-card,
html[data-theme="dark"] .about-cta-card {
  background: color-mix(in srgb, var(--surface-2) 94%, transparent);
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-grid,
  .about-cta-card {
    grid-template-columns: 1fr;
  }
  .about-hero-copy h1,
  .about-cta-card h2 {
    max-width: none;
  }
  .about-kpis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero-section {
    padding-top: 28px;
  }
  .about-hero-copy h1 {
    font-size: clamp(1.9rem, 10.5vw, 2.85rem);
  }
  .about-intro,
  .about-rich-text p,
  .about-mini-card p,
  .about-kpis span {
    font-size: .95rem;
  }
  .about-profile-card,
  .about-story-card,
  .about-cta-card,
  .about-mini-card,
  .about-kpis article {
    border-radius: 24px;
  }
  .about-profile-copy {
    padding: 18px 18px 22px;
  }
}

/* --- v16 fixes: clearer logo panel + theme-aware mobile menu --- */
.v6-logo-panel{
  min-height:250px;
  padding:22px;
  overflow:hidden;
}
.v6-logo-panel img{
  width:min(100%,540px)!important;
  max-height:100%;
  object-fit:contain;
  object-position:center center;
}
@media (max-width:768px){
  .v6-logo-panel{
    min-height:220px;
    padding:18px 16px;
  }
  .v6-logo-panel img{
    width:min(100%,350px)!important;
  }
}
@media (max-width:480px){
  .v6-logo-panel{
    min-height:200px;
    padding:16px 14px;
    border-radius:20px;
  }
  .v6-logo-panel img{
    width:min(100%,310px)!important;
  }
}

html[data-theme="light"] .lab-mobile-menu{
  background:rgba(233,246,248,.72)!important;
  color:#12384d!important;
}
html[data-theme="light"] .lab-mobile-menu .mobile-menu-inner{
  border-color:rgba(29,112,145,.14)!important;
  background:linear-gradient(180deg,#ffffff,#eef8fa)!important;
  box-shadow:0 28px 72px rgba(19,56,77,.18)!important;
}
html[data-theme="light"] .mobile-menu-head strong,
html[data-theme="light"] .mobile-preferences,
html[data-theme="light"] .mobile-preferences small,
html[data-theme="light"] .mobile-language-block>small{
  color:#12384d!important;
}
html[data-theme="light"] .lab-mobile-menu .mobile-nav-links a{
  background:rgba(255,255,255,.86)!important;
  color:#12384d!important;
  border-color:rgba(29,112,145,.14)!important;
  box-shadow:0 10px 24px rgba(19,56,77,.06)!important;
}
html[data-theme="light"] .lab-mobile-menu .mobile-nav-links a::after{
  color:rgba(23,67,90,.45)!important;
}
html[data-theme="light"] .lab-mobile-menu .mobile-nav-links a:hover,
html[data-theme="light"] .lab-mobile-menu .mobile-nav-links a:focus-visible{
  background:#f8fdff!important;
  border-color:rgba(29,112,145,.28)!important;
}
html[data-theme="light"] .lab-mobile-menu .mobile-nav-links a.active{
  background:linear-gradient(135deg,rgba(89,179,214,.18),rgba(44,112,189,.12))!important;
  border-color:rgba(44,112,189,.32)!important;
  box-shadow:inset 0 0 0 1px rgba(44,112,189,.06),0 12px 26px rgba(44,112,189,.10)!important;
}
html[data-theme="light"] .mobile-menu-close,
html[data-theme="light"] .mobile-language-options button,
html[data-theme="light"] .mobile-theme-button{
  background:#fff!important;
  color:#17435a!important;
  border-color:rgba(29,112,145,.18)!important;
  box-shadow:0 8px 18px rgba(19,56,77,.06)!important;
}
html[data-theme="light"] .mobile-language-options button:hover,
html[data-theme="light"] .mobile-language-options button.is-active{
  background:#e7f6f8!important;
  color:#0f7898!important;
  border-color:rgba(45,168,199,.36)!important;
}

html[data-theme="dark"] .lab-mobile-menu{
  background:rgba(9,23,32,.74)!important;
  color:#f4fcfd!important;
}
html[data-theme="dark"] .lab-mobile-menu .mobile-menu-inner{
  border-color:rgba(205,238,242,.12)!important;
  background:linear-gradient(180deg,#102e3b,#0b2430)!important;
  box-shadow:0 30px 90px rgba(0,0,0,.48)!important;
}
html[data-theme="dark"] .lab-mobile-menu .mobile-nav-links a{
  background:rgba(255,255,255,.055)!important;
  color:#f4fcfd!important;
  border-color:rgba(205,238,242,.12)!important;
}
html[data-theme="dark"] .lab-mobile-menu .mobile-nav-links a.active{
  background:linear-gradient(135deg,rgba(79,168,214,.22),rgba(22,84,112,.38))!important;
  border-color:rgba(115,223,234,.30)!important;
}

/* --- v17 mobile about page flow fix --- */
.about-kpis-mobile{display:none;}
.about-kpis-desktop{display:grid;}
@media (max-width: 980px){
  .about-kpis-desktop{display:none;}
  .about-kpis-mobile{display:grid; margin-top: 4px;}
}
@media (max-width: 640px){
  .about-kpis-mobile{gap:12px; margin-top: 10px;}
  .about-kpis-mobile article{padding:20px 18px;}
}
