/* =========================================================
   ETEX — restyled in the WIN-CYC premium monochrome aesthetic
   Design tokens mirror wincyc.adaptivegp.com (HSL),
   typography: Poppins, with a rich scroll-animation vocabulary.
   ========================================================= */

:root {
  /* core palette (mirrors wincyc tokens) */
  --background: 0 0% 100%;
  --foreground: 0 0% 8%;
  --nav-background: 0 0% 100%;
  --nav-foreground: 0 0% 8%;
  --primary: 0 0% 4%;
  --primary-foreground: 0 0% 100%;
  --primary-hover: 0 0% 18%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 8%;
  --muted: 0 0% 94%;
  --muted-foreground: 0 0% 42%;
  --accent: 0 0% 10%;
  --accent-foreground: 0 0% 100%;
  --border: 0 0% 88%;
  --ring: 0 0% 10%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 8%;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-soft: 0 2px 18px rgba(0, 0, 0, .06);
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, .18);

  --ease-spring: cubic-bezier(.34, 1.4, .64, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);

  --duration-fast: .25s;
  --duration-base: .55s;
  --duration-slow: .9s;
  --duration-enter: 1.1s;

  --container: 1380px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  --background: 0 0% 5%;
  --foreground: 0 0% 93%;
  --nav-background: 0 0% 5%;
  --nav-foreground: 0 0% 93%;
  --primary: 0 0% 96%;
  --primary-foreground: 0 0% 4%;
  --primary-hover: 0 0% 80%;
  --secondary: 0 0% 11%;
  --secondary-foreground: 0 0% 93%;
  --muted: 0 0% 14%;
  --muted-foreground: 0 0% 55%;
  --accent: 0 0% 90%;
  --accent-foreground: 0 0% 5%;
  --border: 0 0% 18%;
  --ring: 0 0% 85%;
  --card: 0 0% 7%;
  --card-foreground: 0 0% 93%;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, .55);
  --shadow-soft: 0 2px 18px rgba(0, 0, 0, .4);
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, .6);
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .5s ease, color .5s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: hsl(var(--foreground)); color: hsl(var(--background)); }

/* custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: hsl(var(--secondary)); }
::-webkit-scrollbar-thumb { background: hsl(var(--muted-foreground)); border-radius: 10px; }

/* ----------------------------- type ----------------------------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
.display {
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 6rem);
  letter-spacing: -.045em;
  line-height: .98;
}
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  letter-spacing: -.035em;
  font-weight: 600;
}
.lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: hsl(var(--muted-foreground)); font-weight: 300; }
.muted { color: hsl(var(--muted-foreground)); }

/* ----------------------------- layout ---------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 160px) 0; }
.section--tight { padding: clamp(48px, 7vw, 96px) 0; }
.divider { height: 1px; background: hsl(var(--border)); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ----------------------------- buttons --------------------------- */
.btn {
  --bg: hsl(var(--primary));
  --fg: hsl(var(--primary-foreground));
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: var(--bg);
  color: var(--fg);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast) ease;
}
.btn .arrow { transition: transform .4s var(--ease-out-expo); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.btn:hover .arrow { transform: translateX(5px); }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: hsl(var(--primary-hover));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out-expo);
}
.btn:hover::after { transform: scaleX(1); }

.btn--ghost { --bg: transparent; --fg: hsl(var(--foreground)); border: 1px solid hsl(var(--border)); }
.btn--ghost::after { background: hsl(var(--foreground)); }
.btn--ghost:hover { color: hsl(var(--background)); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: hsl(var(--foreground));
}
.link-arrow .arrow { transition: transform .4s var(--ease-out-expo); }
.link-arrow:hover .arrow { transform: translateX(6px); }
.link-arrow::before {
  content: ""; position: absolute;
}

/* ----------------------------- nav ------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: hsl(var(--nav-background) / .82);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: transform .45s var(--ease-out-expo), background .4s ease, border-color .4s ease, height .4s ease;
}
.nav.scrolled { border-bottom-color: hsl(var(--border)); height: 64px; }
.nav.hide { transform: translateY(-100%); }
.nav__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .42em; font-size: 1.18rem; }
.brand b { font-weight: 700; }
.brand span { font-size: .55rem; letter-spacing: .3em; font-weight: 500; color: hsl(var(--muted-foreground)); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 14px;
  font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: hsl(var(--nav-foreground));
  opacity: .82; transition: opacity .3s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { opacity: 1; }

.nav__tools { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s ease, transform .3s var(--ease-spring);
}
.icon-btn:hover { background: hsl(var(--secondary)); transform: translateY(-2px); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }

.burger { display: none; }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .4s var(--ease-spring), opacity .3s; }
.burger span + span { margin-top: 5px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 999;
  background: hsl(var(--background));
  padding: calc(var(--nav-h) + 30px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .6s var(--ease-out-expo), opacity .4s ease;
}
body.menu-open .drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a {
  font-size: clamp(1.6rem, 6vw, 2.4rem); font-weight: 600; letter-spacing: -.02em;
  padding: 12px 0; border-bottom: 1px solid hsl(var(--border));
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(24px);
}
body.menu-open .drawer a { animation: reveal-up .6s var(--ease-out-expo) forwards; }
body.menu-open .drawer a:nth-child(1){animation-delay:.05s}
body.menu-open .drawer a:nth-child(2){animation-delay:.10s}
body.menu-open .drawer a:nth-child(3){animation-delay:.15s}
body.menu-open .drawer a:nth-child(4){animation-delay:.20s}
body.menu-open .drawer a:nth-child(5){animation-delay:.25s}
body.menu-open .drawer a:nth-child(6){animation-delay:.30s}
body.menu-open .drawer a:nth-child(7){animation-delay:.35s}
body.menu-open .drawer a:nth-child(8){animation-delay:.40s}
body.menu-open .drawer a:nth-child(9){animation-delay:.45s}
body.menu-open .drawer a:nth-child(10){animation-delay:.50s}

/* ----------------------------- hero ------------------------------ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; color: #fff;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.2s var(--ease-out-expo), visibility 1.2s;
}
.hero__slide.active { opacity: 1; visibility: visible; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.18); transition: transform 7s linear;
}
.hero__slide.active img { transform: scale(1); }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.72) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter) clamp(60px, 9vw, 120px); }
.hero__kicker { color: rgba(255,255,255,.8); }
.hero__kicker::before { background: rgba(255,255,255,.8); }
.hero h1 { color: #fff; margin: 22px 0 18px; max-width: 16ch; }
.hero__sub { color: rgba(255,255,255,.85); font-weight: 300; max-width: 46ch; font-size: clamp(1rem,1.7vw,1.25rem); margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn--ghost:hover { color: #000; }
.hero .btn--ghost::after { background: #fff; }

.hero__nav { position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(60px,9vw,120px);
  display: flex; gap: 16px; align-items: center; }
.hero__count { color: #fff; font-size: .8rem; letter-spacing: .2em; font-variant-numeric: tabular-nums; }
.hero__dots { position: absolute; z-index: 3; left: var(--gutter); bottom: 38px; display: flex; gap: 10px; }
.hero__dot { width: 46px; height: 3px; background: rgba(255,255,255,.3); overflow: hidden; border-radius: 3px; }
.hero__dot i { display: block; height: 100%; width: 100%; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero__dot.active i { animation: hero-progress 6s linear forwards; }

.scroll-hint { position: absolute; z-index: 3; left: 50%; bottom: 30px; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-hint i { width: 1px; height: 40px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.scroll-hint i::after { content:""; position:absolute; inset:0; background:#fff; animation: scroll-trail 2.2s var(--ease-out-expo) infinite; }
@keyframes scroll-trail { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

/* page hero (inner pages) */
.phero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.phero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.7)); }
.phero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter) clamp(46px,6vw,84px); }
.phero h1 { color: #fff; font-size: clamp(2.4rem,6vw,5rem); margin: 16px 0 12px; }
.phero p { color: rgba(255,255,255,.85); max-width: 52ch; font-weight: 300; }
.phero .eyebrow { color: rgba(255,255,255,.8); }
.phero .eyebrow::before { background: rgba(255,255,255,.8); }

/* breadcrumb */
.crumb { display: flex; gap: 8px; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.crumb a:hover { color: hsl(var(--foreground)); }

/* ----------------------------- cards ----------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px,1.6vw,22px); }
.cat {
  position: relative; overflow: hidden; border-radius: 18px;
  min-height: 340px; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
}
.cat--lg { grid-column: span 7; min-height: 460px; }
.cat--sm { grid-column: span 5; min-height: 460px; }
.cat--third { grid-column: span 4; }
.cat--half { grid-column: span 6; }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 1.1s var(--ease-out-expo); }
.cat::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.78)); transition: background .5s ease; }
.cat:hover img { transform: scale(1.08); }
.cat:hover::after { background: linear-gradient(180deg, rgba(0,0,0,.1) 10%, rgba(0,0,0,.82)); }
.cat__body { position: relative; padding: clamp(22px,3vw,40px); width: 100%; }
.cat__body h3 { font-size: clamp(1.4rem,2.4vw,2.1rem); }
.cat__body .num { font-size:.7rem; letter-spacing:.3em; opacity:.7; display:block; margin-bottom:10px; }
.cat__go { margin-top: 14px; display: inline-flex; align-items: center; gap: 10px; font-size:.78rem;
  letter-spacing:.08em; text-transform: uppercase; opacity: 0; transform: translateY(12px);
  transition: opacity .45s var(--ease-out-expo), transform .45s var(--ease-out-expo); }
.cat:hover .cat__go { opacity: 1; transform: translateY(0); }

/* product / swatch cards */
.swatch {
  position: relative; overflow: hidden; border-radius: 14px; background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
}
.swatch__img { aspect-ratio: 1/1; overflow: hidden; }
.swatch__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out-expo); }
.swatch:hover .swatch__img img { transform: scale(1.09); }
.swatch__body { padding: 18px 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.swatch__body h4 { font-size: 1rem; letter-spacing: -.01em; }
.swatch__body .arrow { transition: transform .4s var(--ease-out-expo); color: hsl(var(--muted-foreground)); }
.swatch:hover .swatch__body .arrow { transform: translateX(5px); color: hsl(var(--foreground)); }
.swatch__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: hsl(var(--background) / .9);
  padding: 5px 12px; border-radius: 100px; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }

/* feature split */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,80px); align-items: center; }
.feature--rev { direction: rtl; }
.feature--rev > * { direction: ltr; }
.feature__media { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 5/4; box-shadow: var(--shadow-card); }
.feature__media img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease-out-expo); }
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__media .badge { position:absolute; top:20px; left:20px; background:hsl(var(--background)/.92); padding:8px 16px;
  border-radius:100px; font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600; }
.feature h2 { margin-bottom: 22px; }
.feature p + p { margin-top: 16px; }
.feature .btn { margin-top: 30px; }

/* stat / counter row */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,44px); }
.stat { border-top: 1px solid hsl(var(--border)); padding-top: 22px; }
.stat__num { font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__num .suf { font-size: .5em; vertical-align: super; }
.stat__label { margin-top: 10px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }

/* brand marquee */
.marquee { overflow: hidden; border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); padding: 30px 0; }
.marquee__track { display: flex; gap: clamp(40px,6vw,90px); width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-size: clamp(1.3rem,2.6vw,2.2rem); font-weight: 600; letter-spacing: .02em; color: hsl(var(--muted-foreground)); white-space: nowrap; transition: color .3s ease; }
.marquee__item:hover { color: hsl(var(--foreground)); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* timeline */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content:""; position:absolute; left: 7px; top: 6px; bottom: 6px; width: 1px; background: hsl(var(--border)); }
.tl { position: relative; padding: 0 0 clamp(34px,5vw,58px) 44px; }
.tl::before { content:""; position:absolute; left:0; top:4px; width:15px; height:15px; border-radius:50%;
  background: hsl(var(--background)); border: 2px solid hsl(var(--foreground)); transition: background .4s ease, transform .4s var(--ease-spring); }
.tl.in::before { animation: ms-dot-pop .6s var(--ease-spring) both; }
.tl:hover::before { background: hsl(var(--foreground)); }
.tl__year { font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 700; letter-spacing: -.03em; }
.tl__text { color: hsl(var(--muted-foreground)); max-width: 60ch; margin-top: 6px; }

/* quote / pull */
.pull { font-size: clamp(1.6rem,4vw,3rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.18; max-width: 22ch; }
.pull .hl { position: relative; }
.pull .hl::after { content:""; position:absolute; left:0; right:0; bottom: 4px; height: .34em; background: hsl(var(--muted)); z-index:-1;
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-out-expo) .3s; }
.pull.in .hl::after { transform: scaleX(1); }

/* gallery */
.gallery { columns: 3; column-gap: clamp(14px,1.8vw,22px); }
.gitem { break-inside: avoid; margin-bottom: clamp(14px,1.8vw,22px); position: relative; overflow: hidden; border-radius: 14px; cursor: pointer; }
.gitem img { width: 100%; height: auto; display: block; transition: transform 1.1s var(--ease-out-expo); }
.gitem::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,.72)); opacity:0; transition:opacity .45s ease; }
.gitem__cap { position:absolute; left:0; right:0; bottom:0; padding: 22px; color:#fff; z-index:2;
  transform: translateY(14px); opacity:0; transition: transform .5s var(--ease-out-expo), opacity .5s ease; }
.gitem__cap h4 { font-size: 1.2rem; }
.gitem__cap span { font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; opacity:.8; }
.gitem:hover img { transform: scale(1.06); }
.gitem:hover::after { opacity: 1; }
.gitem:hover .gitem__cap { transform: translateY(0); opacity: 1; }

/* lightbox */
.gitem { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 1600; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: clamp(8px,2vw,24px); padding: clamp(16px,4vw,48px);
  opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(8px); z-index: -1; }
.lightbox__fig { position: relative; z-index: 2; margin: 0; max-width: min(1100px, 100%); max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; }
.lightbox__fig img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 10px;
  box-shadow: var(--shadow-lift); transform: scale(.96); transition: transform .5s var(--ease-spring); }
.lightbox.open .lightbox__fig img { transform: scale(1); }
.lightbox__fig figcaption { color: #fff; margin-top: 18px; text-align: center; }
.lightbox__fig figcaption b { display: block; font-size: 1.15rem; font-weight: 600; }
.lightbox__fig figcaption span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; opacity: .65; }
.lightbox__nav, .lightbox__close { position: relative; z-index: 3; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); transition: background .3s ease, transform .3s var(--ease-spring); }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,.16); transform: scale(1.08); }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }
.lightbox__close { position: absolute; top: clamp(16px,3vw,32px); right: clamp(16px,3vw,32px); }
.lightbox__counter { position: absolute; top: clamp(20px,3vw,36px); left: clamp(16px,3vw,32px); z-index: 3;
  color: #fff; font-size: .8rem; letter-spacing: .2em; opacity: .7; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; }
  .lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); }
  .lightbox__prev { left: 12px; } .lightbox__next { right: 12px; }
  .lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
}

/* filter pills */
.filters { display:flex; flex-wrap:wrap; gap:10px; }
.pill { padding: 9px 20px; border-radius: 100px; border:1px solid hsl(var(--border)); font-size:.76rem;
  letter-spacing:.08em; text-transform:uppercase; transition: all .35s var(--ease-spring); }
.pill:hover { transform: translateY(-2px); }
.pill.active { background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground)); }

/* info / contact cards */
.icard { padding: clamp(26px,3vw,40px); border:1px solid hsl(var(--border)); border-radius: 18px; background: hsl(var(--card));
  transition: transform .5s var(--ease-spring), box-shadow .5s ease, border-color .4s ease; }
.icard:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.icard h4 { font-size:.78rem; letter-spacing:.2em; text-transform:uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 14px; }
.icard p { font-size: 1.15rem; font-weight: 500; }

/* split CTA band */
.band { position: relative; overflow: hidden; border-radius: 22px; color:#fff; padding: clamp(48px,7vw,96px) var(--gutter); }
.band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transform: scale(1.05); }
.band::after { content:""; position:absolute; inset:0; z-index:-1; background: rgba(0,0,0,.55); }
.band h2 { color:#fff; font-size: clamp(2rem,5vw,3.6rem); max-width: 18ch; }
.band p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 18px 0 34px; font-weight: 300; }
.band .btn { background:#fff; color:#000; }
.band .btn::after { background: rgba(255,255,255,.75); }

/* map */
.map-wrap { border-radius: 18px; overflow: hidden; border:1px solid hsl(var(--border)); box-shadow: var(--shadow-soft); }
.map-wrap iframe { width:100%; height: 440px; border:0; display:block; filter: grayscale(1) contrast(1.05); transition: filter .6s ease; }
.map-wrap:hover iframe { filter: grayscale(0); }

/* form */
.field { position: relative; margin-bottom: 22px; }
.field input, .field textarea {
  width:100%; padding: 16px 4px; background: transparent; border: none; border-bottom: 1px solid hsl(var(--border));
  font-family: inherit; font-size: 1rem; color: hsl(var(--foreground)); transition: border-color .4s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: hsl(var(--foreground)); }
.field label { position:absolute; left:4px; top:16px; color: hsl(var(--muted-foreground)); pointer-events:none;
  transition: all .35s var(--ease-out-expo); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: -10px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: hsl(var(--foreground)); }

/* ----------------------- product detail (PDP) -------------------- */
.pdp-head { padding-top: calc(var(--nav-h) + clamp(28px, 5vw, 64px)); }
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: start; margin-top: 24px; }
.pdp__media { position: sticky; top: calc(var(--nav-h) + 20px); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.pdp__media img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }
.pdp__info h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 14px 0 8px; letter-spacing: -.03em; }
.pdp__info .meta { color: hsl(var(--muted-foreground)); letter-spacing: .04em; margin-bottom: 22px; }
.pdp__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.pdp__specs div { border-top: 1px solid hsl(var(--border)); padding-top: 12px; }
.pdp__specs span { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 4px; }
.pdp__specs b { font-weight: 500; }
.pdp__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 860px) { .pdp { grid-template-columns: 1fr; } .pdp__media { position: static; } }

/* ----------------------- product catalog ------------------------- */
.catalog-bar {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 16px 0; margin-bottom: 8px;
  background: hsl(var(--background) / .9); backdrop-filter: blur(12px);
}
.search {
  position: relative; flex: 1 1 320px; min-width: 240px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border: 1px solid hsl(var(--border)); border-radius: 100px;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.search:focus-within { border-color: hsl(var(--foreground)); box-shadow: var(--shadow-soft); }
.search svg { width: 18px; height: 18px; stroke: hsl(var(--muted-foreground)); fill: none; stroke-width: 1.8; flex: none; }
.search input { flex: 1; border: none; background: none; outline: none; font-family: inherit; font-size: .98rem; color: hsl(var(--foreground)); -webkit-appearance: none; appearance: none; }
.search input::placeholder { color: hsl(var(--muted-foreground)); }
.search input::-webkit-search-cancel-button, .search input::-webkit-search-decoration { -webkit-appearance: none; display: none; }
.search__clear { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  color: hsl(var(--muted-foreground)); opacity: 0; pointer-events: none; transition: opacity .25s ease, background .25s; }
.search__clear.show { opacity: 1; pointer-events: auto; }
.search__clear:hover { background: hsl(var(--secondary)); color: hsl(var(--foreground)); }
.catalog-count { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); white-space: nowrap; }
.catalog-count b { color: hsl(var(--foreground)); font-variant-numeric: tabular-nums; }

.filter-row { margin-bottom: 14px; }
.filter-row__label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin: 0 0 12px 2px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 9px; }

.catalog-grid { margin-top: 30px; }
.pcard { text-align: left; width: 100%; }
.pcard__img { aspect-ratio: 3/2; overflow: hidden; background: hsl(var(--muted, 0 0% 96%)); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1s var(--ease-out-expo); }
.pcard:hover .pcard__img img { transform: scale(1.08); }
.pcard__body { padding: 16px 18px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pcard__body h4 { font-size: 1rem; }
.pcard__body .sub { display: block; font-size: .76rem; letter-spacing: .04em; color: hsl(var(--muted-foreground)); margin-top: 3px; }
.pcard__body .arrow { color: hsl(var(--muted-foreground)); transition: transform .4s var(--ease-out-expo), color .3s; flex: none; }
.pcard:hover .pcard__body .arrow { transform: translateX(5px); color: hsl(var(--foreground)); }

.catalog-empty {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 48px auto;
  padding: 56px 40px;
  text-align: center;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  box-shadow: 0 10px 40px -20px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.catalog-empty__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--muted) / 0.5);
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
}
.catalog-empty__icon svg { width: 28px; height: 28px; }
.catalog-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: hsl(var(--foreground));
  letter-spacing: 0.01em;
}
.catalog-empty p {
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.catalog-empty .btn { margin-top: 10px; min-width: 160px; }

/* quick-view modal */
.modal { position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(6px); }
.modal__panel { position: relative; z-index: 2; width: min(880px, 100%); max-height: 88vh; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; background: hsl(var(--card)); border-radius: 20px;
  box-shadow: var(--shadow-lift); transform: translateY(30px) scale(.97); transition: transform .5s var(--ease-spring); }
.modal.open .modal__panel { transform: none; }
.modal__media { position: relative; overflow: hidden; height: 100%; min-height: 320px; max-height: 88vh; background: hsl(var(--muted, 0 0% 96%)); }
.modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.modal__body { padding: clamp(28px,4vw,46px); display: flex; flex-direction: column; max-height: 88vh; overflow-y: auto; overscroll-behavior: contain; }
.modal__body::-webkit-scrollbar { width: 8px; }
.modal__body::-webkit-scrollbar-thumb { background: hsl(var(--border)); border-radius: 8px; }
.modal__body .swatch__tag { position: static; display: inline-block; margin-bottom: 16px; }
.modal__body h3 { font-size: clamp(1.6rem,3vw,2.4rem); }
.modal__body .meta { color: hsl(var(--muted-foreground)); margin: 8px 0 20px; letter-spacing: .04em; }
.modal__body p { color: hsl(var(--muted-foreground)); font-weight: 300; }
.modal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.modal__specs div { border-top: 1px solid hsl(var(--border)); padding-top: 10px; }
.modal__specs span { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.modal__specs b { font-weight: 500; }
.modal__cta { margin-top: auto; padding-top: 12px; display: flex; gap: 12px; flex-wrap: wrap; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 42px; height: 42px; border-radius: 50%;
  background: hsl(var(--background)/.9); display: grid; place-items: center; transition: transform .3s var(--ease-spring); }
.modal__close:hover { transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
@media (max-width: 700px) {
  .modal__panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .modal__media { min-height: 240px; height: 240px; max-height: none; }
  .modal__body { max-height: none; overflow: visible; }
}


/* ----------------------------- footer ---------------------------- */
.footer { background: hsl(var(--secondary)); padding: clamp(60px,8vw,110px) 0 40px; margin-top: 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(30px,4vw,60px); }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { color: hsl(var(--muted-foreground)); max-width: 34ch; font-weight: 300; }
.footer h5 { font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 20px; }
.footer__col a, .footer__col p { display:block; padding: 7px 0; color: hsl(var(--foreground)); position: relative; width: fit-content; }
.footer__col a::after { content:""; position:absolute; left:0; bottom:6px; width:0; height:1px; background: currentColor; transition: width .4s var(--ease-out-expo); }
.footer__col a:hover::after { width: 100%; }
.footer__bottom { margin-top: clamp(48px,6vw,80px); padding-top: 28px; border-top: 1px solid hsl(var(--border));
  display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size:.78rem; color: hsl(var(--muted-foreground)); }
.footer__mark { font-size: clamp(3rem,16vw,13rem); font-weight: 800; letter-spacing: -.05em; line-height: .8;
  color: transparent; -webkit-text-stroke: 1px hsl(var(--border)); margin-top: 40px; user-select: none; overflow: hidden; }

/* ----------------------- scroll reveal system -------------------- */
[data-reveal] { opacity: 0; transition: opacity var(--duration-slow) var(--ease-out-expo), transform var(--duration-slow) var(--ease-out-expo); will-change: opacity, transform; }
[data-reveal="up"] { transform: translateY(46px); }
[data-reveal="down"] { transform: translateY(-46px); }
[data-reveal="left"] { transform: translateX(60px); }
[data-reveal="right"] { transform: translateX(-60px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal="clip"] { clip-path: inset(0 0 100% 0); transform: none; }
[data-reveal].in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
[data-delay="1"]{ transition-delay:.08s } [data-delay="2"]{ transition-delay:.16s }
[data-delay="3"]{ transition-delay:.24s } [data-delay="4"]{ transition-delay:.32s }
[data-delay="5"]{ transition-delay:.40s } [data-delay="6"]{ transition-delay:.48s }

/* line reveal for headings */
.reveal-lines span { display: inline-block; overflow: hidden; }
.reveal-lines span > i { display: inline-block; font-style: normal; transform: translateY(110%); transition: transform .9s var(--ease-out-expo); }
.reveal-lines.in span > i { transform: translateY(0); }
.reveal-lines.in span:nth-child(2) > i { transition-delay: .08s; }
.reveal-lines.in span:nth-child(3) > i { transition-delay: .16s; }

/* keyframes */
@keyframes reveal-up { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform:none; } }
@keyframes hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes ms-dot-pop { 0%{ transform: scale(0); } 60%{ transform: scale(1.3); } 100%{ transform: scale(1);} }
@keyframes float-y { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
@keyframes fade-in { from{opacity:0} to{opacity:1} }

.float { animation: float-y 6s ease-in-out infinite; }

/* back to top */
.to-top {
  /* Stacked above the enquiry-list FAB (56px tall at bottom:22px). */
  position: fixed; right: 25px; bottom: 92px; z-index: 900;

  width: 50px; height: 50px; border-radius: 50%;
  background: hsl(var(--foreground)); color: hsl(var(--background));
  display: grid; place-items: center; box-shadow: var(--shadow-card);
  opacity: 0; transform: translateY(22px) scale(.85); pointer-events: none;
  transition: opacity .4s var(--ease-out-expo), transform .45s var(--ease-spring), background .4s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }

/* top progress bar */
.progress-top { position: fixed; top:0; left:0; height: 3px; background: hsl(var(--foreground)); z-index: 1100; width: 0; transition: width .1s linear; }

/* cursor dot (desktop) */
.cursor { position: fixed; top:0; left:0; width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--foreground));
  pointer-events: none; z-index: 2000; transform: translate(-50%,-50%); transition: transform .12s ease; mix-blend-mode: difference; }
.cursor-ring { position: fixed; top:0; left:0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid hsl(var(--foreground));
  pointer-events: none; z-index: 2000; transform: translate(-50%,-50%); transition: transform .25s var(--ease-out-expo), width .25s, height .25s; mix-blend-mode: difference; }
.cursor-ring.grow { width: 64px; height: 64px; }

/* theme toggle icon swap */
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* ----------------------------- responsive ------------------------ */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .burger { display: block; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cat--lg, .cat--sm, .cat--third, .cat--half { grid-column: span 6; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature--rev { direction: ltr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .gallery { columns: 2; }
  .cat-grid > * { grid-column: span 12 !important; min-height: 320px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__nav { display: none; }
  .cursor, .cursor-ring { display: none; }
}
@media (max-width: 520px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* skip-to-content link (visible only on keyboard focus) */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 3000;
  background: hsl(var(--foreground)); color: hsl(var(--background));
  padding: 11px 20px; border-radius: 100px; font-size: .82rem; font-weight: 500;
  letter-spacing: .04em; box-shadow: var(--shadow-card);
  transform: translateY(-160%); transition: transform .3s var(--ease-out-expo);
}
.skip-link:focus-visible { transform: none; outline: none; }
main:focus { outline: none; }

/* keyboard focus visibility (mouse clicks stay clean via :focus-visible) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
.pcard:focus-visible, .gitem:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .pill:focus-visible { outline-offset: 4px; }
.gitem:focus-visible { outline-offset: -3px; border-radius: 14px; }

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

/* ----------------------- catalog pager ------------------------- */
.pager { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.pager__nums { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pager__num {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid hsl(var(--border)); border-radius: 10px;
  background: transparent; color: hsl(var(--foreground));
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.pager__num:hover:not(:disabled) { border-color: hsl(var(--foreground)); transform: translateY(-1px); }
.pager__num.is-active { background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground)); }
.pager__num:disabled { opacity: .35; cursor: not-allowed; }
.pager__ellipsis { padding: 0 6px; color: hsl(var(--muted-foreground)); user-select: none; }
.pager__jump {
  display: inline-flex; align-items: center; gap: 10px;
  padding-left: 14px; border-left: 1px solid hsl(var(--border));
}
.pager__jump-input {
  width: 72px; height: 36px; padding: 0 10px; text-align: center;
  border: 1px solid hsl(var(--border)); border-radius: 8px;
  background: hsl(var(--background)); color: hsl(var(--foreground));
  font-size: 14px; font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pager__jump-input:focus { outline: none; border-color: hsl(var(--foreground)); box-shadow: 0 0 0 3px hsl(var(--foreground) / .1); }
.pager__jump-of { font-size: 13px; color: hsl(var(--muted-foreground)); }
.pager__go {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 18px; border-radius: 8px;
  background: hsl(var(--foreground)); color: hsl(var(--background));
  border: none; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  cursor: pointer; transition: transform .2s ease, opacity .2s ease;
}
.pager__go:hover { transform: translateY(-1px); opacity: .9; }
.pager__go svg { width: 14px; height: 14px; }

/* ---------- Product Detail Page (PDP) ---------- */
.pdp-head { padding-bottom: clamp(36px, 5vw, 64px); }
.pdp-details { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(48px, 7vw, 96px); }
.pdp-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); margin-top: 28px; align-items: start; }
@media (max-width: 900px) { .pdp-layout { grid-template-columns: 1fr; } }
.pdp-hero { border-radius: var(--radius, 14px); overflow: hidden; background: var(--panel, #f4f4f2); aspect-ratio: 4/3; }
.pdp-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; margin-top: 14px; }
.pdp-thumb { padding: 0; border: 1px solid transparent; background: var(--panel, #f4f4f2); border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 1/1; transition: border-color .2s, transform .2s; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pdp-thumb:hover { transform: translateY(-2px); }
.pdp-thumb.active { border-color: var(--fg, #111); }
.pdp-info h1 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin: 10px 0 6px; }
.pdp-info .meta { color: var(--muted, #666); margin-bottom: 18px; }
.pdp-short { color: var(--muted, #555); line-height: 1.65; margin: 10px 0 22px; }
.pdp-short p { margin: 0 0 8px; }
.pdp-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; padding: 22px 0; border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 24px; }
.pdp-specs > div { display: flex; flex-direction: column; gap: 4px; }
.pdp-specs span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted, #888); }
.pdp-specs b { font-weight: 600; font-size: .98rem; }
.pdp-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.pdp-content h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 18px; }
.pdp-prose { line-height: 1.75; color: var(--fg, #222); }
.pdp-prose p { margin: 0 0 14px; }
.pdp-prose :where(div, figure, figcaption, td, th, li) > p { margin: 0; }
.pdp-prose p:empty { display: none; }
.pdp-prose img { max-width: 100%; height: auto; border-radius: 0; margin: 16px 0; display: block; }
.pdp-prose > div { margin-bottom: 24px; }
.pdp-prose h2, .pdp-prose h3, .pdp-prose h4 { margin: 28px 0 12px; }
.pdp-prose ul, .pdp-prose ol { padding-left: 22px; margin: 0 0 14px; }
.pdp-prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.pdp-prose th, .pdp-prose td { border: 1px solid rgba(0,0,0,.1); padding: 8px 12px; text-align: left; }
.pdp-related-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.pdp-related-head h2 { margin: 0; font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

/* ===== PDP gallery slider ===== */
.pdp-hero { position: relative; }
.pdp-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pdp-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.pdp-slide.is-active { opacity: 1; pointer-events: auto; }
.pdp-hero .pdp-slide:not(.is-active) { position: absolute; }
.pdp-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #111; border: 1px solid rgba(0,0,0,.08);
  display: grid; place-items: center; cursor: pointer; z-index: 3;
  box-shadow: 0 6px 20px rgba(0,0,0,.12); transition: transform .2s, background .2s;
}
.pdp-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.pdp-nav svg { width: 20px; height: 20px; }
.pdp-nav--prev { left: 14px; }
.pdp-nav--next { right: 14px; }
.pdp-counter {
  position: absolute; bottom: 14px; right: 14px; z-index: 3;
  background: rgba(0,0,0,.55); color: #fff; font-size: .78rem; letter-spacing: .06em;
  padding: 5px 10px; border-radius: 999px;
}
/* thumbs: horizontal strip */
.pdp-thumbs {
  display: flex; gap: 10px; margin-top: 14px;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: thin;
  padding-bottom: 4px;
}
.pdp-thumbs::-webkit-scrollbar { height: 6px; }
.pdp-thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,.2); border-radius: 3px; }
.pdp-thumb {
  flex: 0 0 84px; width: 84px; height: 84px;
  padding: 0; border: 2px solid transparent; background: transparent; border-radius: 10px;
  overflow: hidden; cursor: pointer; transition: border-color .2s, transform .2s;
}
.pdp-thumb.active { border-color: var(--fg, #111); }
.pdp-thumb:hover { transform: translateY(-2px); }

/* ===== related products: 5 per row ===== */
.pcards--5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1100px) { .pcards--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .pcards--5 { grid-template-columns: repeat(2, 1fr); } }

/* ===== News: list & detail polish ===== */
.news-section { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(56px, 7vw, 96px); }

.news-featured{
  display:grid; grid-template-columns: 1.15fr 1fr; gap:0;
  border-radius:20px; overflow:hidden;
  background: var(--surface, #fff); border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.25);
  color: inherit; text-decoration:none; margin-bottom: 56px;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
}
.news-featured:hover{ transform: translateY(-4px); box-shadow: 0 40px 80px -30px rgba(0,0,0,.35); }
.news-featured__media{ position:relative; aspect-ratio: 4/3; overflow:hidden; background:#eee; }
.news-featured__media img{ width:100%; height:100%; object-fit:cover; transition: transform .8s ease; }
.news-featured:hover .news-featured__media img{ transform: scale(1.04); }
.news-featured__placeholder{ position:absolute; inset:0; background:linear-gradient(135deg,#e5e5e5,#f5f5f5); }
.news-featured__body{ padding: clamp(28px, 4vw, 56px); display:flex; flex-direction:column; justify-content:center; gap:16px; }
.news-featured__body h2{ font-family: var(--serif, serif); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height:1.15; letter-spacing:-.01em; margin:0; }
.news-featured__body p{ color: var(--muted, #666); font-size: 1.02rem; line-height:1.7; margin:0; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.news-featured__meta{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
@media (max-width: 820px){
  .news-featured{ grid-template-columns: 1fr; }
  .news-featured__media{ aspect-ratio: 16/9; }
}

.news-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:28px; }
.news-grid--three{ grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 980px){ .news-grid, .news-grid--three{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .news-grid, .news-grid--three{ grid-template-columns: 1fr; } }

.news-card{
  display:flex; flex-direction:column;
  background: var(--surface, #fff); border:1px solid rgba(0,0,0,.06);
  border-radius: 16px; overflow:hidden;
  color: inherit; text-decoration:none;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.news-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.28); border-color: rgba(0,0,0,.12); }
.news-card__media{ aspect-ratio: 16/10; overflow:hidden; background:#eee; position:relative; }
.news-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .7s ease; }
.news-card:hover .news-card__media img{ transform: scale(1.05); }
.news-card__placeholder{ position:absolute; inset:0; background:linear-gradient(135deg,#eee,#f8f8f8); }
.news-card__body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.news-card__body h3{ font-family: var(--serif, serif); font-size: 1.28rem; line-height:1.28; letter-spacing:-.005em; margin:0; }
.news-card__body p{ color: var(--muted, #666); font-size:.94rem; line-height:1.6; margin:0; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.news-card__meta{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }

.news-chip{
  display:inline-flex; align-items:center;
  padding: 4px 10px; border-radius: 999px;
  background: #111; color:#fff;
  font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
}
.news-chip--light{ background: rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); }
.news-date{ font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color: var(--muted, #888); font-weight:500; }
.news-date--light{ color: rgba(255,255,255,.85); }

.news-more{ margin-top:auto; padding-top:14px; display:inline-flex; align-items:center; gap:6px; font-weight:600; font-size:.9rem; color: var(--fg, #111); }
.news-more svg{ transition: transform .3s ease; }
.news-card:hover .news-more svg, .news-featured:hover .news-more svg{ transform: translateX(4px); }

.news-empty{
  text-align:center; padding: 80px 20px;
  border: 1px dashed rgba(0,0,0,.15); border-radius: 20px;
  background: rgba(0,0,0,.02);
}
.news-empty__icon{ font-size: 42px; margin-bottom: 12px; opacity:.6; }
.news-empty h3{ font-family: var(--serif, serif); font-size: 1.5rem; margin: 0 0 8px; }
.news-empty p{ color: var(--muted, #666); margin:0; }

/* Detail */
.news-phero{ min-height: 520px; }
.news-phero__chips{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:18px; }
.news-article-section{ padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(24px, 3vw, 40px); }
.news-article{
  max-width: 760px; margin: 0 auto;
  font-family: var(--serif, Georgia, serif);
  font-size: 1.12rem; line-height: 1.85; color: var(--fg, #1a1a1a);
}
.news-article > p:first-of-type::first-letter{
  font-size: 3.6em; float:left; line-height: .95; padding: 6px 12px 0 0; font-weight:700;
}
.news-article p{ margin: 0 0 1.2em; }
.news-article h2{ font-size: 1.75rem; margin: 1.8em 0 .6em; letter-spacing:-.01em; }
.news-article h3{ font-size: 1.35rem; margin: 1.6em 0 .5em; }
.news-article img{ width:100%; height:auto; border-radius: 12px; margin: 1.6em 0; }
.news-article a{ color: var(--fg, #111); text-decoration: underline; text-decoration-thickness:1px; text-underline-offset: 3px; }
.news-article blockquote{
  border-left: 3px solid #111; padding: 8px 0 8px 22px; margin: 1.6em 0;
  font-style: italic; color: var(--muted, #444);
}
.news-article ul, .news-article ol{ padding-left: 1.4em; margin: 0 0 1.2em; }
.news-article li{ margin: .35em 0; }
.news-article-foot{ max-width: 760px; margin: 40px auto 0; text-align:center; }

.news-related-section{ padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(64px, 8vw, 110px); background: rgba(0,0,0,.02); border-top: 1px solid rgba(0,0,0,.06); }
.news-related-head{ text-align:center; margin-bottom: 40px; }
.news-related-head h2{ font-family: var(--serif, serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin: 6px 0 0; letter-spacing:-.01em; }

[data-theme="dark"] .news-featured,
[data-theme="dark"] .news-card{ background: #141414; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .news-featured:hover,
[data-theme="dark"] .news-card:hover{ border-color: rgba(255,255,255,.18); }
[data-theme="dark"] .news-chip{ background:#fff; color:#111; }
[data-theme="dark"] .news-empty{ border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.02); }
[data-theme="dark"] .news-related-section{ background: rgba(255,255,255,.02); border-top-color: rgba(255,255,255,.06); }

/* ---- Image loading: fade-in + neutral placeholder (perf pass) ---- */
img[data-fade] { opacity: 0; transition: opacity .35s ease; }
img[data-fade].is-loaded, .no-js img[data-fade] { opacity: 1; }
.cat, .swatch__img, .pcard__img, .feature__media, .news-card__media, .news-featured__media, .pdp-dl-card__img { background-color: #efedea; }
@media (prefers-reduced-motion: reduce) { img[data-fade] { transition: none; } }

/* ---------- wishlist / enquiry list ---------- */
.wl-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12100e;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.wl-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 34px rgba(0,0,0,.28); }
.wl-fab__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: #b4762c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .2s ease, transform .2s ease;
}
.wl-fab.has-items .wl-fab__count { opacity: 1; transform: scale(1); }

.wl-tray {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.wl-tray.open { pointer-events: auto; opacity: 1; }
.wl-tray__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18,16,14,.35);
  opacity: 0;
  transition: opacity .3s ease;
}
.wl-tray.open .wl-tray__backdrop { opacity: 1; }
.wl-tray__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 86vw);
  background: #faf7f2;
  box-shadow: -10px 0 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.wl-tray.open .wl-tray__panel { transform: translateX(0); }
.wl-tray__head {
  padding: 24px 22px 18px;
  border-bottom: 1px solid #e7e0d6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.wl-tray__title { font-size: 18px; font-weight: 700; color: #12100e; }
.wl-tray__sub { font-size: 12px; color: #7c7469; margin-top: 4px; }
.wl-tray__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e7e0d6;
  background: transparent;
  color: #7c7469;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.wl-tray__close:hover { color: #12100e; border-color: #b4762c; background: #fff; }
.wl-tray__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.wl-tray__foot {
  padding: 16px 22px 22px;
  border-top: 1px solid #e7e0d6;
  display: flex;
  gap: 10px;
}
.wl-tray__btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: #12100e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.wl-tray__btn:hover { background: #b4762c; transform: translateY(-1px); }
.wl-tray__btn--ghost {
  background: transparent;
  color: #7c7469;
  border: 1px solid #e7e0d6;
}
.wl-tray__btn--ghost:hover { background: #fff; color: #12100e; border-color: #b4762c; }

.wl-empty { color: #7c7469; font-size: 14px; text-align: center; margin-top: 40px; line-height: 1.7; }
.wl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e7e0d6;
  margin-bottom: 10px;
}
.wl-item__img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3efe8;
}
.wl-item__img img { width: 100%; height: 100%; object-fit: cover; }
.wl-item__body { flex: 1; min-width: 0; }
.wl-item__name { font-size: 14px; font-weight: 600; color: #12100e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-item__cap { font-size: 12px; color: #7c7469; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-item__remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e7e0d6;
  background: transparent;
  color: #7c7469;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.wl-item__remove:hover { color: #c0392b; border-color: #c0392b; background: #fff; }

.wl-slot { background: #fff; border: 1px solid #e7e0d6; border-radius: 14px; padding: 16px; }
.wl-slot__head { font-size: 13px; font-weight: 700; color: #12100e; margin-bottom: 12px; }
.wl-slot__item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0ebe3; }
.wl-slot__item:last-child { border-bottom: none; }
.wl-slot__item img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; background: #f3efe8; flex-shrink: 0; }
.wl-slot__name { font-size: 13px; font-weight: 600; color: #12100e; }
.wl-slot__cap { font-size: 11px; color: #7c7469; margin-top: 2px; }
.wl-slot__remove {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e7e0d6;
  background: transparent;
  color: #7c7469;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.wl-slot__remove:hover { color: #c0392b; border-color: #c0392b; }

.pdp-wl-lock { overflow: hidden; }
.pdp-wl-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  background: hsl(var(--foreground) / 35%);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .35s var(--ease-out-expo);
}
.pdp-wl-modal.open { opacity: 1; }
.pdp-wl-modal__panel {
  width: min(620px, 94vw);
  max-height: min(760px, 86vh);
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(.96);
  transition: transform .45s var(--ease-out-expo), opacity .35s ease;
}
.pdp-wl-modal.open .pdp-wl-modal__panel { transform: translateY(0) scale(1); }
.pdp-wl-modal__head {
  padding: clamp(18px, 4vw, 26px) clamp(20px, 5vw, 30px) clamp(14px, 3vw, 18px);
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.pdp-wl-modal__title-wrap { display: flex; flex-direction: column; gap: 6px; }
.pdp-wl-modal__eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.pdp-wl-modal__title-wrap h3 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: hsl(var(--foreground));
  line-height: 1.15;
}
.pdp-wl-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--secondary));
  transition: background .25s ease, color .25s ease, transform .25s var(--ease-spring);
  flex-shrink: 0;
}
.pdp-wl-modal__close:hover { background: hsl(var(--foreground)); color: hsl(var(--background)); transform: rotate(90deg); }
.pdp-wl-modal__body {
  padding: clamp(18px, 4vw, 26px) clamp(20px, 5vw, 30px) clamp(22px, 5vw, 30px);
  overflow-y: auto;
  overscroll-behavior: contain;
  min-height: 220px;
}
.pdp-wl-modal__foot {
  padding: clamp(14px, 3vw, 18px) clamp(20px, 5vw, 30px) clamp(18px, 4vw, 26px);
  border-top: 1px solid hsl(var(--border));
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.pdp-wl-modal__empty {
  color: hsl(var(--muted-foreground));
  font-size: .9rem;
  text-align: center;
  padding: 40px 0;
}
.pdp-wl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }

.pdp-wl-card {
  position: relative;
  background: hsl(var(--card));
  border: 1.5px solid hsl(var(--border));
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease-spring);
}
.pdp-wl-card:hover {
  border-color: hsl(var(--foreground) / 25%);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.pdp-wl-card.is-active {
  border-color: hsl(var(--foreground));
  box-shadow: 0 0 0 1px hsl(var(--foreground)), var(--shadow-soft);
}
.pdp-wl-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  opacity: 0;
  transform: scale(.6);
  transition: opacity .25s ease, transform .25s var(--ease-spring);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.pdp-wl-card.is-active::after { opacity: 1; transform: scale(1); }
.pdp-wl-card__img { aspect-ratio: 3/2; border-radius: 10px; overflow: hidden; background: hsl(var(--muted)); display: block; }
.pdp-wl-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform .6s var(--ease-out-expo), opacity .35s ease;
}
.pdp-wl-card__img img.is-loaded { opacity: 1; }
.pdp-wl-card:hover .pdp-wl-card__img img { transform: scale(1.06); }
.pdp-wl-card__cap {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-top: 12px;

  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s ease;
}
.pdp-wl-card.is-active .pdp-wl-card__cap { color: hsl(var(--foreground)); font-weight: 600; }
@media (max-width: 520px) {
  .pdp-wl-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pdp-wl-modal__foot { flex-direction: column-reverse; }
  .pdp-wl-modal__foot .btn { width: 100%; justify-content: center; }
}

/* Fly-to-enquiry ball animation */
.pdp-wl-fly {
  position: fixed;
  z-index: 4000;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes wl-fab-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  70% { transform: scale(.95); }
  100% { transform: scale(1); }
}
.wl-fab.is-bump { animation: wl-fab-bump .55s cubic-bezier(.34,1.56,.64,1); }

/* Style already saved in the enquiry list */
.pdp-wl-card.is-saved .pdp-wl-card__cap::after {
  content: " · in list";
  color: hsl(var(--foreground));
  font-weight: 600;
}
.pdp-wl-card.is-saved { border-color: hsl(var(--border)); opacity: .85; }

.wl-tray__btn.is-loading { opacity: .7; pointer-events: none; }
