:root {
  color-scheme: light;
  --ink: #202326;
  --graphite: #34383d;
  --steel: #656b73;
  --fog: #a9adb2;
  --mist: #e7e9eb;
  --pearl: #f5f5f2;
  --white: #ffffff;
  --accent: #7a4053;
  --accent-soft: #e3b8c6;
  --danger: #9b2335;
  --line-strong: #7f858b;
  --radius: 14px;
  --shadow: 0 18px 48px rgba(32, 35, 38, 0.12);
  --page: min(1240px, calc(100vw - 40px));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body[dir="rtl"] { font-family: "Noto Kufi Arabic", "Outfit", sans-serif; }
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; }
img, svg { display: block; }
::selection { background: var(--accent); color: var(--white); }
main section[id] { scroll-margin-top: 114px; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
bdi, [dir="ltr"] { unicode-bidi: isolate; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.announcement {
  min-height: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 4px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.announcement-social { grid-column: 1; display: flex; align-items: center; justify-self: start; gap: 10px; }
.announcement-social svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.announcement-social a { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: inherit; text-decoration: none; }
.announcement-social[hidden] { display: none; }
.announcement-message { grid-column: 2; justify-self: center; line-height: 1.3; }
.announcement-language {
  grid-column: 3;
  min-width: 44px;
  min-height: 28px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 0 2px 0 10px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 120ms var(--ease-out), transform 120ms var(--ease-out);
}
.announcement-language svg { width: 9px; height: 6px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.announcement-language-short { display: none; }
.announcement-language:active { transform: scale(.96); }

.site-header {
  width: var(--page);
  height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white), 0 1px 0 rgba(32,35,38,.08);
  clip-path: inset(0 -100vmax);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}
.site-header.is-scrolled::before { opacity: 1; }
.brand { grid-column: 2; grid-row: 1; min-width: 78px; min-height: 44px; position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-self: center; background: var(--pearl); text-decoration: none; }
.brand::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--white); opacity: 0; transition: opacity 180ms var(--ease-out); }
.site-header.is-scrolled .brand::before { opacity: 1; }
.brand-logo { width: 78px; height: auto; position: relative; z-index: 1; display: block; object-fit: contain; mix-blend-mode: multiply; }
.primary-nav { grid-column: 1; grid-row: 1; display: flex; align-items: center; justify-self: start; gap: 34px; }
.primary-nav a, .footer-links a { text-decoration: none; font-size: 0.92rem; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--accent); }
.primary-nav a::after, .footer-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 150ms var(--ease-out);
}
.primary-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { grid-column: 3; grid-row: 1; display: flex; align-items: center; justify-self: end; gap: 2px; }
.language-switch[hidden] { display: none; }
.header-action-icon { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 6px; background: transparent; color: var(--ink); text-decoration: none; transition: background-color 120ms ease, transform 120ms var(--ease-out); }
.header-action-icon:active { transform: scale(.96); }
.header-action-icon svg,
.header-actions .cart-trigger svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.header-actions .cart-trigger {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  position: relative;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
  transition: background-color 120ms var(--ease-out), transform 120ms var(--ease-out);
}
.header-actions .cart-count {
  min-width: 17px;
  height: 17px;
  padding-inline: 4px;
  position: absolute;
  inset-block-start: 1px;
  inset-inline-end: -1px;
  font-size: .6rem;
}
.header-actions .cart-trigger:active { transform: scale(.96); }
.mobile-menu { grid-column: 1; grid-row: 1; display: none; position: relative; justify-self: start; }
.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span,
.mobile-menu summary span::before,
.mobile-menu summary span::after {
  width: 22px;
  height: 1.5px;
  display: block;
  position: relative;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}
.mobile-menu summary span::before,
.mobile-menu summary span::after { content: ""; position: absolute; inset-inline-start: 0; }
.mobile-menu summary span::before { transform: translateY(-7px); }
.mobile-menu summary span::after { transform: translateY(7px); }
.mobile-menu[open] summary span { background: transparent; }
.mobile-menu[open] summary span::before { transform: rotate(45deg); }
.mobile-menu[open] summary span::after { transform: rotate(-45deg); }
.mobile-menu nav {
  min-width: 230px;
  position: absolute;
  inset-block-start: calc(100% + 14px);
  inset-inline-start: 0;
  display: grid;
  padding: 10px;
  border: 1px solid #d0d3d5;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mobile-menu nav a { min-height: 48px; display: flex; align-items: center; padding-inline: 14px; border-radius: 7px; text-decoration: none; }
.mobile-menu nav a[aria-current="page"] { background: var(--mist); color: var(--accent); }
.language-switch, .cart-trigger, .icon-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  min-width: 44px;
  min-height: 44px;
}
.language-switch { font-weight: 600; letter-spacing: 0.08em; }
.cart-trigger { display: inline-flex; align-items: center; gap: 8px; padding-inline: 10px 4px; }
.cart-trigger svg, .icon-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 0.74rem;
}

.hero {
  width: var(--page);
  min-height: clamp(600px, calc(100dvh - 160px), 760px);
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
  padding: clamp(48px, 6vw, 84px);
  border-radius: var(--radius);
  background: #d9dcde;
  direction: ltr;
}
.hero-copy { max-width: 560px; position: relative; z-index: 2; }
.hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-copy-enter 700ms var(--ease-out) forwards;
}
.hero-copy > :nth-child(1) { animation-delay: 80ms; }
.hero-copy > :nth-child(2) { animation-delay: 150ms; }
.hero-copy > :nth-child(3) { animation-delay: 220ms; }
.hero-copy > :nth-child(4) { animation-delay: 290ms; }
.hero-copy > :nth-child(5) { animation-delay: 360ms; }
body[dir="rtl"] .hero-copy { direction: rtl; text-align: right; }
.hero-kicker, .section-kicker, .drawer-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.hero-subtitle { max-width: 470px; margin: 28px 0 32px; color: var(--steel); font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-cta {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-inline: 26px 22px;
  background: var(--graphite);
  color: var(--white);
  text-decoration: none;
  border-radius: 2px;
  transition: transform 150ms var(--ease-out);
}
.hero-cta svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 150ms var(--ease-out); }
.hero-cta:active { transform: scale(0.97); }
.hero-reassurance { max-width: 540px; display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 20px 0 0; padding: 0; color: var(--steel); list-style: none; font-size: .76rem; }
.hero-reassurance li { display: inline-flex; align-items: center; gap: 7px; }
.hero-reassurance li::before { width: 5px; height: 5px; flex: 0 0 5px; border-radius: 50%; background: var(--accent); content: ""; }

.hero-art { min-height: 580px; position: relative; display: grid; place-items: center; }
.editorial-stack {
  width: min(520px, 88%);
  aspect-ratio: .9;
  position: relative;
  transform-origin: center;
  animation: hero-card-drift 7s var(--ease-in-out) 1.2s infinite;
  will-change: transform;
}
.editorial-card {
  width: 72%;
  height: 88%;
  position: absolute;
  inset: 6% auto auto 14%;
  overflow: hidden;
  margin: 0;
  border: 7px solid rgba(255,255,255,.94);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: 0 22px 48px rgba(32,35,38,.2);
  opacity: 1;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
  will-change: transform, opacity;
}
.editorial-card img { width: 100%; height: 100%; object-fit: cover; }
.editorial-card::after { position: absolute; inset: 42% 0 0; background: linear-gradient(180deg, transparent, rgba(18,18,19,.82)); content: ""; }
.editorial-card figcaption { position: absolute; inset: auto 18px 16px; z-index: 1; display: grid; gap: 2px; color: var(--white); }
.editorial-card figcaption span { font-size: .66rem; letter-spacing: .16em; }
.editorial-card figcaption strong { font-size: 1rem; font-weight: 500; }
.editorial-card-one { z-index: 1; transform: translateX(-18%) rotate(-7deg); animation: editorial-one-enter 700ms var(--ease-out) 260ms backwards; }
.editorial-card-two { z-index: 2; transform: translateX(18%) rotate(7deg); animation: editorial-two-enter 700ms var(--ease-out) 330ms backwards; }
.editorial-card-three { z-index: 3; transform: rotate(1.5deg); animation: editorial-three-enter 700ms var(--ease-out) 400ms backwards; }
.fabric-orbit { position: absolute; border: 1px solid rgba(52,56,61,.24); border-radius: 50%; }
.fabric-orbit-one { width: 540px; height: 540px; animation: orbit 18s linear infinite; }
.fabric-orbit-two { width: 390px; height: 610px; transform: rotate(34deg); animation: orbit-reverse 23s linear infinite; }
.fabric-orbit::before { content: ""; width: 12px; height: 12px; position: absolute; top: 14%; left: 9%; border-radius: 50%; background: var(--accent); }
.art-note { position: absolute; inset-inline-end: 0; bottom: 20px; margin: 0; color: var(--steel); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; writing-mode: vertical-rl; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-reverse { from { transform: rotate(34deg); } to { transform: rotate(-326deg); } }
@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-card-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes editorial-one-enter { from { opacity: 0; transform: translateX(-4%) rotate(-11deg) scale(.96); } to { opacity: 1; transform: translateX(-18%) rotate(-7deg); } }
@keyframes editorial-two-enter { from { opacity: 0; transform: translateX(4%) rotate(11deg) scale(.96); } to { opacity: 1; transform: translateX(18%) rotate(7deg); } }
@keyframes editorial-three-enter { from { opacity: 0; transform: translateY(6%) scale(.96); } to { opacity: 1; transform: rotate(1.5deg); } }

.collection-section { width: var(--page); margin: 0 auto; padding: 120px 0; }
.occasion-section { width: var(--page); margin: 0 auto; padding: 10px 0 120px; }
.occasion-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.occasion-heading h2 { max-width: 720px; margin: 0; font-size: clamp(2.3rem, 4vw, 4.4rem); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.occasion-heading a { min-height: 44px; display: inline-flex; align-items: center; color: var(--graphite); font-size: .84rem; font-weight: 600; text-underline-offset: 5px; white-space: nowrap; }
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.occasion-card { min-height: 280px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid rgba(32,35,38,.13); border-radius: var(--radius); background: linear-gradient(145deg,#d5d8da,#eef0ef); color: var(--graphite); text-decoration: none; transition: transform 180ms var(--ease-out), box-shadow 180ms ease; }
.occasion-card-has-image { color: var(--white); }
.occasion-card-has-image::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,17,17,.38) 0%, rgba(20,17,17,.06) 36%, rgba(20,17,17,.84) 100%); content: ""; pointer-events: none; }
.occasion-card-media { width: 100%; height: 100%; position: absolute; inset: 0; z-index: 0; object-fit: cover; object-position: center; transition: transform 600ms var(--ease-out); }
.occasion-card-has-image::after { display: none; }
.occasion-card::after { width: 190px; height: 190px; position: absolute; inset: auto -54px -64px auto; border: 1px solid currentColor; border-radius: 50%; opacity: .12; content: ""; }
.occasion-card-dark { background: linear-gradient(145deg,#34383d,#535a61); color: var(--white); }
.occasion-card-light { background: linear-gradient(145deg,#f2f2ef,#dfe1e2); }
.occasion-card > span { position: relative; z-index: 2; font-size: .7rem; letter-spacing: .16em; }
.occasion-card div { position: relative; z-index: 2; display: grid; gap: 7px; }
.occasion-card strong { font-size: 1.35rem; font-weight: 500; }
.occasion-card small { max-width: 25ch; opacity: .72; font-size: .78rem; }
.occasion-card b { position: absolute; inset: 22px 22px auto auto; z-index: 2; font-size: 1.1rem; font-weight: 400; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(300px, .55fr); gap: 12px 70px; align-items: end; margin-bottom: 48px; }
.section-heading .section-kicker { grid-column: 1 / -1; }
.section-heading h2, .signature-copy h2, .material-story h2, .size-story h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}
.section-heading > p:last-child { margin: 0; color: var(--steel); max-width: 45ch; }
.category-filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 26px; scrollbar-width: none; }
.filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  white-space: nowrap;
  transition: transform 140ms var(--ease-out);
}
.filter-button.is-active { background: var(--graphite); color: var(--white); border-color: var(--graphite); }
.filter-button:active { transform: scale(.97); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { min-width: 0; }
.product-media-link { display: block; border-radius: var(--radius); color: inherit; text-decoration: none; }
.product-card:nth-child(1), .product-card:nth-child(6) { grid-column: span 2; }
.product-visual {
  position: relative;
  aspect-ratio: .78;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg, #e1e3e5);
  outline: 1px solid rgba(32, 35, 38, 0.13);
  outline-offset: -1px;
}
.product-card:nth-child(1) .product-visual, .product-card:nth-child(6) .product-visual { aspect-ratio: 1.2; }
.product-visual::before { content: ""; position: absolute; width: 78%; height: 78%; border: 1px solid rgba(32,35,38,.14); border-radius: 50%; transform: rotate(-12deg); }
.product-badge { position: absolute; inset: 14px auto auto 14px; z-index: 3; padding: 7px 10px; border-radius: 999px; background: rgba(245,245,242,.94); color: var(--graphite); font-size: .75rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 3px 14px rgba(32,35,38,.1); }
body[dir="rtl"] .product-badge { inset: 14px 14px auto auto; }
.product-photo { width: 100%; height: 100%; position: relative; z-index: 1; object-fit: cover; transition: transform 150ms var(--ease-out); }
.photo-placeholder { position: absolute; inset: 0; z-index: 1; display: grid; place-content: center; justify-items: center; gap: 10px; padding: 24px; color: var(--graphite); text-align: center; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.5), transparent 52%); }
.photo-placeholder svg { width: 48px; fill: none; stroke: var(--steel); stroke-width: 1.5; }
.photo-placeholder span { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.product-art { width: 76%; height: 76%; position: relative; z-index: 1; filter: drop-shadow(0 20px 18px rgba(32,35,38,.16)); transition: transform 150ms var(--ease-out); }
.product-meta { padding: 16px 4px 28px; }
.product-name-row { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.product-name-row h3, .product-name-row p { margin: 0; }
.product-name-row h3 { font-size: 1.1rem; font-weight: 500; }
.product-name-row h3 a { color: inherit; text-decoration: none; }
.product-name-row h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.product-price { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.product-color { margin: 6px 0 14px; color: var(--steel); font-size: .86rem; }
.product-controls { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.product-controls.has-colors { grid-template-columns: 1fr 1fr; }
.product-controls.has-colors .add-button { grid-column: 1 / -1; }
.size-select, .color-select {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
}
.add-button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 140ms var(--ease-out), opacity 150ms ease;
}
.add-button:active { transform: scale(.97); }
.product-skeleton { position: relative; overflow: hidden; aspect-ratio: .78; border-radius: var(--radius); background: #e5e6e7; }
.product-skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.65) 48%, transparent 70%); transform: translateX(-120%); animation: skeleton 1.6s linear infinite; }
@keyframes skeleton { to { transform: translateX(120%); } }
.product-error { grid-column: 1 / -1; min-height: 260px; display: grid; place-items: center; text-align: center; color: var(--steel); border: 1px solid #cfd2d4; border-radius: var(--radius); }
.product-error > div { max-width: 42rem; display: grid; justify-items: center; gap: 12px; padding: 28px; }
.product-error strong { color: var(--graphite); font-size: 1.05rem; font-weight: 600; }
.product-error p { max-width: 46ch; margin: 0; }
.product-error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px; }
.product-error-actions button,
.product-error-actions a { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid var(--graphite); border-radius: 7px; background: var(--graphite); color: var(--white); cursor: pointer; font: inherit; font-size: .84rem; font-weight: 600; text-decoration: none; }
.product-error-actions a { background: transparent; color: var(--graphite); }
.product-coming-soon {
  grid-column: 1 / -1;
  min-height: clamp(390px, 52vw, 560px);
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(38px, 7vw, 82px) 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid #cfd2d4;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 15%, rgba(122,64,83,.09), transparent 34%), linear-gradient(145deg, #f7f7f4, #e7e9eb);
  color: var(--steel);
  text-align: center;
}
.coming-soon-mark { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 26px; border: 1px solid rgba(52,56,61,.22); border-radius: 50%; color: var(--graphite); font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; letter-spacing: .08em; }
.coming-soon-kicker { margin: 0 0 12px; color: var(--accent); font-size: .73rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
.product-coming-soon > strong { max-width: 18ch; color: var(--graphite); font-size: clamp(2rem, 4.5vw, 4.4rem); font-weight: 420; letter-spacing: -.045em; line-height: 1; text-wrap: balance; }
.product-coming-soon > p:not(.coming-soon-kicker) { max-width: 48ch; margin: 20px 0 0; line-height: 1.65; text-wrap: pretty; }
.coming-soon-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.coming-soon-actions button, .coming-soon-actions a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid var(--graphite); border-radius: 7px; font: inherit; font-size: .84rem; font-weight: 600; text-decoration: none; }
.coming-soon-actions button { background: var(--graphite); color: var(--white); }
.coming-soon-actions a { background: transparent; color: var(--graphite); }
.coming-soon-actions button:active, .coming-soon-actions a:active { transform: scale(.96); }
.currency-settlement-note { max-width: 56ch; margin: 14px 0 24px; color: #656b73; font-size: .8rem; line-height: 1.5; }
.currency-settlement-note::before { content: "ⓘ"; margin-inline-end: 7px; color: var(--accent); }
.currency-settlement-note[hidden] { display: none; }

.signature-section {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  padding: 100px max(20px, calc((100vw - min(1240px, calc(100vw - 40px))) / 2));
  background: var(--graphite);
  color: var(--white);
}
.signature-section::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(17,18,19,.04) 0%, rgba(17,18,19,.08) 42%, rgba(17,18,19,.7) 66%, rgba(17,18,19,.95) 100%); content: ""; pointer-events: none; }
.signature-media { width: 100%; height: 100%; position: absolute; inset: 0; z-index: 0; object-fit: cover; object-position: center; }
.signature-copy { grid-column: 2; position: relative; z-index: 2; max-width: 560px; }
body[dir="rtl"] .signature-copy { grid-column: 1; justify-self: start; text-align: right; }
.signature-section .section-kicker { color: var(--accent-soft); }
.signature-copy p:last-child { max-width: 52ch; margin: 28px 0 0; color: #e5e5e3; font-size: 1.08rem; }

.detail-section { width: var(--page); margin: 0 auto; padding: 120px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.material-story, .size-story { min-height: 520px; position: relative; padding: clamp(28px,4vw,58px); border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.material-story { background: #dadddf; }
.size-story { background: var(--white); border: 1px solid #dfe1e2; }
.detail-story-has-image { isolation: isolate; justify-content: flex-end; border-color: rgba(32,35,38,.12); color: var(--white); background: #8b7068; }
.detail-story-has-image::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(24,20,19,.03) 28%, rgba(24,20,19,.25) 58%, rgba(24,20,19,.88) 100%); content: ""; pointer-events: none; }
.detail-story-media { width: 100%; height: 100%; position: absolute; inset: 0; z-index: -2; object-fit: cover; object-position: center; transition: transform 700ms var(--ease-out); }
.detail-story-copy { position: relative; z-index: 1; max-width: 48ch; }
.detail-story-has-image p, .material-story.detail-story-has-image p { color: rgba(255,255,255,.88); text-wrap: balance; }
.material-story h2, .size-story h2 { font-size: clamp(2.1rem,3.5vw,3.6rem); }
.material-story p, .size-story p { max-width: 46ch; margin: 22px 0 0; color: var(--steel); }
.material-story p { color: var(--graphite); }
.material-swatch { align-self: flex-end; width: 230px; height: 230px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(32,35,38,.16); }
.material-swatch span { width: 145px; height: 145px; border-radius: 50%; background: repeating-linear-gradient(118deg,#5e646b 0,#5e646b 2px,#767c83 3px,#767c83 7px); box-shadow: inset 20px 0 45px rgba(255,255,255,.14), 0 20px 60px rgba(32,35,38,.15); }
.size-glyph { color: var(--fog); font-size: clamp(2rem,5vw,5.4rem); letter-spacing: .04em; white-space: nowrap; }

@media (hover: hover) and (pointer: fine) {
  .detail-story-has-image:hover .detail-story-media { transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  .detail-story-media { transition: none; }
}

.service-band { width: var(--page); margin: 0 auto 120px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #d0d3d5; border-bottom: 1px solid #d0d3d5; }
.service-band article { display: flex; align-items: center; gap: 20px; padding: 34px 28px; border-inline-end: 1px solid #d0d3d5; }
.service-band article:last-child { border-inline-end: 0; }
.service-band svg { width: 42px; flex: 0 0 42px; fill: none; stroke: var(--accent); stroke-width: 1.4; }
.service-band h3, .service-band p { margin: 0; }
.service-band h3 { font-size: 1rem; }
.service-band p { margin-top: 5px; color: var(--steel); font-size: .85rem; }

.closing-section { width: var(--page); margin: 0 auto; min-height: 440px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; border-top: 1px solid #d0d3d5; }
.closing-section p { max-width: 850px; margin: 0 0 40px; font-size: clamp(2.8rem,6vw,6.8rem); line-height: .95; letter-spacing: -.05em; }
.closing-link { min-height: 58px; display: inline-flex; align-items: center; gap: 36px; padding: 0 22px; border-bottom: 2px solid var(--accent); color: var(--accent); text-decoration: none; font-weight: 600; }
.closing-link span:last-child { transition: transform 150ms var(--ease-out); }
.site-footer {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(220px, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
  padding: 52px 0 46px;
  border-top: 1px solid #d0d3d5;
  color: var(--steel);
}
.footer-brand { max-width: 250px; display: flex; flex-direction: column; align-items: start; gap: 6px; }
.footer-logo { width: 76px; height: 50px; margin-bottom: 9px; object-fit: cover; object-position: top; mix-blend-mode: multiply; }
.footer-brand strong { color: var(--ink); letter-spacing: .14em; }
.footer-links { align-self: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 16px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 4px; }
.footer-aside { min-width: 328px; display: flex; flex-direction: column; align-items: end; gap: 16px; }
.footer-selectors { display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; }
.footer-selector {
  width: 210px;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #b9bdc1;
  border-radius: 8px;
  background: rgba(255,255,255,.52);
  color: var(--ink);
}
.footer-selector-icon { width: 18px; height: 18px; position: absolute; inset-inline-start: 14px; z-index: 1; fill: none; stroke: currentColor; stroke-width: 1.5; pointer-events: none; }
.footer-language-select,
.footer-currency-select {
  width: 100%;
  min-height: 44px;
  appearance: none;
  padding: 0 40px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.footer-currency-selector { width: 110px; }
.footer-selector-chevron { width: 9px; height: 6px; position: absolute; inset-inline-end: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.footer-social { display: flex; align-items: center; gap: 8px; }
.footer-social[hidden] { display: none; }
.footer-social-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #c7cace; border-radius: 50%; color: var(--graphite); text-decoration: none; transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms var(--ease-out); }
.footer-social-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 16px; }
.footer-contact a { min-height: 44px; display: inline-flex; align-items: center; color: var(--graphite); font-size: .82rem; text-underline-offset: 4px; }
.footer-copyright { margin: 0; font-size: .78rem; }
.footer-policy-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.footer-policy-links a { min-height: 44px; display: inline-flex; align-items: center; color: #555b60; font-size: .76rem; text-decoration: underline; text-decoration-color: #aeb2b5; text-underline-offset: .2em; }
.footer-policy-links a:focus-visible { outline: 2px solid var(--graphite); outline-offset: 3px; }

.whatsapp-concierge {
  min-height: 50px;
  position: fixed;
  inset-inline-end: 20px;
  inset-block-end: max(20px, env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(32,35,38,.2);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms var(--ease-out), opacity 140ms ease;
}
.whatsapp-concierge svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-concierge:active { transform: scale(.96); }
body.is-locked .whatsapp-concierge,
body:has(.cookie-banner.is-visible) .whatsapp-concierge { opacity: 0; pointer-events: none; transform: translateY(8px); }

/* Saved pieces: quiet, persistent, and usable without an account. */
.header-favorites-trigger { position: relative; }
.favorites-count {
  position: absolute;
  inset-block-start: 2px;
  inset-inline-end: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--ink, #282b2f);
  color: #fff;
  font: 600 9px/14px "Outfit", sans-serif;
  text-align: center;
}
.product-card { position: relative; }
.product-favorite-button {
  position: absolute;
  z-index: 3;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(40, 43, 47, .18);
  border-radius: 50%;
  background: rgba(248, 248, 247, .9);
  color: #34383d;
  box-shadow: 0 5px 18px rgba(28, 30, 32, .08);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.product-favorite-button svg,
.header-favorites-trigger svg { width: 20px; height: 20px; fill: transparent; stroke: currentColor; stroke-width: 1.45; }
.product-favorite-button[aria-pressed="true"] svg,
.header-favorites-trigger[aria-pressed="true"] svg { fill: currentColor; }
.product-review-line {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  color: #555a60;
  font-size: .78rem;
  letter-spacing: .02em;
}
.product-review-line svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.favorites-drawer {
  position: fixed;
  z-index: 115;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  opacity: 0;
  transition: opacity .22s ease;
}
.favorites-drawer[hidden] { display: none; }
.favorites-drawer.is-open { opacity: 1; }
.favorites-scrim {
  border: 0;
  background: rgba(18, 20, 22, .58);
  cursor: pointer;
}
.favorites-surface {
  min-width: 0;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  background: #f7f7f5;
  color: #2b2e32;
  transform: translateX(22px);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
[dir="rtl"] .favorites-surface { transform: translateX(-22px); }
.favorites-drawer.is-open .favorites-surface { transform: translateX(0); }
.favorites-surface > header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 28px 23px;
  border-bottom: 1px solid #d9dad8;
  background: rgba(247, 247, 245, .95);
  backdrop-filter: blur(12px);
}
.favorites-surface > header p { margin: 0 0 7px; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.favorites-surface > header h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.75rem, 5vw, 2.35rem); font-weight: 400; line-height: 1; }
.favorites-surface > header span { display: block; margin-top: 9px; color: #73777b; font-size: .8rem; }
.favorites-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d2d4d3;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.favorites-close svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.product-favorite-button:focus-visible,
.favorites-close:focus-visible,
.favorites-item button:focus-visible,
.favorites-empty button:focus-visible,
.favorites-empty a:focus-visible { outline: 3px solid var(--accent, #7a4053); outline-offset: 3px; }
.favorites-content { padding: 8px 28px 32px; }
.favorites-list { display: grid; }
.favorites-item { display: grid; grid-template-columns: 106px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid #dedfdd; }
.favorites-item-media { display: block; min-height: 132px; background: #e4e5e3; overflow: hidden; }
.favorites-item-media img { width: 100%; height: 100%; min-height: 132px; object-fit: cover; }
.favorites-placeholder { display: grid; place-content: center; height: 100%; min-height: 132px; text-align: center; }
.favorites-placeholder small { font-size: .58rem; letter-spacing: .1em; }
.favorites-placeholder strong { margin-top: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 400; }
.favorites-item > div { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.favorites-item p { margin: 0 0 4px; color: #777b7e; font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }
.favorites-item h3 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; font-weight: 400; line-height: 1.2; }
.favorites-item h3 a { color: inherit; text-decoration: none; }
.favorites-item strong { font-size: .82rem; font-weight: 500; }
.favorites-item > div > div { display: flex; flex-wrap: wrap; gap: 15px; margin-top: auto; padding-top: 14px; }
.favorites-item > div > div a,
.favorites-item > div > div button { border: 0; border-bottom: 1px solid currentColor; background: none; color: inherit; font: inherit; font-size: .76rem; text-decoration: none; cursor: pointer; }
.favorites-empty { display: grid; justify-items: center; padding: 70px 16px; text-align: center; }
.favorites-empty-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 22px; border: 1px solid #cfd1d0; border-radius: 50%; }
.favorites-empty-icon svg { width: 22px; height: 22px; fill: transparent; stroke: currentColor; stroke-width: 1.25; }
.favorites-empty h3 { max-width: 310px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 400; }
.favorites-empty p { max-width: 335px; margin: 12px 0 24px; color: #686d71; line-height: 1.55; }
.favorites-empty a,
.favorites-empty button { min-height: 44px; padding: 13px 22px; border: 1px solid #34383d; background: #34383d; color: #fff; font: 600 .72rem/1 "Outfit", sans-serif; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; cursor: pointer; }
.favorites-loading { display: grid; gap: 16px; padding-top: 18px; }
.favorites-loading span { display: block; height: 148px; background: linear-gradient(100deg, #e6e7e5 25%, #f2f2f0 38%, #e6e7e5 52%); background-size: 200% 100%; animation: favorite-shimmer 1.25s linear infinite; }
@keyframes favorite-shimmer { to { background-position-x: -200%; } }

@media (hover: hover) and (pointer: fine) {
  .editorial-stack:hover .editorial-card-one { transform: translateX(-27%) rotate(-9deg); }
  .editorial-stack:hover .editorial-card-two { transform: translateX(27%) rotate(9deg); }
  .editorial-stack:hover .editorial-card-three { transform: rotate(.5deg) scale(1.015); box-shadow: 0 28px 58px rgba(32,35,38,.24); }
  .product-favorite-button:hover,
  .favorites-close:hover { background: #34383d; color: #fff; transform: translateY(-1px); }
}

@media (max-width: 640px) {
  .product-coming-soon { min-height: 420px; padding-inline: 20px; }
  .coming-soon-actions { width: 100%; }
  .coming-soon-actions button, .coming-soon-actions a { width: 100%; }
  .favorites-drawer { grid-template-columns: 1fr; }
  .favorites-scrim { position: absolute; inset: 0; }
  .favorites-surface { position: relative; z-index: 1; width: 100%; }
  .favorites-surface > header { padding: 22px 20px 18px; }
  .favorites-content { padding: 4px 20px 24px; }
  .product-favorite-button { inset-block-start: 10px; inset-inline-end: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .favorites-drawer, .favorites-surface, .product-favorite-button { transition: none; }
  .favorites-loading span { animation: none; }
}

.reveal { transform: translateY(24px); clip-path: inset(0 0 10% 0); transition: transform 700ms var(--ease-in-out), clip-path 700ms var(--ease-in-out); }
.reveal[data-visible="true"] { transform: none; clip-path: inset(0); }

.scrim { position: fixed; inset: 0; z-index: 60; background: rgba(18,20,22,.46); backdrop-filter: blur(5px); opacity: 0; transition: opacity 250ms var(--ease-out); }
.scrim.is-visible { opacity: 1; }
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 250ms;
}
.promo-popup.is-open { pointer-events: auto; visibility: visible; transition-delay: 0s; }
.promo-surface {
  position: relative;
  width: min(1180px, 100%);
  min-height: min(650px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  box-shadow: 0 32px 90px rgba(12,14,16,.4);
  opacity: 0;
  transform: translateY(18px) scale(.965);
  transform-origin: center;
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.promo-popup.is-open .promo-surface { opacity: 1; transform: none; }
.promo-close {
  position: absolute;
  inset-block-start: 20px;
  inset-inline-end: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32,35,38,.18);
  border-radius: 50%;
  background: rgba(245,245,242,.86);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.promo-close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(44px, 6vw, 88px);
  background:
    radial-gradient(circle at 0 0, rgba(122,64,83,.28), transparent 36%),
    var(--graphite);
  color: var(--white);
}
.promo-brand { margin: 0 0 44px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: .05em; }
.promo-eyebrow { margin: 0 0 12px; color: var(--accent-soft); font-size: .76rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; }
.promo-copy h2 { margin: 0; font-size: clamp(4rem, 7.2vw, 6.9rem); font-weight: 520; line-height: .82; letter-spacing: -.065em; }
.promo-copy h2 small { display: block; margin-top: 18px; font-size: clamp(1.7rem, 3vw, 3.2rem); font-weight: 420; line-height: 1; letter-spacing: -.035em; }
.promo-description { max-width: 34rem; margin: 26px 0 24px; color: #ececeb; font-size: clamp(1rem, 1.4vw, 1.16rem); }
.promo-code-row { width: min(100%, 420px); min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; padding: 0 18px; border: 1px solid rgba(255,255,255,.36); color: #d8d9d9; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.promo-code-row strong { color: var(--white); font-size: 1rem; letter-spacing: .2em; }
.promo-activate { width: min(100%, 420px); min-height: 58px; border: 0; border-radius: 4px; background: var(--accent); color: var(--white); font-weight: 650; transition: background-color 160ms ease-out, transform 140ms var(--ease-out); }
.promo-activate:active { transform: scale(.985); }
.promo-dismiss { min-height: 48px; margin-top: 8px; padding: 0; border: 0; background: transparent; color: #e1e2e2; text-decoration: underline; text-underline-offset: 4px; }
.promo-terms { max-width: 420px; margin: 18px 0 0; color: #c9ccce; font-size: .75rem; line-height: 1.55; }
.promo-art { position: relative; min-height: 650px; overflow: hidden; background: #d5b4a2; }
.promo-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(32,35,38,.13), transparent 28%); pointer-events: none; }
.promo-art img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 50% 50%; }
body[dir="rtl"] .promo-copy { align-items: flex-start; }
.cart-drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  z-index: 70;
  width: min(460px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  visibility: hidden;
  transform: translateX(105%);
  transition: transform 280ms var(--ease-drawer), visibility 0s linear 280ms;
  box-shadow: -20px 0 60px rgba(32,35,38,.2);
  overscroll-behavior: contain;
}
body[dir="rtl"] .cart-drawer { transform: translateX(-105%); }
.cart-drawer.is-open { visibility: visible; transform: none; transition-delay: 0s; }
body[dir="rtl"] .cart-drawer.is-open { transform: none; }
.drawer-header { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid #e1e3e4; }
.drawer-header h2 { margin: 0; font-size: 1.7rem; font-weight: 500; }
.drawer-header .drawer-kicker { margin-bottom: 4px; }
.icon-button { display: grid; place-items: center; border-radius: 50%; }
.cart-items { overflow-y: auto; padding: 12px 24px; }
.empty-cart { min-height: 360px; display: grid; place-items: center; text-align: center; color: var(--steel); }
.empty-cart svg { width: 54px; margin: 0 auto 18px; fill: none; stroke: var(--fog); stroke-width: 1.2; }
.empty-cart button { min-height: 46px; margin-top: 12px; padding: 0 18px; border: 1px solid var(--graphite); border-radius: 8px; background: transparent; color: var(--graphite); font-weight: 600; transition: transform 140ms var(--ease-out); }
.empty-cart button:active { transform: scale(.97); }
.cart-line { display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid #e1e3e4; }
.cart-thumb { display: grid; place-items: center; min-height: 105px; background: var(--mist); border-radius: 9px; }
.cart-thumb svg { width: 75%; height: 75%; }
.cart-thumb-image { width: 100%; height: 105px; object-fit: cover; border-radius: inherit; }
.cart-line h3, .cart-line p { margin: 0; }
.cart-line h3 { font-size: .98rem; font-weight: 500; }
.cart-line p { color: var(--steel); font-size: .8rem; margin-top: 3px; }
.quantity { display: inline-grid; grid-template-columns: 44px 34px 44px; align-items: center; margin-top: 12px; border: 1px solid var(--line-strong); border-radius: 7px; overflow: hidden; }
.quantity button { min-height: 44px; border: 0; background: transparent; }
.quantity span { text-align: center; font-size: .84rem; }
.remove-line { min-width: 44px; min-height: 44px; align-self: start; border: 0; background: transparent; color: var(--steel); font-size: 1.3rem; }
.cart-footer { padding: 22px 24px max(24px, env(safe-area-inset-bottom)); border-top: 1px solid #e1e3e4; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; }
.cart-total strong { font-size: 1.25rem; }
.cart-recommendation { margin: 20px 0 10px; padding: 16px; border: 1px solid #d7d9db; border-radius: 10px; background: #f2f2f0; }
.cart-recommendation-kicker { margin: 0 0 12px; color: var(--accent); font-size: .75rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.cart-recommendation-row { display: grid; grid-template-columns: 72px 1fr; gap: 12px; }
.cart-recommendation-thumb { min-height: 86px; display: grid; place-items: center; overflow: hidden; border-radius: 7px; }
.cart-recommendation-thumb img { width: 100%; height: 86px; object-fit: cover; }
.cart-recommendation-thumb svg { width: 70%; height: 70%; }
.cart-recommendation-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.cart-recommendation-copy a { color: inherit; font-size: .9rem; font-weight: 600; text-decoration: none; }
.cart-recommendation-copy span { margin: 3px 0 auto; color: #656b73; font-size: .75rem; line-height: 1.35; }
.cart-recommendation-copy strong { font-size: .82rem; }
.cart-recommendation-controls { display: grid; grid-template-columns: 1fr 1fr auto; gap: 7px; margin-top: 12px; }
.cart-recommendation-controls select, .cart-recommendation-controls button { min-height: 44px; font-size: .8rem; }
.cart-recommendation-controls button { min-width: 72px; border: 0; border-radius: 7px; background: var(--graphite); color: var(--white); font-weight: 600; }
.cart-delivery-confirmation { margin: 14px 0 18px; padding: 11px 12px; border-inline-start: 3px solid var(--accent); background: rgba(98,51,68,.055); color: var(--steel); font-size: .8rem; line-height: 1.5; }
.checkout-trigger { width: 100%; min-height: 56px; border: 0; border-radius: 8px; background: var(--accent); color: var(--white); font-weight: 600; position: relative; overflow: hidden; transition: transform 140ms var(--ease-out); }
.checkout-trigger::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 28%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent); transform: translateX(-160%) skewX(-18deg); transition: transform 500ms var(--ease-out); }
.checkout-trigger:active { transform: scale(.97); }
.checkout-trigger:disabled { cursor: not-allowed; opacity: .46; }
.cart-next-step { margin: 9px 4px 0; color: var(--steel); font-size: .76rem; line-height: 1.45; text-align: center; }
.cart-checkout-status { margin: 10px 0 0; padding: 11px 12px; border-inline-start: 3px solid var(--danger); background: rgba(155,35,53,.06); color: var(--danger); font-size: .79rem; line-height: 1.45; }
.cart-checkout-status[hidden] { display: none; }
.cart-checkout-status:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.cart-checkout-assurance { display: grid; grid-template-columns: 1fr 1fr; margin-top: 10px; border-block: 1px solid #e1e3e4; }
.cart-checkout-assurance p { grid-column: 1 / -1; min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0; color: var(--graphite); font-size: .73rem; font-weight: 600; text-align: center; }
.cart-checkout-assurance p svg,
.cart-checkout-assurance a svg { width: 16px; height: 16px; flex: 0 0 16px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.cart-checkout-assurance > a { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 7px 10px; border-top: 1px solid #e1e3e4; color: var(--steel); font-size: .71rem; line-height: 1.3; text-align: center; text-decoration: underline; text-underline-offset: 3px; }
.cart-checkout-assurance > a + a { border-inline-start: 1px solid #e1e3e4; color: var(--accent); font-weight: 600; }
.continue-shopping-link { width: 100%; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; color: var(--graphite); font-size: .84rem; font-weight: 600; text-decoration: none; }
.continue-shopping-link svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 140ms var(--ease-out); }
body[dir="rtl"] .continue-shopping-link svg { transform: scaleX(-1); }

.checkout-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; pointer-events: none; visibility: hidden; transition: visibility 0s linear 250ms; }
.checkout-modal.is-open { pointer-events: auto; visibility: visible; transition-delay: 0s; }
.checkout-panel { width: min(760px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; transform: translateY(18px) scale(.96); transform-origin: center; transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out); }
.checkout-modal.is-open .checkout-panel { opacity: 1; transform: none; }
#checkoutForm { padding: 24px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#checkoutForm > label, .field-grid label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--graphite); font-size: .88rem; }
input, select, textarea { width: 100%; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--white); color: var(--ink); padding: 10px 12px; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 2px solid rgba(122,64,83,.18); outline-offset: 1px; }
[aria-invalid="true"] { border-color: var(--danger); outline: 2px solid rgba(155,35,53,.16); outline-offset: 1px; }
.delivery-choice { margin: 4px 0 16px; padding: 16px; display: flex; flex-wrap: wrap; gap: 12px 24px; border: 1px solid #d7d9db; border-radius: 8px; }
.checkout-delivery-choice { display: grid; gap: 4px; margin: 2px 0 16px; padding: 14px 16px; border-inline-start: 3px solid var(--accent); border-radius: 7px; background: rgba(122,64,83,.055); }
.checkout-delivery-choice span { color: var(--steel); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.checkout-delivery-choice strong { color: var(--graphite); font-size: .92rem; font-weight: 600; }
.checkout-order-summary { margin: 6px 0 18px; padding: 18px; border: 1px solid #d7d9db; border-radius: 9px; background: #f7f7f5; }
.checkout-order-summary h3 { margin: 0 0 12px; font-size: .92rem; font-weight: 650; }
.checkout-order-summary p { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin: 8px 0; color: var(--steel); font-size: .84rem; }
.checkout-order-summary p[hidden] { display: none; }
.checkout-order-summary p strong { color: var(--graphite); font-weight: 600; }
.checkout-order-summary .checkout-order-total { margin: 14px 0 0; padding-top: 13px; border-top: 1px solid #d7d9db; color: var(--graphite); font-size: .98rem; font-weight: 650; }
.checkout-order-summary .checkout-order-total strong { font-size: 1.1rem; }
.delivery-choice legend { padding: 0 8px; font-size: .88rem; }
.delivery-choice label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.delivery-choice input { width: 18px; min-height: 18px; accent-color: var(--accent); }
.form-error { min-height: 24px; margin: 0 0 8px; color: var(--danger); font-size: .85rem; }
.confirm-order { width: 100%; min-height: 56px; border: 0; border-radius: 8px; background: var(--graphite); color: var(--white); font-weight: 600; transition: transform 140ms var(--ease-out); }
.confirm-order:active { transform: scale(.97); }
.confirm-order:disabled { opacity: .55; }
.cash-note { margin: 10px 0 0; text-align: center; color: var(--steel); font-size: .8rem; }
.delivery-preference-panel { width: min(620px, 100%); }
#deliveryPreferenceForm { padding: 24px; }
.delivery-preference-intro { max-width: 55ch; margin: 0 0 22px; color: var(--steel); font-size: .9rem; line-height: 1.55; }
.delivery-choice-cards { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; padding: 0; border: 0; }
.delivery-choice-cards legend { margin-bottom: 9px; padding: 0; color: var(--graphite); font-weight: 600; }
.delivery-choice-cards label { min-height: 76px; gap: 12px; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--white); cursor: pointer; transition: border-color 140ms var(--ease-out), background-color 140ms var(--ease-out); }
.delivery-choice-cards label:has(input:checked) { border-color: var(--accent); background: rgba(122,64,83,.055); }
.delivery-choice-cards label:focus-within { outline: 2px solid rgba(122,64,83,.18); outline-offset: 2px; }
.delivery-choice-cards label > span { display: grid; gap: 3px; }
.delivery-choice-cards strong { font-size: .92rem; font-weight: 650; }
.delivery-choice-cards small { color: var(--steel); font-size: .76rem; line-height: 1.35; }
.delivery-preference-field { display: grid; gap: 7px; margin-bottom: 16px; color: var(--graphite); font-size: .88rem; }
.delivery-preference-field[hidden] { display: none; }
.delivery-preference-status { min-height: 22px; margin: 0 0 9px; color: var(--steel); font-size: .82rem; }
.delivery-preference-status.is-error { color: var(--danger); }
.delivery-price-card { display: grid; grid-template-columns: 1fr auto; gap: 5px 18px; align-items: center; margin: 2px 0 12px; padding: 16px 18px; border: 1px solid rgba(122,64,83,.24); border-radius: 9px; background: rgba(122,64,83,.055); color: var(--graphite); }
.delivery-price-card[hidden] { display: none; }
.delivery-price-card > span { font-size: .78rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.delivery-price-card strong { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 500; }
.delivery-price-card small { grid-column: 1 / -1; color: var(--steel); font-size: .72rem; line-height: 1.4; }
.delivery-preference-submit { margin-top: 2px; }
.delivery-preference-field select:disabled { cursor: wait; opacity: .62; }
.order-success { padding: 56px 28px; text-align: center; }
.order-success svg { width: 68px; margin: 0 auto 22px; fill: none; stroke: var(--accent); stroke-width: 2; }
.order-success h3 { margin: 0; font-size: 2rem; font-weight: 500; }
.order-success p { color: var(--steel); }
.order-success strong { display: block; margin: 18px auto 28px; font-size: 1.4rem; letter-spacing: .08em; }
.order-success button { min-height: 48px; padding: 0 22px; border: 1px solid var(--graphite); border-radius: 8px; background: transparent; color: var(--graphite); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; min-width: 220px; max-width: calc(100vw - 32px); padding: 13px 18px; border-radius: 8px; background: var(--ink); color: var(--white); text-align: center; opacity: 0; transform: translate(-50%, calc(100% + 50px)); transition: opacity 400ms ease, transform 400ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 560px) {
  .delivery-choice-cards { grid-template-columns: 1fr 1fr; }
}

.store-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: start center;
  padding: max(18px, env(safe-area-inset-top)) 18px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(18,20,22,.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), visibility 0s linear 220ms;
}
.store-search-overlay[hidden] { display: none; }
.store-search-overlay.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.store-search-surface {
  width: min(760px, 100%);
  max-height: calc(100dvh - 36px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  margin-top: clamp(26px, 8vh, 84px);
  overflow: hidden;
  border-radius: 16px;
  background: var(--pearl);
  box-shadow: 0 30px 90px rgba(18,20,22,.28);
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.store-search-overlay.is-open .store-search-surface { opacity: 1; transform: none; }
.store-search-header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; }
.store-search-header p, .store-search-header h2 { margin: 0; }
.store-search-header p { color: var(--accent); font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.store-search-header h2 { margin-top: 3px; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 500; letter-spacing: -.035em; }
.store-search-close { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 44px; border: 0; border-radius: 50%; background: var(--white); color: var(--ink); transition: background-color 140ms ease, transform 140ms var(--ease-out); }
.store-search-close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.store-search-close:active { transform: scale(.96); }
.store-search-field { min-height: 58px; display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: center; margin: 0 24px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--white); }
.store-search-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(122,64,83,.12); }
.store-search-field svg { width: 21px; justify-self: center; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.store-search-field input { min-height: 56px; border: 0; border-radius: 0; padding: 0 14px 0 0; background: transparent; font-size: 1rem; }
.store-search-field input:focus { outline: 0; }
body[dir="rtl"] .store-search-field input { padding: 0 0 0 14px; }
.store-search-results-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 22px 24px 12px; }
.store-search-results-heading h3, .store-search-results-heading span { margin: 0; }
.store-search-results-heading h3 { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.store-search-results-heading span { color: var(--steel); font-size: .76rem; }
.store-search-results { min-height: 180px; overflow-y: auto; padding: 0 24px 8px; }
.store-search-result { min-height: 88px; display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 9px 0; border-bottom: 1px solid #d7d9db; text-decoration: none; }
.store-search-result-media { width: 70px; height: 70px; display: grid; place-items: center; overflow: hidden; border-radius: 8px; background: var(--search-bg, var(--mist)); outline: 1px solid rgba(0,0,0,.1); outline-offset: -1px; }
.store-search-result-media img { width: 100%; height: 100%; object-fit: cover; }
.store-search-placeholder svg { width: 28px; fill: none; stroke: var(--steel); stroke-width: 1.2; }
.store-search-result-copy { min-width: 0; display: grid; gap: 3px; }
.store-search-result-copy strong { overflow: hidden; font-size: .94rem; font-weight: 550; text-overflow: ellipsis; white-space: nowrap; }
.store-search-result-copy span { overflow: hidden; color: var(--steel); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.store-search-result bdi { color: var(--graphite); font-size: .84rem; font-weight: 600; white-space: nowrap; }
.store-search-empty { min-height: 180px; display: grid; place-content: center; justify-items: center; gap: 5px; color: var(--steel); text-align: center; }
.store-search-empty svg { width: 36px; margin-bottom: 8px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.store-search-empty strong { color: var(--graphite); }
.store-search-empty span { max-width: 36ch; font-size: .84rem; }
.store-search-empty-help { min-height: 44px; display: inline-flex; align-items: center; margin-top: 10px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 7px; color: var(--accent); font-size: .8rem; font-weight: 600; text-decoration: none; }
.store-search-error button { min-height: 46px; margin-top: 14px; padding: 0 18px; border: 1px solid var(--graphite); border-radius: 7px; background: var(--graphite); color: var(--white); cursor: pointer; font: inherit; font-size: .84rem; font-weight: 600; }
.store-search-all { min-height: 54px; display: flex; align-items: center; justify-content: center; margin: 12px 24px 24px; border-radius: 8px; background: var(--graphite); color: var(--white); font-size: .86rem; font-weight: 600; text-decoration: none; transition: background-color 140ms ease, transform 140ms var(--ease-out); }
.store-search-all:active { transform: scale(.96); }

body[dir="rtl"] .hero-cta svg { transform: scaleX(-1); }

@media (hover: hover) and (pointer: fine) {
  .footer-social-icon:hover { border-color: var(--graphite); background: var(--graphite); color: var(--white); transform: translateY(-2px); }
  .footer-policy-links a:hover { color: var(--graphite); text-decoration-color: currentColor; }
  .whatsapp-concierge:hover { background: #623344; box-shadow: 0 16px 38px rgba(32,35,38,.25); transform: translateY(-2px); }
  .occasion-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(32,35,38,.12); }
  .occasion-card:hover .occasion-card-media { transform: scale(1.035); }
  .announcement-language:hover { color: var(--accent-soft); }
  .header-action-icon:hover, .header-actions .cart-trigger:hover { background: var(--mist); }
  .store-search-close:hover { background: var(--mist); }
  .store-search-result:hover .store-search-result-copy strong { text-decoration: underline; text-underline-offset: 4px; }
  .store-search-all:hover { background: var(--ink); }
  .footer-selector:hover { border-color: var(--line-strong); }
  .primary-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); }
  .hero-cta:hover { transform: translateY(-2px); background: var(--ink); }
  .hero-cta:hover svg { transform: translateX(5px); }
  body[dir="rtl"] .hero-cta:hover svg { transform: scaleX(-1) translateX(5px); }
  .filter-button:hover { border-color: var(--graphite); }
  .product-card:hover .product-art, .product-card:hover .product-photo { transform: scale(1.035) translateY(-5px); }
  .add-button:hover { opacity: .88; }
  .icon-button:hover { background: var(--mist); }
  .empty-cart button:hover { background: var(--graphite); color: var(--white); }
  .closing-link:hover span:last-child { transform: translate(12px, -4px); }
  .checkout-trigger:hover::after { transform: translateX(460%) skewX(-18deg); }
  .continue-shopping-link:hover svg { transform: translateX(4px); }
  body[dir="rtl"] .continue-shopping-link:hover svg { transform: scaleX(-1) translateX(4px); }
  .confirm-order:hover { background: var(--ink); }
  .promo-close:hover { background: var(--white); }
  .promo-activate:hover { background: #8b4960; }
  .mobile-menu nav a:hover { background: var(--mist); }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 32px, 760px); }
  .primary-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-copy { max-width: 650px; }
  .hero-art { min-height: 540px; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .occasion-card:last-child { grid-column: 1 / -1; min-height: 220px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card:nth-child(1), .product-card:nth-child(6) { grid-column: span 1; }
  .product-card:nth-child(1) .product-visual, .product-card:nth-child(6) .product-visual { aspect-ratio: .78; }
  .signature-section { grid-template-columns: .7fr 1.3fr; }
  .service-band { grid-template-columns: 1fr; }
  .service-band article { border-inline-end: 0; border-bottom: 1px solid #d0d3d5; }
  .service-band article:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
  .footer-aside { grid-column: 2; grid-row: 1; justify-self: end; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 28px); }
  .announcement { min-height: 40px; grid-template-columns: 44px minmax(0, 1fr) 44px; padding: 4px 10px; font-size: .75rem; }
  .announcement-social { visibility: hidden; }
  .announcement-message { max-width: 34ch; }
  .announcement-language { width: 44px; padding: 0; }
  .announcement-language-full { display: none; }
  .announcement-language-short { display: inline; }
  .site-header { height: 82px; gap: 8px; }
  main section[id] { scroll-margin-top: 102px; }
  .brand { min-width: 68px; }
  .brand-logo { width: 68px; }
  .cart-trigger > span:not(.cart-count) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 34px; padding: 48px 20px 36px; direction: inherit; }
  .hero-copy { width: 100%; max-width: none; }
  .hero h1 { max-width: 8ch; font-size: clamp(3.05rem,14vw,4.5rem); }
  .hero-subtitle { margin: 22px 0 26px; }
  .hero-reassurance { display: grid; gap: 7px; margin-top: 18px; }
  .hero-art { width: 100%; min-height: 430px; }
  .editorial-stack { width: min(360px, 90%); }
  .fabric-orbit-one { width: 390px; height: 390px; }
  .fabric-orbit-two { width: 300px; height: 450px; }
  .collection-section { padding: 84px 0; }
  .occasion-section { padding: 4px 0 84px; }
  .occasion-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .occasion-grid { grid-template-columns: 1fr; }
  .occasion-card, .occasion-card:last-child { min-height: 210px; grid-column: auto; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 34px; }
  .section-heading .section-kicker { grid-column: 1; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { aspect-ratio: 1 / 1.07; }
  .signature-section { min-height: 660px; grid-template-columns: 1fr; padding-block: 80px; }
  .signature-copy { grid-column: 1; align-self: end; }
  .signature-section::after { background: linear-gradient(180deg, rgba(17,18,19,.04) 0%, rgba(17,18,19,.12) 42%, rgba(17,18,19,.95) 82%, rgba(17,18,19,.98) 100%); }
  .signature-media { object-position: 22% center; }
  .detail-section { grid-template-columns: 1fr; padding: 80px 0; }
  .material-story, .size-story { min-height: 440px; }
  .material-swatch { width: 180px; height: 180px; }
  .material-swatch span { width: 116px; height: 116px; }
  .service-band { margin-bottom: 80px; }
  .closing-section { min-height: 390px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 46px 0; }
  .footer-links { grid-column: auto; grid-row: auto; justify-self: start; justify-content: start; }
  .footer-aside { grid-column: auto; grid-row: auto; min-width: 0; align-items: start; justify-self: start; }
  .footer-policy-links { justify-content: flex-start; }
  .footer-selectors { max-width: calc(100vw - 28px); justify-content: start; }
  .footer-selector { width: 210px; }
  .footer-currency-selector { width: 110px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .checkout-modal { padding: 0; align-items: end; }
  .checkout-panel { max-height: 94dvh; border-radius: var(--radius) var(--radius) 0 0; }
  .promo-popup {
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }
  .promo-surface {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) clamp(170px, 34dvh, 300px);
    overflow: hidden;
    border-radius: 13px;
  }
  .promo-copy {
    min-height: 0;
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    padding: 32px 24px max(24px, env(safe-area-inset-bottom));
  }
  .promo-brand { margin-bottom: 20px; font-size: clamp(1.1rem, 5vw, 1.35rem); }
  .promo-copy h2 { font-size: clamp(3.25rem, 17vw, 4.65rem); line-height: .84; }
  .promo-copy h2 small { margin-top: 12px; font-size: clamp(1.45rem, 7vw, 2rem); }
  .promo-description { margin-block: 16px 16px; font-size: .96rem; }
  .promo-code-row { min-height: 50px; margin-bottom: 10px; }
  .promo-activate { min-height: 52px; }
  .promo-dismiss { min-height: 44px; margin-top: 4px; }
  .promo-terms { margin-top: 10px; }
  .promo-art { min-height: 0; height: 100%; }
  .promo-art img { object-position: 50% 38%; }
  .promo-close { inset-block-start: 18px; inset-inline-end: 18px; background: rgba(245,245,242,.94); }
  .store-search-overlay { align-items: end; padding: 0; }
  .store-search-surface { width: 100%; max-height: 92dvh; margin-top: 0; border-radius: 16px 16px 0 0; padding-bottom: env(safe-area-inset-bottom); transform: translateY(18px); }
  .store-search-header { min-height: 82px; padding: 18px 18px; }
  .store-search-field { margin-inline: 18px; }
  .store-search-results-heading { padding-inline: 18px; }
  .store-search-results { padding-inline: 18px; }
  .store-search-all { margin-inline: 18px; }
  .store-search-result { grid-template-columns: 62px minmax(0, 1fr) auto; }
  .store-search-result-media { width: 62px; height: 62px; }
  .cart-recommendation-controls { grid-template-columns: 1fr 1fr; }
  .cart-recommendation-controls button { grid-column: 1 / -1; }
  .whatsapp-concierge { width: 52px; height: 52px; min-height: 52px; inset-inline-end: 14px; padding: 0; justify-content: center; }
  .whatsapp-concierge span { display: none; }
  body.product-page .whatsapp-concierge { inset-block-end: calc(98px + env(safe-area-inset-bottom)); }
}

@media (max-width: 520px) {
  .site-header { width: 100%; padding-inline: 14px; }
  .brand { min-width: 64px; }
  .brand-logo { width: 64px; }
  .header-actions { gap: 0; }
  .header-support-link { display: none; }
  .language-switch { min-width: 44px; }
  .cart-trigger { min-width: 64px; gap: 4px; padding-inline: 0; }
  .promo-surface { grid-template-rows: minmax(0, 1fr) clamp(135px, 24dvh, 180px); }
  .promo-copy { padding: 24px 20px max(18px, env(safe-area-inset-bottom)); }
  .promo-brand { margin-bottom: 10px; }
  .promo-eyebrow { margin-bottom: 7px; font-size: .7rem; }
  .promo-copy h2 { font-size: clamp(2.8rem, 14vw, 3.7rem); line-height: .86; }
  .promo-copy h2 small { margin-top: 8px; font-size: clamp(1.25rem, 6vw, 1.65rem); }
  .promo-description { margin-block: 12px; font-size: .9rem; line-height: 1.45; }
  .promo-code-row { min-height: 46px; margin-bottom: 8px; }
  .promo-activate { min-height: 48px; }
  .promo-dismiss { min-height: 44px; margin-top: 0; }
  .promo-terms { margin-top: 6px; font-size: .7rem; line-height: 1.45; }
}

@media (max-width: 360px) {
  .header-actions { gap: 0; }
  .header-support-link { display: none; }
  .header-action-icon, .header-actions .cart-trigger { width: 44px; min-width: 44px; }
  .cart-trigger { width: 44px; min-width: 44px; position: relative; justify-content: center; }
  .cart-trigger .cart-count { min-width: 18px; height: 18px; padding-inline: 4px; position: absolute; inset-block-start: 1px; inset-inline-end: -1px; font-size: .62rem; }
  .footer-contact { justify-content: center; }
  .footer-language-select, .footer-currency-select { font-size: 1rem; }
  .promo-popup {
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }
  .promo-surface { grid-template-rows: minmax(0, 1fr) clamp(125px, 22dvh, 145px); }
  .promo-copy { padding: 20px 18px max(14px, env(safe-area-inset-bottom)); }
  .promo-close { inset-block-start: 12px; inset-inline-end: 12px; width: 44px; height: 44px; }
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  .promo-popup {
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }
  .promo-surface {
    width: 100%;
    height: 100%;
    max-height: 100%;
    grid-template-columns: minmax(0, 1.12fr) minmax(230px, .88fr);
    grid-template-rows: minmax(0, 1fr);
  }
  .promo-copy { padding: 24px 28px; }
  .promo-brand { margin-bottom: 14px; font-size: 1rem; }
  .promo-eyebrow { margin-bottom: 8px; font-size: .68rem; }
  .promo-copy h2 { font-size: clamp(3rem, 10vw, 4.4rem); }
  .promo-copy h2 small { display: inline; margin: 0 0 0 10px; font-size: clamp(1.2rem, 4vw, 1.65rem); }
  body[dir="rtl"] .promo-copy h2 small { margin: 0 10px 0 0; }
  .promo-description { margin-block: 12px; font-size: .9rem; }
  .promo-code-row { min-height: 46px; }
  .promo-activate { min-height: 48px; }
  .promo-dismiss { min-height: 40px; }
  .promo-terms { margin-top: 6px; font-size: .68rem; }
  .promo-art { min-height: 0; height: 100%; }
  .promo-art img { object-position: 50% 42%; }
  .promo-close { inset-block-start: 12px; inset-inline-end: 12px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header::before, .brand::before { transition: none; }
  .mobile-menu summary span, .mobile-menu summary span::before, .mobile-menu summary span::after { transition: none; }
  .fabric-orbit, .editorial-stack, .editorial-card, .product-skeleton::after { animation: none !important; }
  .hero-copy > * { opacity: 1; transform: none; animation: none; }
  .product-skeleton::after { display: none; }
  .editorial-card { transition: none; }
  .reveal { transform: none; clip-path: none; transition: none; }
  .cart-drawer { transition: none; }
  .scrim { transition: none; }
  .checkout-panel { transform: none; transition: opacity 150ms ease; }
  .promo-popup, .promo-surface { transform: none; transition: none; }
  .toast { transform: translate(-50%, 0); transition: opacity 150ms ease; }
  .announcement-language, .header-action-icon, .header-actions .cart-trigger, .hero-cta, .filter-button, .product-art, .product-photo, .add-button, .empty-cart button, .confirm-order, .closing-link span:last-child, .promo-activate, .continue-shopping-link svg, .store-search-overlay, .store-search-surface, .store-search-close, .store-search-all, .store-search-empty-help, .occasion-card, .whatsapp-concierge { transition: none; }
  .hero-cta:active, .filter-button:active, .add-button:active, .empty-cart button:active, .checkout-trigger:active, .confirm-order:active { transform: none; }
}

@media (forced-colors: active) {
  :focus-visible { outline-color: Highlight; }
}
