:root {
  --black: #090a0a;
  --panel: #111211;
  --cream: #f6f1e8;
  --paper: #eee7da;
  --paper-card: #f8f4ec;
  --ink: #201c17;
  --ink-muted: #6e675e;
  --muted: #aaa69f;
  --gold: #cfa85d;
  --gold2: #f0d394;
  --line: rgba(207, 168, 93, 0.25);
  --green: #25d366;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font:
    16px/1.65 "Manrope",
    Arial,
    sans-serif;
}

[hidden] { display: none !important; }
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.header {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(#08090bde, transparent);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  direction: ltr;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}
.brandMark {
  display: block;
  width: 96px;
  height: 51px;
  flex: 0 0 auto;
  overflow: hidden;
}
.brandMark img {
  width: 96px;
  height: auto;
}
.brand strong {
  display: block;
  font:
    500 26px/1 "Cormorant Garamond",
    serif;
  letter-spacing: 0.16em;
}
.brand small {
  display: block;
  color: var(--gold2);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  margin-left: auto;
}
.languageMenu { position: relative; z-index: 20; order: 3; flex: 0 0 auto; }
.languageMenu summary {
  min-width: 126px;
  height: 42px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  border: 1px solid rgba(240, 211, 148, 0.36);
  background: rgba(7, 8, 9, 0.82);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  backdrop-filter: blur(12px);
}
.languageMenu summary::-webkit-details-marker { display: none; }
.languageMenu summary::after { content: "⌄"; color: var(--gold2); font-size: 14px; transform: translateY(-2px); }
.languageMenu[open] summary::after { transform: rotate(180deg) translateY(-2px); }
.languageIcon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold2);
  stroke-width: 1.7;
}
.langCode { display: none; letter-spacing: .08em; }
.languagePanel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 224px;
  max-width: calc(100vw - 30px);
  padding: 7px;
  border: 1px solid var(--line);
  background: #111210f5;
  box-shadow: 0 18px 45px #0009;
}
.languagePanel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 11px;
  color: #d5d0c7;
  font-size: 13px;
}
.languagePanel a span { color: #8f8a82; font-size: 10px; letter-spacing: .12em; }
.languagePanel a:hover,
.languagePanel a.active { background: rgba(207, 168, 93, 0.16); color: var(--gold2); }
.navlinks > a:not(.button):hover {
  color: var(--gold2);
}
.navlinks > a:not(.button):focus-visible,
.footer a:focus-visible {
  color: var(--gold2);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s;
}
.button:hover,
.button.primary {
  background: var(--gold);
  color: var(--black);
}
.button.primary:hover {
  background: var(--gold2);
}
.hero {
  height: clamp(720px, 100svh, 860px);
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 8, 9, 0.98) 4%,
      rgba(7, 8, 9, 0.83) 49%,
      rgba(7, 8, 9, 0.25) 100%
    ),
    url("fine-silky-natural-human-hair-dubai-aurum-branded-1200.webp");
  background-position: center, left center;
  background-size: cover, 125% auto;
  background-repeat: no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--black));
}
.heroContent {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-top: 100px;
}
.eyebrow {
  color: var(--gold2);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1,
.pageHero h1 {
  font:
    500 clamp(48px, 7vw, 88px)/0.96 "Cormorant Garamond",
    serif;
  margin: 0 0 25px;
  letter-spacing: -0.02em;
}
.hero h1 span,
.pageHero h1 span {
  color: var(--gold);
}
.hero p,
.pageHero p {
  max-width: 650px;
  color: #d3cfc7;
  font-size: 18px;
  margin: 0 0 32px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.proof {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 0;
  right: 0;
}
.proofin {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #090a0ce8;
  backdrop-filter: blur(8px);
}
.proofItem {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.proofItem:last-child {
  border: 0;
}
.proofItem b {
  display: block;
  color: var(--gold2);
  font:
    500 23px "Cormorant Garamond",
    serif;
}
.proofItem span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shippingStrip { border-block: 1px solid var(--line); background: #0e0f0e; }
.salesGateway {
  padding: 96px 0;
  background: #f3ecdf;
  color: var(--ink);
}
.homeHairProof {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #0b0c0c;
  border-block: 1px solid var(--line);
}
.hairProofGrid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(32px, 6vw, 82px); align-items: center; }
.hairProofMedia { margin: 0; position: relative; }
.hairProofMedia img { display: block; width: 100%; height: clamp(420px, 42vw, 610px); aspect-ratio: auto; object-fit: cover; object-position: center 48%; border: 1px solid rgba(211,169,91,.35); }
.hairProofMedia figcaption { position: absolute; left: 14px; bottom: 14px; padding: 9px 12px; background: rgba(8,9,9,.86); color: var(--gold2); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hairProofCopy h2 { max-width: 700px; margin: 12px 0 20px; font: 500 clamp(42px,5vw,68px)/.98 "Cormorant Garamond",serif; }
.hairProofCopy p { max-width: 670px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hairProofActions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.gatewayIntro {
  max-width: 760px;
  margin-bottom: 38px;
}
.gatewayIntro h2 {
  margin: 10px 0 16px;
  font: 500 clamp(42px, 5vw, 68px)/.98 "Cormorant Garamond", serif;
}
.gatewayIntro p { margin: 0; color: var(--ink-muted); font-size: 17px; }
.gatewayGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gatewayCard {
  min-height: 430px;
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 12px 18px;
  border: 1px solid rgba(74,58,34,.22);
  transition: transform .22s ease, border-color .22s ease;
}
.gatewayCard:hover { transform: translateY(-4px); border-color: var(--gold); }
.gatewayA { background: #111210; color: var(--cream); }
.gatewayB { background: #fbf8f2; color: var(--ink); }
.gatewayCode {
  width: 54px; height: 54px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold2);
  font: 500 31px/1 "Cormorant Garamond", serif;
}
.gatewayB .gatewayCode { color: #8b682d; }
.gatewayLabel { align-self: center; font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.gatewayCard h3 {
  grid-column: 1/-1; align-self: end; margin: 45px 0 10px;
  max-width: 500px; font: 500 clamp(34px, 4vw, 50px)/1 "Cormorant Garamond", serif;
}
.gatewayCard p { grid-column: 1/-1; margin: 0 0 28px; max-width: 520px; color: var(--muted); }
.gatewayB p { color: var(--ink-muted); }
.gatewayAction {
  grid-column: 1/-1; border-top: 1px solid currentColor; padding-top: 18px;
  display: flex; justify-content: space-between; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
.gatewayAction b { color: var(--gold); font-size: 18px; }
.shippingIn {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.activeNav { color: var(--gold2) !important; }
.localizedSalesNav {
  position: absolute;
  z-index: 7;
  top: 106px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  direction: ltr;
  white-space: nowrap;
}
.localizedSalesNav a {
  min-height: 42px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(240,211,148,.38);
  background: rgba(9,10,10,.88);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .06em;
  backdrop-filter: blur(12px);
}
.localizedSalesNav b { color: var(--gold2); font: 500 19px "Cormorant Garamond",serif; }
.salesHero { padding: 150px 0 80px; min-height: 760px; display: grid; align-items: center; }
.salesHeroGrid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.salesHero h1 { margin: 22px 0 25px; font: 500 clamp(52px,6vw,82px)/.96 "Cormorant Garamond",serif; }
.salesHero p { max-width: 650px; color: #cac6be; font-size: 18px; margin: 0 0 30px; }
.routeBadge { display: inline-flex; align-items: center; gap: 12px; color: var(--gold2); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.routeBadge b { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold); font: 500 25px "Cormorant Garamond",serif; }
.salesVisual { height: 610px; position: relative; overflow: hidden; border: 1px solid var(--line); }
.salesVisual img { width: 100%; height: 100%; object-fit: cover; }
.salesVisual span { position: absolute; left: 18px; bottom: 18px; padding: 10px 14px; background: #090a0ad9; color: var(--gold2); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.premiumSelection { border: 1px solid var(--line); background: #0d0f0f; }
.premiumSelection figure { margin: 0; position: relative; overflow: hidden; }
.premiumSelection figure img { display: block; width: 100%; height: 390px; object-fit: cover; object-position: center; }
.premiumSelection figcaption { position: absolute; left: 16px; bottom: 16px; padding: 9px 12px; background: rgba(8,9,9,.88); color: var(--gold2); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.premiumSelectionCopy { padding: 28px 30px 30px; }
.premiumSelectionCopy h2 { margin: 9px 0 14px; font: 500 clamp(30px,3.2vw,43px)/1 "Cormorant Garamond",serif; }
.premiumSelectionCopy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.premiumLinks { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 18px; }
.premiumLinks a { color: var(--gold2); font-size: 12px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.retailHero { background: #ede5d8; color: var(--ink); }
.retailHero p { color: var(--ink-muted); }.retailHero .routeBadge { color: #7d5e2b; }
.retailPromise { padding: 54px; border: 1px solid rgba(86,66,34,.24); background: #fbf8f1; box-shadow: 0 24px 70px rgba(42,30,14,.1); }
.bundleCode { display: inline-block; padding: 8px 12px; border: 1px solid var(--gold); color: #7d5e2b; font-size: 11px; font-weight: 600; letter-spacing: .15em; }
.retailPromise h2 { margin: 38px 0 24px; font: 500 52px/1 "Cormorant Garamond",serif; }
.retailPromise ul { margin: 0; padding-left: 20px; color: var(--ink-muted); }
.emptyStock { padding: 52px; border: 1px solid rgba(93,73,40,.18); background: #fbf8f2; text-align: center; }
.emptyStock > span { color: #8b682d; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.emptyStock h3 { margin: 16px 0 10px; font: 500 44px "Cormorant Garamond",serif; }
.emptyStock p { color: var(--ink-muted); margin: 0 auto 25px; max-width: 580px; }
.statusRow { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.statusRow > div { padding: 30px; border-right: 1px solid var(--line); }.statusRow > div:last-child { border: 0; }
.statusRow b,.statusRow span { display: block; }.statusRow span { color: var(--muted); font-size: 13px; margin-top: 5px; }
.statusDot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-bottom: 18px; }.statusDot.available { background: #3dbb78; }.statusDot.reserved { background: var(--gold); }.statusDot.sold { background: #777; }
.shippingLabel { color: #aaa69f; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.shippingLogos { display: flex; align-items: center; gap: 30px; direction: ltr; }
.fedexLogo { color: #bca6eb; font: 800 30px/1 Arial, sans-serif; letter-spacing: -2px; }
.fedexLogo em { color: #ff9a62; font-style: normal; }
.dhlLogo {
  display: inline-block;
  padding: 7px 13px 6px;
  background: #ffcc00;
  color: #d40511;
  font: italic 900 25px/.85 Arial, sans-serif;
  letter-spacing: -1px;
}
.section {
  padding: 105px 0;
}
.section.alt {
  background: var(--paper);
  color: var(--ink);
}
.section.alt .sectionHead p,
.section.alt .lead,
.section.alt .path p,
.section.alt .step p { color: var(--ink-muted); }
.section.alt .path {
  border-color: rgba(93, 73, 40, 0.18);
  background: linear-gradient(145deg, var(--paper-card), #e7ddcd);
  box-shadow: 0 18px 45px rgba(66, 47, 22, 0.06);
}
.section.alt .path:hover { border-color: var(--gold); }
.section.alt .pathLink { color: #8b682d; }
.section.alt .steps { background: rgba(93, 73, 40, 0.16); border-color: rgba(93, 73, 40, 0.16); }
.section.alt .step { background: var(--paper-card); }
.section.alt .kicker,
.section.alt .step i,
.salesGateway .kicker { color: #74531b; }
.sectionHead {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.title {
  font:
    500 clamp(40px, 5vw, 64px)/1 "Cormorant Garamond",
    serif;
  margin: 10px 0 0;
}
.sectionHead p,
.lead {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}
.paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.path {
  min-height: 305px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #17191c, #0a0c0e);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.path:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.featuredPath {
  grid-column: 1 / -1;
  min-height: 270px;
  background: linear-gradient(115deg, #fbf7ef, #e2d2b8) !important;
}
.silkyHero { padding: 132px 0 70px; background: radial-gradient(circle at 80% 20%, rgba(207,168,93,.15), transparent 32%), var(--black); }
.silkyHeroGrid { display: grid; grid-template-columns: 1fr .82fr; gap: 76px; align-items: center; }
.silkyCopy h1 { font: 500 clamp(50px,6vw,82px)/.98 "Cormorant Garamond",serif; margin: 0 0 24px; }
.silkyCopy p { max-width: 650px; color: #d3cfc7; font-size: 18px; margin: 0 0 30px; }
.silkyStock { position: relative; margin: 0; height: 650px; border: 1px solid var(--line); overflow: hidden; background: #171817; }
.silkyStock img { width: 100%; height: 100%; object-fit: cover; }
.silkyStock figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 11px 14px; background: rgba(9,10,10,.82); color: var(--gold2); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.fullButton { width: 100%; margin-top: 22px; }
.pathNo {
  color: var(--gold);
  font:
    500 18px "Cormorant Garamond",
    serif;
}
.path h3 {
  font:
    500 36px/1.04 "Cormorant Garamond",
    serif;
  margin: 0 0 12px;
}
.path p {
  color: var(--muted);
  margin: 0;
}
.pathLink {
  display: inline-block;
  color: var(--gold2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 24px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.productImage {
  height: 650px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.productImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productImage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 9, 0.85));
}
.imageNote {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  font:
    500 28px "Cormorant Garamond",
    serif;
}
.imageNote small {
  display: block;
  color: var(--gold2);
  font: 600 10px "Manrope";
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.list {
  margin-top: 27px;
}
.listItem {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.listItem i {
  font:
    500 22px "Cormorant Garamond",
    serif;
  color: var(--gold);
  font-style: normal;
}
.listItem b {
  display: block;
  font-weight: 500;
}
.listItem span {
  color: var(--muted);
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--black);
  padding: 34px;
}
.step i {
  color: var(--gold);
  font:
    500 21px "Cormorant Garamond",
    serif;
  font-style: normal;
}
.step h3 {
  font:
    500 28px "Cormorant Garamond",
    serif;
  margin: 45px 0 8px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.cta {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(207, 168, 93, 0.24), transparent 48%),
    var(--paper);
  border-block: 1px solid var(--line);
  color: var(--ink);
}
.cta h2 {
  font:
    500 clamp(44px, 6vw, 76px)/0.98 "Cormorant Garamond",
    serif;
  max-width: 850px;
  margin: 15px auto 22px;
}
.cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--ink-muted);
}
.cta .button { color: var(--ink); }
.footer {
  padding: 55px 0;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
}
.footer h2 {
  font-size: 11px;
  color: var(--gold2);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0 0 13px;
}
.footer p,
.footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 5px 0;
}
.footer a:hover {
  color: var(--cream);
}
.copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #242629;
  margin-top: 40px;
  padding-top: 20px;
  color: #85878b;
  font-size: 12px;
}
.contactDock {
  position: fixed;
  z-index: 12;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contactButton {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px #0008;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.contactButton:hover,
.contactButton:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.contactButton.whatsapp {
  background: var(--green);
}
.contactButton.telegram {
  background: #229ed9;
}
.contactButton.email {
  background: var(--gold);
}
.contactButton svg {
  width: 26px;
  fill: #fff;
}
.contactButton.email svg {
  fill: var(--black);
}
.contactButton.iconText {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.contactButton.email.iconText {
  color: var(--black);
}
.contactToggle { display: none; }
.consentBanner {
  position: fixed;
  z-index: 40;
  left: 16px;
  bottom: 16px;
  width: min(470px, calc(100% - 110px));
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  background: rgba(17,18,17,.97);
  box-shadow: 0 12px 35px #0008;
  color: var(--cream);
  backdrop-filter: blur(14px);
}
.consentCopy { min-width: 0; }
.consentBanner strong { color: var(--gold2); font: 600 14px "Manrope", sans-serif; }
.consentBanner p { margin: 4px 0 0; color: #c4c0b8; font-size: 12px; line-height: 1.4; }
.consentBanner p a { color: var(--cream); text-underline-offset: 2px; }
.consentActions { display: flex; gap: 8px; flex: 0 0 auto; }
.consentActions button { min-width: 72px; min-height: 42px; padding: 9px 12px; border: 1px solid var(--gold); background: transparent; color: var(--cream); font: 600 12px "Manrope", sans-serif; cursor: pointer; }
.consentActions .consentAccept { background: var(--gold); color: var(--black); }
.privacyControl { position: fixed; z-index: 13; left: 12px; bottom: 12px; min-height: 36px; padding: 7px 12px; border: 1px solid #9b7a42; border-radius: 999px; background: rgba(17,18,17,.94); color: #e4d4b8; font: 600 12px "Manrope", sans-serif; cursor: pointer; }
.privacyControl:focus-visible,
.contactToggle:focus-visible,
.navToggle:focus-visible,
.consentActions button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.navToggle { display: none; }
.footerPrivacyButton { display: block; margin-top: 8px; padding: 0; border: 0; background: transparent; color: var(--ink-muted); font: inherit; text-align: left; cursor: pointer; }
.contactButton.iconText { font-size: 0; }
.contactButton.iconText::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.contactButton.whatsapp.iconText::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3a13 13 0 0 0-11.1 19.7L3 29l6.5-1.7A13 13 0 1 0 16 3Zm0 23.6a10.5 10.5 0 0 1-5.4-1.5l-.4-.2-3.8 1 1-3.7-.2-.4A10.6 10.6 0 1 1 16 26.6Zm5.8-7.9c-.3-.2-1.9-.9-2.2-1s-.5-.2-.7.2-.8 1-1 1.2-.4.2-.7.1a8.6 8.6 0 0 1-2.6-1.6 9.7 9.7 0 0 1-1.8-2.2c-.2-.3 0-.5.1-.7l.5-.6.3-.6c.1-.2 0-.4 0-.6l-1-2.3c-.3-.6-.6-.5-.8-.5h-.7c-.2 0-.6.1-.9.4s-1.2 1.2-1.2 2.9 1.2 3.3 1.4 3.5c.2.2 2.4 3.7 5.8 5.1.8.4 1.5.6 2 .7.8.3 1.6.2 2.2.1.7-.1 1.9-.8 2.2-1.5.3-.8.3-1.4.2-1.5-.1-.2-.3-.3-.6-.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3a13 13 0 0 0-11.1 19.7L3 29l6.5-1.7A13 13 0 1 0 16 3Z'/%3E%3C/svg%3E");
}
.contactButton.telegram.iconText::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M28 5 3 15l8 3 3 9 4-5 7 5 3-22Zm-15 12 11-7-9 9-1 4-1-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M28 5 3 15l8 3 3 9 4-5 7 5 3-22Z'/%3E%3C/svg%3E");
}
.contactButton.email.iconText::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M3 7h26v18H3V7Zm3 3 10 8 10-8H6Zm20 12v-8l-10 8-10-8v8h20Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M3 7h26v18H3V7Zm3 3 10 8 10-8H6Z'/%3E%3C/svg%3E");
}
.localizedHero {
  padding-bottom: 110px;
}
.localizedHero h1 {
  max-width: 980px;
}
[dir="rtl"] body {
  font-family: "Noto Sans Hebrew", "Manrope", Arial, sans-serif;
}
[lang="ar"] body {
  font-family: "Noto Sans Arabic", "Manrope", Arial, sans-serif;
}
[dir="rtl"] .brand,
[dir="rtl"] .languageMenu,
[dir="rtl"] .contactDock {
  direction: ltr;
}
[dir="rtl"] .navlinks,
[dir="rtl"] .actions {
  direction: rtl;
}
[dir="rtl"] .brand { direction: ltr; }
[dir="rtl"] .path,
[dir="rtl"] .sidebar,
[dir="rtl"] .step,
[dir="rtl"] .footerGrid {
  text-align: right;
}
[dir="rtl"] .footer a {
  direction: ltr;
  text-align: right;
}
.pageHero {
  padding: 190px 0 100px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(207, 168, 93, 0.18),
      transparent 33%
    ),
    #0a0b0d;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  color: var(--gold2);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.breadcrumbs a {
  color: var(--muted);
}
.content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 85px;
}
.article h2 {
  font:
    500 44px/1.06 "Cormorant Garamond",
    serif;
  margin: 0 0 20px;
}
.article h3 {
  font:
    500 30px "Cormorant Garamond",
    serif;
  margin: 42px 0 12px;
}
.article p,
.article li {
  color: #bbb7af;
}
.article ul {
  padding-left: 20px;
}
.sidebar {
  position: sticky;
  top: 30px;
  align-self: start;
  border: 1px solid var(--line);
  padding: 27px;
  background: #0e1012;
}
.sidebar h3 {
  font:
    500 29px "Cormorant Garamond",
    serif;
  margin: 0 0 10px;
}
.sidebar p {
  color: var(--muted);
  font-size: 14px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.fact {
  padding: 22px;
  border: 1px solid var(--line);
  background: #0d0f11;
}
.fact b {
  display: block;
  color: var(--gold2);
  margin-bottom: 4px;
}
.fact span {
  color: var(--muted);
  font-size: 13px;
}
.journalHero {
  padding: 165px 0 70px;
  background: var(--paper);
  color: var(--ink);
}
.journalHero .eyebrow { color: #8b682d; }
.journalHero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  font: 500 clamp(48px, 6vw, 78px)/.98 "Cormorant Garamond", serif;
}
.journalHero p { max-width: 760px; color: var(--ink-muted); font-size: 18px; }
.articleMeta { margin-top: 24px; color: #7d7468; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.articleCover { height: min(62vw, 680px); min-height: 420px; overflow: hidden; background: #171512; }
.articleCover img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.editorial { width: min(780px, calc(100% - 30px)); margin: auto; padding: 85px 0 110px; }
.editorial h2 { margin: 58px 0 16px; font: 500 42px/1.05 "Cormorant Garamond", serif; }
.editorial h3 { margin: 34px 0 10px; font: 500 28px/1.1 "Cormorant Garamond", serif; }
.editorial p, .editorial li { color: #c2bdb5; }
.editorial li { margin: 9px 0; }
.editorial .lead { color: #ded8cf; font-size: 20px; }
.buyerChecklist { margin: 30px 0; padding: 28px; border: 1px solid var(--line); background: #111210; }
.buyerChecklist strong { color: var(--gold2); }
.termGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 36px 0; border: 1px solid var(--line); background: var(--line); }
.termGrid div { padding: 24px; background: #111210; }
.termGrid strong { display: block; color: var(--gold2); font: 500 25px "Cormorant Garamond", serif; }
.termGrid span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.researchSources { margin-top: 48px; padding: 28px; border-left: 3px solid var(--gold); background: #111210; }
.researchSources h2 { margin: 0 0 12px; font-size: 30px; }
.researchSources p { margin: 0; font-size: 14px; }
.researchSources a { color: var(--gold2); text-decoration: underline; text-underline-offset: 3px; }
.articleCta { margin-top: 60px; padding: 34px; border: 1px solid var(--line); background: linear-gradient(145deg, #171713, #0d0e0d); }
.articleCta h2 { margin-top: 0; }
.journalFeature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center; }
.journalFeature h2 { margin: 10px 0 18px; font: 500 clamp(38px, 5vw, 60px)/1 "Cormorant Garamond", serif; }
.journalFeature p { color: var(--ink-muted); }
.journalIndexHero { padding: 150px 0 82px; background: linear-gradient(135deg, #f4ecde 0%, #e9ddc8 100%); }
.journalIndexHero h1 { max-width: 850px; margin: 12px 0 20px; color: #171512; font: 500 clamp(52px, 8vw, 92px)/.94 "Cormorant Garamond", serif; }
.journalIndexHero p { max-width: 720px; margin: 0; color: #5f584f; font-size: 18px; }
.journalGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.journalCard { display: flex; flex-direction: column; min-height: 310px; padding: 30px; border: 1px solid var(--line); background: #0d0f10; }
.journalCard.featured { grid-column: span 2; min-height: 430px; justify-content: flex-end; background: linear-gradient(0deg, rgba(7,8,9,.96), rgba(7,8,9,.22)), url("hair-bundle-837.webp") center 45%/cover; }
.journalCard .tag { color: var(--gold2); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.journalCard h2, .journalCard h3 { margin: 16px 0 14px; font: 500 34px/1.02 "Cormorant Garamond", serif; }
.journalCard.featured h2 { max-width: 650px; font-size: clamp(38px, 5vw, 60px); }
.journalCard p { color: var(--ink-muted); }
.journalCard .pathLink { margin-top: auto; padding-top: 24px; }
.editorialPlan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 34px; background: var(--line); border: 1px solid var(--line); }
.editorialPlan div { padding: 27px; background: #f5ecdd; }
.editorialPlan span { color: #8b682d; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.editorialPlan h3 { margin: 12px 0 0; color: #1c1915; font: 500 27px/1.05 "Cormorant Garamond", serif; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .path {
    transition: none;
  }
  .contactButton {
    transition: none;
  }
}

@media (max-width: 760px) {
  .homeHairProof { padding: 36px 0 52px; }
  .hairProofGrid { grid-template-columns: 1fr; gap: 26px; }
  .hairProofMedia img { height: clamp(230px, 68vw, 300px); aspect-ratio: auto; object-fit: cover; object-position: center 48%; }
  .hairProofMedia figcaption { left: 8px; right: 8px; bottom: 8px; padding: 8px 9px; font-size: 9px; line-height: 1.35; letter-spacing: .08em; text-align: center; }
  .hairProofCopy h2 { max-width: 100%; margin: 9px 0 15px; font-size: clamp(36px,10.5vw,44px); line-height: .98; overflow-wrap: anywhere; }
  .hairProofCopy p { font-size: 15px; line-height: 1.65; }
  .hairProofActions { gap: 9px; margin-top: 22px; }
  .hairProofActions { display: grid; grid-template-columns: 1fr; }
  .hairProofActions .button { width: 100%; justify-content: center; }
  .salesGateway { padding: 68px 0; }
  .gatewayGrid { grid-template-columns: 1fr; }
  .gatewayCard { min-height: 360px; padding: 26px; }
  .gatewayCard h3 { margin-top: 30px; }
}

@media (min-width: 1440px) {
  .wrap {
    width: min(1240px, calc(100% - 80px));
  }
  .heroContent {
    width: min(790px, 100%);
  }
  .paths {
    gap: 20px;
  }
}

@media (min-width: 801px) and (max-width: 1180px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav {
    gap: 18px;
  }
  .brand {
    min-width: 190px;
  }
  .brandMark {
    width: 82px;
    height: 44px;
  }
  .brandMark img {
    width: 82px;
  }
  .brand strong {
    font-size: 18px;
  }
  .navlinks {
    gap: 17px;
    font-size: 12px;
  }
  .navlinks .button {
    padding: 12px 15px;
    font-size: 10px;
  }
  .languageMenu summary { min-width: 68px; width: 68px; padding: 0 9px; }
  .languageMenu summary > span:not(.langCode) { display: none; }
  .languageMenu summary .langCode { display: inline; }
  .hero {
    min-height: 700px;
  }
  .heroContent {
    width: min(670px, 72%);
    padding-top: 88px;
  }
  .hero h1 {
    font-size: clamp(52px, 6.5vw, 70px);
  }
  .hero p {
    max-width: 570px;
    font-size: 16px;
  }
  .proof {
    bottom: 20px;
  }
  .proofItem {
    padding: 15px 17px;
  }
  .proofItem b {
    font-size: 19px;
  }
  .proofItem span {
    font-size: 10px;
  }
  .section {
    padding: 84px 0;
  }
  .sectionHead {
    gap: 42px;
  }
  .path {
    min-height: 280px;
    padding: 27px;
  }
  .path h3 {
    font-size: 30px;
  }
  .split {
    gap: 55px;
  }
  .productImage {
    height: 560px;
  }
  .step {
    padding: 28px;
  }
  .content {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 55px;
  }
  .pageHero {
    padding: 165px 0 85px;
  }
}

@media (min-width: 801px) and (max-height: 800px) {
  .nav {
    height: 78px;
    gap: 8px;
  }
  .hero {
    height: 100svh;
    min-height: 690px;
  }
  .heroContent {
    padding-top: 70px;
  }
  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(50px, 5.2vw, 68px);
  }
  .hero p {
    margin-bottom: 24px;
  }
  .proof {
    bottom: 16px;
  }
  .proofItem {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

@media (max-width: 800px) {
  .wrap {
    width: min(calc(100% - 30px), 1180px);
  }
  .contactDock {
    right: 14px;
    bottom: 14px;
    transform: none;
    gap: 8px;
  }
  .contactButton {
    width: 48px;
    height: 48px;
  }
  .contactDockEnhanced .contactButton { opacity: 0; transform: translateY(12px) scale(.82); pointer-events: none; }
  .contactDockEnhanced.open .contactButton { opacity: 1; transform: none; pointer-events: auto; }
  .contactToggle { display: grid; place-items: center; width: 54px; height: 54px; margin-left: -3px; border: 1px solid #e4bd72; border-radius: 50%; background: #15130f; color: var(--gold2); box-shadow: 0 12px 30px #0009; cursor: pointer; }
  .contactToggle span { width: 25px; height: 25px; background: currentColor; -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M5 5h22v16H14l-6 6v-6H5V5Zm4 5v2h14v-2H9Zm0 5v2h10v-2H9Z'/%3E%3C/svg%3E"); mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M5 5h22v16H14l-6 6v-6H5V5Z'/%3E%3C/svg%3E"); }
  .consentBanner { left: 8px; bottom: max(8px, env(safe-area-inset-bottom)); width: calc(100% - 16px); max-width: 390px; padding: 9px 10px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; }
  .consentBanner strong { display: block; font-size: 12px; }
  .consentBanner p { margin-top: 2px; font-size: 10px; line-height: 1.25; }
  .consentActions { margin-top: 0; display: grid; gap: 6px; }
  .consentActions button { min-width: 70px; min-height: 34px; padding: 5px 7px; }
  body:has(.consentBanner) .contactDock { display: none; }
  .privacyControl { left: 10px; bottom: 10px; }
  .navToggle { display: grid; place-items: center; position: absolute; right: 15px; top: 27px; z-index: 32; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(7,8,9,.96); color: var(--gold2); cursor: pointer; }
  .navHasLanguage .navToggle { right: 96px; }
  .navToggle span, .navToggle span::before, .navToggle span::after { display: block; width: 20px; height: 2px; background: currentColor; content: ""; }
  .navToggle span::before { transform: translateY(-6px); }
  .navToggle span::after { transform: translateY(4px); }
  .navlinks.mobileOpen { display: grid; position: absolute; z-index: 31; top: 82px; right: 15px; width: min(310px, calc(100vw - 30px)); padding: 10px; gap: 0; border: 1px solid var(--line); background: rgba(11,12,12,.985); box-shadow: 0 18px 45px #000b; }
  .navlinks.mobileOpen > a, .navlinks.mobileOpen .button { display: flex; align-items: center; min-height: 46px; padding: 10px 12px; border-bottom: 1px solid rgba(213,172,93,.18); }
  .navlinks.mobileOpen > a:last-child { border-bottom: 0; }
  .nav {
    height: 96px;
    justify-content: flex-start;
    gap: 12px;
  }
  .languageMenu {
    position: absolute;
    right: 15px;
    top: 26px;
  }
  .localizedSalesNav {
    top: 104px;
    width: calc(100% - 30px);
  }
  .localizedSalesNav a { flex: 1; justify-content: center; min-height: 46px; font-size: 12px; }
  .localized .localizedHero { padding-top: 184px; }
  .languageMenu summary { min-width: 70px; width: 70px; padding: 0 9px; }
  .languageMenu summary > span:not(.langCode) { display: none; }
  .languageMenu summary .langCode { display: inline; }
  .languagePanel { right: 0; width: min(238px, calc(100vw - 30px)); }
  .brand {
    width: auto;
    min-width: 0;
    justify-content: flex-start;
    gap: 13px;
  }
  .brandMark {
    width: 86px;
    height: 46px;
  }
  .brandMark img {
    width: 86px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand small {
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-top: 7px;
  }
  .navlinks > a:not(.button) {
    display: none;
  }
  .navlinks .button {
    display: none;
  }
  .hero {
    display: block;
    height: auto;
    min-height: 100svh;
    padding-top: 96px;
    background-image:
      linear-gradient(180deg, rgba(7,8,9,.28) 0%, rgba(7,8,9,.72) 38%, rgba(7,8,9,.98) 88%),
      url("fine-silky-natural-human-hair-dubai-aurum-branded-640.webp");
    background-position: center, 62% center;
    background-size: cover;
  }
  .hero > .wrap {
    position: relative;
    z-index: 2;
    min-height: calc(100svh - 96px);
    display: flex;
    align-items: center;
  }
  .heroContent {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    padding: 56px 0 42px;
  }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(42px, 12vw, 56px);
    line-height: .94;
    margin-bottom: 20px;
  }
  .hero p,
  .pageHero p {
    font-size: 16px;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .hero .actions .button {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .proof {
    position: relative;
    inset: auto;
    margin-top: 0;
    padding-bottom: 18px;
  }
  .proofin {
    grid-template-columns: repeat(2, 1fr);
  }
  .proofItem:nth-child(2) {
    border-right: 0;
  }
  .proofItem:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .proofItem {
    padding: 13px;
  }
  .proofItem b {
    font-size: 18px;
  }
  .shippingIn { min-height: 82px; gap: 14px; }
  .shippingLabel { max-width: 160px; font-size: 12px; line-height: 1.45; }
  .termGrid { grid-template-columns: 1fr; }
  .shippingLogos { gap: 17px; }
  .fedexLogo { font-size: 25px; }
  .dhlLogo { font-size: 20px; padding: 6px 9px 5px; }
  .section {
    padding: 78px 0;
  }
  .sectionHead,
  .split,
  .content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .paths,
  .steps {
    grid-template-columns: 1fr;
  }
  .featuredPath { grid-column: auto; }
  .silkyHero { padding: 118px 0 58px; }
  .silkyHeroGrid { grid-template-columns: 1fr; gap: 38px; }
  .silkyCopy h1 { font-size: 48px; }
  .silkyStock { height: 500px; }
  .path {
    min-height: 250px;
  }
  .productImage {
    height: 510px;
  }
  .cta {
    padding: 90px 0 120px;
  }
  .cta .button {
    width: 100%;
    max-width: 420px;
  }
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 7px;
  }
  .whatsapp {
    width: 50px;
    height: 50px;
    right: 13px;
    bottom: 13px;
  }
  .pageHero {
    padding: 125px 0 75px;
  }
  .pageHero h1 {
    font-size: 46px;
  }
  [dir="rtl"] .pageHero h1 { font-size: 40px; line-height: 1.12; }
  .journalHero { padding: 125px 0 58px; }
  .journalHero h1 { font-size: 46px; }
  .articleCover { min-height: 330px; }
  .editorial { padding: 62px 0 95px; }
  .editorial h2 { font-size: 36px; }
  .journalFeature { grid-template-columns: 1fr; gap: 24px; }
  .journalIndexHero { padding: 125px 0 66px; }
  .journalGrid, .editorialPlan { grid-template-columns: 1fr; }
  .journalCard.featured { grid-column: auto; min-height: 390px; }
  .content {
    gap: 45px;
  }
  .sidebar {
    position: static;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .salesHero { padding: 125px 0 65px; min-height: auto; }
  .salesHeroGrid { grid-template-columns: 1fr; gap: 36px; }
  .premiumSelection figure img { height: auto; aspect-ratio: 4 / 3; }
  .premiumSelectionCopy { padding: 24px; }
  .salesHero h1 { font-size: 48px; }
  .salesVisual { height: 500px; }
  .retailPromise { padding: 30px; }.retailPromise h2 { font-size: 42px; }
  .statusRow { grid-template-columns: 1fr; }.statusRow > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .emptyStock { padding: 34px 22px; }
}

@media (max-width: 380px) {
  .brandMark {
    width: 96px;
    height: 51px;
  }
  .brandMark img {
    width: 96px;
  }
  .brand strong {
    font-size: 22px;
  }
}

/* Real inventory, product and wholesale infrastructure */
.newWholesaleLot { background: #0b0b0b; color: #f2ece2; }
.section.newWholesaleLot.alt { background: #0b0b0b; color: #f2ece2; }
.section.newWholesaleLot.alt .kicker { color: #d8af63; }
.section.newWholesaleLot.alt .lotCopy .title { color: #f7f2e9; }
.section.newWholesaleLot.alt .lotCopy .lead,
.section.newWholesaleLot.alt .lotNote { color: #d0cbc3; }
.section.newWholesaleLot.alt .lotFacts b { color: #f0d394; }
.section.newWholesaleLot.alt .lotFacts span,
.section.newWholesaleLot.alt .lotMedia figcaption { color: #c8c3bb; }
.lotFeature { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(36px, 6vw, 88px); align-items: center; }
.lotMedia { margin: 0; }
.lotMedia img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border: 1px solid rgba(211, 169, 91, .35); }
.lotMedia figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.lotCopy .title { max-width: 720px; color: #f7f2e9; }
.lotCopy .lead { max-width: 720px; color: #c9c2b8; line-height: 1.75; }
.lotApplications { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 26px 0; }
.lotApplications > div { padding: 20px; border: 1px solid var(--line); background: #111210; }
.lotApplications b { color: #f4eadb; font-size: 15px; }
.lotApplications p { margin: 9px 0 12px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.lotApplications a, .lotNote a { color: var(--gold2); text-decoration: underline; text-underline-offset: 4px; }
.lotApplications a { font-size: 13px; font-weight: 600; }
.lotFacts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 28px 0 22px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.lotFacts div { min-width: 0; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lotFacts b, .lotFacts span { display: block; }
.lotFacts b { color: var(--gold2); font: 500 24px/1.2 "Cormorant Garamond", serif; }
.lotFacts span { margin-top: 5px; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.lotNote { max-width: 720px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.lotWhatsApp { margin-top: 10px; }
@media (max-width: 900px) {
  .lotFeature { grid-template-columns: 1fr; gap: 28px; }
  .lotFacts div { padding: 15px; }
  .lotWhatsApp { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .lotApplications, .lotFacts { grid-template-columns: 1fr; }
  .lotMedia figcaption { font-size: 12px; line-height: 1.6; letter-spacing: .04em; }
}
.catalogFilters { margin: 30px 0 22px; padding: 22px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; border: 1px solid var(--line); background: #0d0e0f; }
.retailHeroCompact { min-height: auto; padding: 138px 0 48px; }
.retailHeroCompact h1 { max-width: 780px; margin-bottom: 18px; }
.retailHeroCompact p { margin-bottom: 0; }
.catalogSectionFirst { padding-top: 52px; }
.catalogIntro { display: grid; grid-template-columns: 1fr .7fr; gap: 44px; align-items: end; margin-bottom: 26px; }
.catalogIntro .title { font-size: clamp(38px,4.5vw,58px); }
.catalogIntro p { margin: 0; color: var(--ink-muted); }
.catalogFilterPanel { margin: 0 0 24px; border: 1px solid var(--line); background: #0d0e0f; }
.catalogFilterPanel summary { padding: 16px 20px; color: var(--gold2); font: 600 13px/1.4 Manrope,sans-serif; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.catalogFilterPanel .catalogFilters { margin: 0; border-width: 1px 0 0; }
.retailTrust .retailPromise { max-width: 760px; margin: 0 auto 50px; }
.retailTrust .retailPromise h2 { margin: 22px 0 20px; }
.catalogFilters .catalogSearch { grid-column: span 2; }
.catalogFilters label, .inquiryForm label { display: grid; gap: 8px; color: var(--gold2); font: 600 11px/1.4 Manrope,sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.catalogFilters select, .catalogFilters input, .inquiryForm input, .inquiryForm textarea { width: 100%; min-height: 48px; border: 1px solid #cbb78366; border-radius: 0; padding: 11px 13px; background: #f7f0e5; color: #171713; font: 15px/1.45 Manrope,sans-serif; }
.inquiryForm textarea { resize: vertical; min-height: 120px; }
.catalogFilters input:focus, .catalogFilters select:focus, .inquiryForm input:focus, .inquiryForm textarea:focus { outline: 3px solid #d8aa5680; outline-offset: 2px; }
.catalogCount { margin: 0 0 18px; color: var(--muted); }
.catalogMore { display: block; margin: 28px auto 0; }
.catalogMore[hidden] { display: none !important; }
.productGrid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; align-items: stretch; }
.catalogCard { min-width: 0; height: 100%; display: flex; flex-direction: column; border: 1px solid var(--line); background: #0b0c0d; }
.catalogMedia { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: #171713; }
.catalogMedia img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.catalogMedia:hover img { transform: scale(1.025); }
.stockBadge { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border: 1px solid currentColor; font: 600 10px/1 Manrope,sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.catalogMedia .stockBadge { position: absolute; left: 12px; bottom: 12px; background: #0a0a08e8; }
.stockBadge.available { color: #b9d7b2; }.stockBadge.reserved { color: #f0cb7d; }.stockBadge.sold { color: #c7c7c7; }
.catalogBody { flex: 1; display: flex; flex-direction: column; padding: 20px; }.catalogBody h3 { margin: 7px 0 16px; font: 500 30px/1.05 "Cormorant Garamond",serif; }.catalogBody h3 a { color: #f5efe6; }
.catalogSku, .productSku { color: var(--gold2); font: 600 10px/1.4 Manrope,sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.catalogSpecs { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 18px; }.catalogSpecs div { padding: 9px 0; border-top: 1px solid var(--line); }.catalogSpecs dt { color: var(--muted); font-size: 10px; text-transform: uppercase; }.catalogSpecs dd { margin: 3px 0 0; color: #eee8de; font-size: 13px; }
.catalogPrice { display: block; margin-top: auto; margin-bottom: 18px; color: var(--gold2); font-size: 18px; }
.catalogBody > .button { width: 100%; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.catalogNoResults, .catalogNotice { grid-column: 1/-1; padding: 22px; border: 1px solid var(--line); color: var(--muted); }
.soldNotice { margin: 22px 0; padding: 16px 18px; border-left: 3px solid var(--gold); background: #d7aa5620; }
.soldNotice p { margin: 6px 0 0; color: var(--muted); }
.inventoryEmptyCompact { padding: 30px; border: 1px solid var(--line); }.inventoryEmptyCompact h3 { margin-top: 0; }
.enquiryLayout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }.enquiryChecklist { padding-left: 20px; color: var(--muted); line-height: 1.9; }
.inquiryForm { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 28px; background: #0b0c0d; border: 1px solid var(--line); }.inquiryForm .fullField { grid-column: 1/-1; }.formNote { margin: 0; color: var(--muted); font-size: 12px; text-transform: none; letter-spacing: 0; }
.productPage { padding: 120px 0 90px; background: #090a0b; }.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 24px; color: var(--muted); font-size: 12px; }.breadcrumb a { color: var(--gold2); }
.productDetail { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: 55px; align-items: start; }.productGallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }.galleryItem { min-width: 0; padding: 0; border: 0; background: #151515; cursor: zoom-in; }.galleryItem:first-child { grid-column: 1/-1; }.galleryItem img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; }.galleryItem:first-child img { aspect-ratio: 4/5; }.productGallery video { grid-column: 1/-1; width: 100%; max-height: 720px; background: #000; }.productVideo { grid-column: 1/-1; margin: 0; }.productVideo video { display: block; width: 100%; }.productVideo figcaption { padding: 10px 12px; background: #121313; color: #bdb8ae; font-size: 13px; line-height: 1.5; }.productVideo figcaption strong { color: var(--cream); }.productPrice small { display: block; margin-top: 5px; color: var(--ink-muted); font: 500 13px/1.5 "Manrope", sans-serif; }
.aur110Notes .editorial h2 { color: #17140f; }.aur110Notes .editorial p { color: #50493f; }.aur110Notes .editorial a { color: #624414; font-weight: 600; }
.productSummary { position: sticky; top: 120px; }.productSummary h1 { margin: 14px 0 18px; color: #f7f2e9; font: 500 clamp(42px,5vw,66px)/.98 "Cormorant Garamond",serif; }.productDescription { color: var(--muted); font-size: 16px; line-height: 1.75; }.productFacts { margin: 25px 0; border-top: 1px solid var(--line); }.productFacts div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }.productFacts dt { color: var(--muted); }.productFacts dd { margin: 0; color: #f1eadf; }.productCharacteristics { color: var(--muted); line-height: 1.8; }.productPrice { color: var(--gold2); font: 500 30px/1.2 "Cormorant Garamond",serif; }.productWhatsApp { width: 100%; text-align: center; }

@media (max-width: 900px) {
  .catalogFilters, .productGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .enquiryLayout, .productDetail { grid-template-columns: 1fr; gap: 38px; }
  .productSummary { position: static; }
}
@media (max-width: 600px) {
  .catalogFilters, .productGrid, .inquiryForm { grid-template-columns: 1fr; }
  .catalogFilters .catalogSearch { grid-column: auto; }
  .catalogFilters { padding: 16px; }.inquiryForm { padding: 20px; }.inquiryForm .fullField { grid-column: auto; }
  .catalogMedia { aspect-ratio: 4/5; }.catalogBody h3 { font-size: 28px; }
  .productPage { padding-top: 108px; overflow-x: clip; }
  .productGallery { width: 100%; min-width: 0; gap: 7px; overflow: hidden; }
  .galleryItem { width: 100%; max-width: 100%; overflow: hidden; }
  .galleryItem img, .galleryItem:first-child img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: contain; }
  .productDetail { min-width: 0; gap: 30px; }
  .productSummary h1 { font-size: 44px; }
  body.formActive .contactDock { display: none; }
  .retailHeroCompact { padding: 112px 0 26px; }
  .retailHeroCompact h1 { margin: 14px 0 12px; font-size: 43px; line-height: .98; }
  .retailHeroCompact p { font-size: 15px; line-height: 1.65; }
  .catalogSectionFirst { padding: 28px 0 34px; }
  .catalogIntro { display: block; margin-bottom: 18px; }
  .catalogIntro .title { margin-top: 7px; font-size: 34px; }
  .catalogIntro p { margin-top: 10px; font-size: 14px; }
  .catalogCount { margin-bottom: 12px; font-size: 13px; }
  .catalogCard .catalogMedia { aspect-ratio: 3/4; }
  .catalogBody { padding: 18px; }
  .catalogBody h3 { font-size: 30px; line-height: 1.02; }
  .retailTrust { padding-top: 38px; }
  .retailTrust .retailPromise { margin-bottom: 28px; padding: 24px; }
  .retailTrust .retailPromise h2 { font-size: 36px; }
  .privacyControl { bottom: max(10px, env(safe-area-inset-bottom)); }
  .contactDock { bottom: max(14px, env(safe-area-inset-bottom)); }
}
