:root {
  --ink: #111411;
  --ink-soft: #252922;
  --forest: #073d31;
  --forest-deep: #01251d;
  --cream: #f4efe4;
  --paper: #fbfaf6;
  --stone: #d9d7d0;
  --taupe: #a3937b;
  --clay: #8a4d3b;
  --gold: #c4a35a;
  --line: rgba(17, 20, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --sans: Arial, Helvetica, sans-serif;
  --serif: "Bodoni 72", "Didot", "Georgia", serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--aurora-x, 50%) var(--aurora-y, 18%), rgba(196, 163, 90, 0.12), transparent 24vw),
    linear-gradient(180deg, #fbfaf6 0%, #f2eee5 44%, #fbfaf6 100%);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
  --aurora-x: 50%;
  --aurora-y: 18%;
  --spec-x: 50%;
  --spec-y: 50%;
}

body::before {
  position: fixed;
  inset: -22vmax;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at var(--aurora-x) var(--aurora-y), rgba(251, 250, 246, 0.68), transparent 18%),
    radial-gradient(ellipse at calc(var(--aurora-x) + 24%) calc(var(--aurora-y) + 10%), rgba(7, 61, 49, 0.16), transparent 30%),
    radial-gradient(ellipse at calc(var(--aurora-x) - 18%) calc(var(--aurora-y) + 34%), rgba(196, 163, 90, 0.16), transparent 28%),
    conic-gradient(from 210deg at 50% 50%, rgba(251, 250, 246, 0), rgba(7, 61, 49, 0.09), rgba(196, 163, 90, 0.11), rgba(251, 250, 246, 0));
  opacity: 0.55;
  filter: blur(34px) saturate(1.12);
  mix-blend-mode: soft-light;
  animation: softAuroraDrift 18s ease-in-out infinite alternate;
}

.site-header,
main,
.footer,
.fixed-social-rail,
.brand-intro-modal,
.email-contact-modal,
.policy-modal,
.image-viewer,
.cookie-consent {
  position: relative;
}

main,
.footer {
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 32px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
}

.brand-star {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: transparent;
  position: relative;
}

.brand-star::before {
  position: absolute;
  inset: 1px;
  content: "";
  background: var(--gold);
  clip-path: polygon(50% 0, 59% 37%, 100% 50%, 59% 63%, 50% 100%, 41% 63%, 0 50%, 41% 37%);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: center;
  padding: 6px;
  border: 1px solid rgba(17, 20, 17, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 34px rgba(17, 20, 17, 0.06);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links > a::after,
.nav-dropdown-trigger::after {
  display: none;
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--paper);
  background: var(--ink);
  outline: none;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::before {
  width: 5px;
  height: 5px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 60;
  min-width: 190px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--paper);
  background: var(--ink);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-button {
  height: 38px;
  min-width: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(17, 20, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

html[lang="zh-Hans"] .language-button,
html[lang="fr"] .language-button {
  min-width: 84px;
  text-transform: none;
}

.language-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  flex: 0 0 auto;
}

.language-button:hover,
.language-button:focus-visible,
.language-switcher.open .language-button {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
  outline: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 160px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.active {
  color: var(--paper);
  background: var(--ink);
  outline: none;
}

.search-control {
  position: relative;
  width: min(220px, 18vw);
  min-width: 150px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #ececea;
}

.search-control svg,
.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.search-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.search-control:focus-within {
  border-color: rgba(17, 20, 17, 0.18);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 20, 17, 0.10);
}

.search-mobile-button {
  display: none;
  background: #ececea;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 90;
  width: min(340px, 82vw);
  display: none;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(17, 20, 17, 0.12);
  border-radius: 10px;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 24px 60px rgba(17, 20, 17, 0.18);
  backdrop-filter: blur(20px);
}

.search-control.open .search-suggestions {
  display: grid;
}

.search-suggestion {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  color: var(--ink);
  border-radius: 8px;
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
  color: var(--paper);
  background: var(--ink);
  outline: none;
}

.search-suggestion img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  background: #e7e4dc;
}

.search-suggestion span {
  display: block;
  color: rgba(17, 20, 17, 0.58);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-suggestion:hover span,
.search-suggestion:focus-visible span {
  color: rgba(251, 250, 246, 0.62);
}

.search-suggestion strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion-empty {
  min-height: 104px;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 6px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.98), rgba(231, 228, 220, 0.72));
  cursor: default;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  white-space: normal;
}

.search-suggestion-empty::before {
  width: 30px;
  height: 30px;
  content: "";
  border: 1px solid rgba(17, 20, 17, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 6px, rgba(17, 20, 17, 0.76) 7px 8px, transparent 9px),
    linear-gradient(45deg, transparent 0 56%, rgba(17, 20, 17, 0.76) 57% 62%, transparent 63%);
}

.search-suggestion-empty:hover,
.search-suggestion-empty:focus-visible {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.98), rgba(231, 228, 220, 0.72));
  transform: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: #ececea;
  outline: none;
}

.menu-toggle {
  display: none;
}

.cart-count {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.fixed-social-rail {
  position: fixed;
  top: 50%;
  left: clamp(10px, 1.7vw, 24px);
  z-index: 75;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(251, 250, 246, 0.22);
  border-radius: 999px;
  background: rgba(17, 20, 17, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.fixed-social-rail .social-icon-link {
  width: 44px;
  height: 44px;
  color: var(--paper);
  border-color: rgba(251, 250, 246, 0.24);
  background: rgba(1, 37, 29, 0.86);
}

.fixed-social-rail .social-icon-link:hover,
.fixed-social-rail .social-icon-link:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.fixed-social-rail .social-icon-link svg {
  width: 20px;
  height: 20px;
}

.brand-intro-locked {
  overflow: hidden;
}

.brand-intro-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 18px;
}

.brand-intro-modal.open {
  display: grid;
}

.brand-intro-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(251, 250, 246, 0.18), rgba(1, 37, 29, 0.42) 34%, rgba(17, 20, 17, 0.78) 100%),
    rgba(17, 20, 17, 0.72);
  backdrop-filter: blur(18px);
}

.brand-intro-panel {
  position: relative;
  width: min(420px, calc(100vw - 36px));
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(251, 250, 246, 0.42);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.brand-intro-notice-panel {
  width: min(390px, calc(100vw - 36px));
  color: var(--paper);
  border-color: rgba(216, 195, 164, 0.38);
  background:
    linear-gradient(145deg, rgba(34, 24, 15, 0.98), rgba(1, 37, 29, 0.94)),
    var(--forest-deep);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.brand-intro-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: var(--paper);
  background: rgba(17, 20, 17, 0.78);
  backdrop-filter: blur(12px);
}

.brand-intro-close:hover,
.brand-intro-close:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.brand-intro-carousel {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e9dfcf;
}

.brand-intro-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 720ms ease, transform 1200ms ease;
}

.brand-intro-carousel img.active {
  opacity: 1;
  transform: scale(1);
}

.brand-intro-notice-carousel {
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid rgba(216, 195, 164, 0.24);
  background: #d8c3a4;
}

.brand-intro-notice-carousel img {
  object-position: center 40%;
}

.brand-intro-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(251, 250, 246, 0.28);
  border-radius: 999px;
  background: rgba(17, 20, 17, 0.34);
  backdrop-filter: blur(12px);
}

.brand-intro-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.45);
  transition: width 180ms ease, background 180ms ease;
}

.brand-intro-dots span.active {
  width: 18px;
  background: var(--paper);
}

.brand-intro-copy {
  padding: 22px 24px 26px;
}

.brand-intro-notice {
  display: grid;
  gap: 13px;
  padding: 24px 24px 24px;
}

.brand-intro-notice .eyebrow {
  color: rgba(216, 195, 164, 0.92);
}

.brand-intro-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 6vw, 44px);
  font-weight: 700;
  line-height: 0.94;
}

.brand-intro-notice h2 {
  max-width: 280px;
  color: var(--paper);
  font-size: clamp(34px, 8vw, 48px);
  line-height: 0.94;
}

.brand-intro-copy p:last-child {
  margin: 16px 0 0;
  color: rgba(17, 20, 17, 0.68);
  font-size: 15px;
}

.brand-intro-notice p:last-child,
.brand-intro-notice p[data-i18n="introModal.copy"] {
  max-width: 300px;
  margin: 0;
  color: rgba(251, 250, 246, 0.74);
  font-size: 13.5px;
  line-height: 1.58;
}

.brand-intro-contact {
  width: fit-content;
  min-height: 38px;
  padding: 10px 17px;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  font-size: 13px;
}

.brand-intro-contact:hover,
.brand-intro-contact:focus-visible {
  color: var(--paper);
  background: transparent;
}

.email-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 135;
  display: none;
  place-items: center;
  padding: 20px;
}

.email-contact-modal.open {
  display: grid;
}

.email-contact-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 20, 17, 0.48);
  backdrop-filter: blur(14px);
  cursor: default;
}

.email-contact-panel {
  position: relative;
  width: min(430px, calc(100vw - 36px));
  display: grid;
  gap: 18px;
  padding: 24px;
  color: var(--paper);
  border: 1px solid rgba(216, 195, 164, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(1, 37, 29, 0.98), rgba(28, 22, 15, 0.96)),
    var(--forest-deep);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.email-contact-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.email-contact-copy h2 {
  margin: 4px 0 8px;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 42px);
  line-height: 0.94;
}

.email-contact-copy p {
  max-width: 320px;
  margin: 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.email-contact-address {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 900;
  word-break: break-all;
}

.email-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-contact-action {
  min-height: 40px;
  padding: 11px 16px;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 246, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.email-contact-action.primary {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.email-contact-action:hover,
.email-contact-action:focus-visible {
  transform: translateY(-1px);
  border-color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
  opacity: 0.98;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 37, 29, 0.98) 0%, rgba(1, 37, 29, 0.86) 31%, rgba(1, 37, 29, 0.36) 58%, rgba(1, 37, 29, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  margin-left: clamp(24px, 6vw, 92px);
  padding: 48px 0 118px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.78;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.1vw, 98px);
  font-weight: 700;
  line-height: 0.9;
}

.hero-copy {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(251, 250, 246, 0.84);
  font-size: clamp(17px, 1.4vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.button-light {
  color: var(--paper);
  background: rgba(251, 250, 246, 0.08);
  border-color: rgba(251, 250, 246, 0.7);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  grid-template-columns: 60px repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--paper);
  border: 1px solid var(--line-light);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-rail span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-rail span:last-child {
  border-right: 0;
}

.collection-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.strip-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px clamp(22px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item span {
  color: rgba(17, 20, 17, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-item strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 44px);
  line-height: 1;
}

.feature-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 8vw, 128px) clamp(22px, 5vw, 76px);
  background: #e7e4dc;
}

.feature-band::before,
.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-band::before {
  z-index: -2;
  background: url("assets/products/new/feature-background-luxury.png") center / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.02);
}

.feature-band::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(232, 229, 220, 0.96) 0%, rgba(232, 229, 220, 0.9) 38%, rgba(232, 229, 220, 0.68) 100%),
    radial-gradient(circle at 80% 28%, rgba(4, 45, 37, 0.18), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(139, 76, 56, 0.14), transparent 32%);
}

.section-heading {
  max-width: 860px;
  position: relative;
}

.section-heading h2,
.shop-header h2,
.lookbook-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 82px);
  font-weight: 700;
  line-height: 0.98;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid rgba(17, 20, 17, 0.12);
  background: rgba(17, 20, 17, 0.18);
  box-shadow: 0 24px 70px rgba(17, 20, 17, 0.12);
}

.feature-grid article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.feature-number {
  display: inline-flex;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 36px;
  margin-bottom: 42px;
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.feature-grid p,
.lookbook-copy p,
.footer p {
  margin: 0;
  color: rgba(17, 20, 17, 0.68);
  font-size: 15px;
}

.shop-section {
  padding: clamp(62px, 7vw, 104px) clamp(18px, 4.8vw, 72px);
  background: var(--paper);
}

.category-hero {
  --category-hero-image: url("assets/products/new/wear-the-oath-poster-new-logo.png");
  position: relative;
  isolation: isolate;
  min-height: clamp(390px, 38vw, 520px);
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) clamp(22px, 5vw, 76px) clamp(48px, 6vw, 86px);
  color: var(--paper);
  background: var(--forest-deep);
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--category-hero-image) right clamp(18px, 5vw, 92px) center / min(62vw, 940px) auto no-repeat,
    linear-gradient(135deg, #062d25 0%, #111411 100%);
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.015);
  transform-origin: right center;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 37, 29, 0.99) 0%, rgba(1, 37, 29, 0.94) 34%, rgba(1, 37, 29, 0.69) 62%, rgba(1, 37, 29, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04) 55%, rgba(255, 255, 255, 0.06));
}

.category-hero-all {
  --category-hero-image: url("assets/products/new/intro-hero-new-logo.png");
}

.category-hero-caps {
  --category-hero-image: url("assets/products/single/navy-cap.jpg");
}

.category-hero-hoodies {
  --category-hero-image: url("assets/products/new/hoodie-cream-oath.png");
}

.category-hero-crewnecks {
  --category-hero-image: url("assets/products/new/crewneck-black-oath.png");
}

.category-hero-shirts {
  --category-hero-image: url("assets/products/new/shirt-white-oath.png");
}

.category-hero-quarterzip {
  --category-hero-image: url("assets/products/single/quarter-zip.jpg");
}

.category-hero-jackets {
  --category-hero-image: url("assets/products/new/varsity-jacket.png");
}

.category-hero-pants {
  --category-hero-image: url("assets/products/new/sweatpants-black-oath.png");
}

.category-hero-shorts {
  --category-hero-image: url("assets/products/new/shorts-white-oath.png");
}

.category-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 124px);
  font-weight: 700;
  line-height: 0.9;
}

.category-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: clamp(17px, 1.45vw, 22px);
}

.category-products {
  padding-top: clamp(44px, 6vw, 84px);
}

.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--paper);
  background: var(--ink);
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.empty-products h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.empty-products p {
  margin: 0;
  color: rgba(17, 20, 17, 0.68);
}

.product-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  color: inherit;
  border: 1px solid rgba(17, 20, 17, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(17, 20, 17, 0.06)),
    #e9dfcf;
  box-shadow: 0 18px 42px rgba(17, 20, 17, 0.08);
  cursor: zoom-in;
  appearance: none;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%),
    linear-gradient(0deg, rgba(17, 20, 17, 0.10), rgba(17, 20, 17, 0) 36%);
}

.sold-out-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 246, 0.58);
  border-radius: 999px;
  background: rgba(17, 20, 17, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 300ms ease;
}

.product-image:hover img,
.product-image:focus-visible img {
  transform: scale(1.035);
}

.product-image:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.product-card-sold-out .product-image img {
  filter: saturate(0.78) contrast(0.96);
}

.crop-cap-single img {
  object-position: center center;
}

.crop-hoodie-single img {
  object-position: 55% center;
}

.crop-campus-single img {
  object-position: 42% center;
}

.crop-shirt-single img {
  object-position: center center;
}

.crop-quarter-single img {
  object-position: 46% center;
}

.product-info {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-info h3 {
  margin: 0 0 3px;
  font-size: 17px;
}

.product-info p {
  margin: 0;
  color: rgba(17, 20, 17, 0.62);
  font-size: 14px;
}

.product-info .product-stock-note {
  margin-top: 6px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin: -4px 0 0;
  border: 1px solid rgba(7, 61, 49, 0.22);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(7, 61, 49, 0.07);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.option-group {
  display: grid;
  gap: 8px;
}

.option-label {
  color: rgba(17, 20, 17, 0.54);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.embroidery-choice {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.embroidery-choice:hover,
.embroidery-choice:focus-visible,
.embroidery-choice.active {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
  outline: none;
}

.embroidery-options.single-option .embroidery-choice {
  color: var(--forest);
  background: rgba(7, 61, 49, 0.07);
  border-color: rgba(7, 61, 49, 0.22);
}

.swatches,
.size-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.swatch {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(17, 20, 17, 0.25);
  border-radius: 50%;
  background: var(--stone);
}

.swatch.active {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.swatch.green {
  background: var(--forest);
}

.swatch.cream {
  background: var(--cream);
}

.swatch.black {
  background: var(--ink);
}

.swatch.stone {
  background: #c8c6bf;
}

.swatch.taupe {
  background: var(--taupe);
}

.swatch.navy {
  background: #111927;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.size-row-compact {
  grid-template-columns: minmax(0, 1fr);
}

.size-row button {
  min-height: 40px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}

.size-row button:hover,
.size-row button:focus-visible,
.size-row button.active {
  color: var(--paper);
  background: var(--forest);
  outline: none;
}

.add-button {
  min-height: 48px;
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.add-button:hover,
.add-button:focus-visible {
  color: var(--ink);
  background: var(--gold);
  outline: none;
}

.sold-out-button,
.sold-out-button:disabled {
  color: rgba(17, 20, 17, 0.52);
  border-color: rgba(17, 20, 17, 0.18);
  background: rgba(17, 20, 17, 0.08);
  cursor: not-allowed;
}

.coming-soon-card {
  min-height: 100%;
  aspect-ratio: 3 / 4;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 246, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(1, 37, 29, 0.18), rgba(1, 37, 29, 0.92)),
    url("assets/products/new/wear-the-oath-poster-new-logo.png") center / cover,
    var(--forest-deep);
  box-shadow: 0 18px 42px rgba(17, 20, 17, 0.10);
}

.coming-soon-kicker {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(251, 250, 246, 0.26);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.coming-soon-card h3 {
  max-width: 300px;
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.96;
}

.coming-soon-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(251, 250, 246, 0.74);
  font-size: 15px;
}

html[lang="zh-Hans"] .hero h1 {
  max-width: 620px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Serif SC", var(--serif);
  font-size: clamp(50px, 8vw, 94px);
  font-weight: 800;
  line-height: 1.03;
}

html[lang="zh-Hans"] .hero-copy,
html[lang="zh-Hans"] .feature-grid p,
html[lang="zh-Hans"] .lookbook-copy p,
html[lang="zh-Hans"] .contact-intro p,
html[lang="zh-Hans"] .brand-intro-copy p {
  line-height: 1.72;
}

html[lang="zh-Hans"] .shop-header h2,
html[lang="zh-Hans"] .category-hero h1,
html[lang="zh-Hans"] .lookbook-copy h2,
html[lang="zh-Hans"] .contact-intro h1,
html[lang="zh-Hans"] .brand-intro-copy h2,
html[lang="zh-Hans"] .coming-soon-card h3 {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Serif SC", var(--serif);
  line-height: 1.08;
}

html[lang="fr"] .hero h1,
html[lang="fr"] .lookbook-copy h2,
html[lang="fr"] .contact-intro h1,
html[lang="fr"] .brand-intro-copy h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.8vw, 34px);
  overflow-y: auto;
  background:
    linear-gradient(120deg, rgba(1, 37, 29, 0.94), rgba(5, 8, 7, 0.9) 48%, rgba(17, 20, 17, 0.96));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(18px);
}

.image-viewer.open {
  opacity: 1;
  pointer-events: auto;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.image-viewer-panel {
  position: relative;
  z-index: 1;
  width: min(1210px, 100%);
  max-height: calc(100svh - 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(251, 250, 246, 0.98), rgba(239, 234, 223, 0.94)),
    var(--paper);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.product-detail-gallery {
  min-height: 640px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(14px, 1.8vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(197, 157, 82, 0.07)),
    #e9e4d8;
}

.product-detail-thumbs {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: calc(100svh - 84px);
  overflow: auto;
  padding-right: 2px;
}

.product-detail-thumb {
  width: 78px;
  aspect-ratio: 1 / 1.24;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 17, 0.12);
  border-radius: 6px;
  background: rgba(251, 250, 246, 0.78);
  opacity: 0.76;
}

.product-detail-thumb.active,
.product-detail-thumb:hover,
.product-detail-thumb:focus-visible {
  border-color: var(--gold);
  opacity: 1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(197, 157, 82, 0.18);
}

.product-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--detail-thumb-scale, 1));
  transition: transform 220ms ease;
}

.product-detail-main {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.68), rgba(17, 20, 17, 0.035)),
    #eadfce;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.product-detail-info {
  display: grid;
  align-content: start;
  gap: 18px;
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: clamp(28px, 3.2vw, 46px);
  color: var(--ink);
}

.image-viewer-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(var(--detail-image-scale, 0.96));
  transition: object-position 240ms ease, transform 240ms ease;
}

.product-detail-view-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 7px 10px;
  color: rgba(17, 20, 17, 0.72);
  border: 1px solid rgba(17, 20, 17, 0.1);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.74);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.image-viewer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.82);
  border: 1px solid rgba(17, 20, 17, 0.12);
  backdrop-filter: blur(12px);
}

.image-viewer-close:hover,
.image-viewer-close:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.product-detail-kicker,
.product-detail-meta,
.product-detail-copy,
.product-detail-stock {
  margin: 0;
}

.product-detail-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-detail-info h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: 0.92;
  letter-spacing: 0;
}

.product-detail-meta {
  color: rgba(17, 20, 17, 0.58);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-copy {
  max-width: 44ch;
  color: rgba(17, 20, 17, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.product-detail-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 20, 17, 0.1);
}

.product-detail-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(17, 20, 17, 0.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-option-head strong {
  color: var(--ink);
  font-size: 12px;
}

.product-detail-option-head a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-detail-swatches,
.product-detail-sizes,
.product-detail-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-detail-swatch {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(17, 20, 17, 0.2);
  border-radius: 50%;
}

.product-detail-swatch.active,
.product-detail-swatch:hover,
.product-detail-swatch:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.product-detail-sizes button,
.product-detail-choice {
  min-width: 52px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(17, 20, 17, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-choice {
  min-width: 0;
  min-height: 38px;
  line-height: 1.2;
}

.product-detail-sizes button.active,
.product-detail-sizes button:hover,
.product-detail-sizes button:focus-visible,
.product-detail-choice.active,
.product-detail-choice:hover,
.product-detail-choice:focus-visible {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.product-detail-actions {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.product-detail-add {
  min-height: 52px;
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-add:hover,
.product-detail-add:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
  outline: none;
}

.product-detail-add:disabled {
  cursor: not-allowed;
  color: rgba(17, 20, 17, 0.58);
  border-color: rgba(17, 20, 17, 0.16);
  background: rgba(17, 20, 17, 0.08);
}

.product-detail-stock {
  color: rgba(17, 20, 17, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.product-detail-specs {
  display: grid;
  gap: 0;
  margin: 2px 0 0;
  border-top: 1px solid rgba(17, 20, 17, 0.1);
}

.product-detail-specs div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 20, 17, 0.1);
}

.product-detail-specs dt,
.product-detail-specs dd {
  margin: 0;
}

.product-detail-specs dt {
  color: rgba(17, 20, 17, 0.48);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-specs dd {
  color: rgba(17, 20, 17, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .image-viewer {
    align-items: flex-start;
  }

  .image-viewer-panel {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .product-detail-gallery {
    min-height: 0;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .product-detail-main,
  .image-viewer-image {
    min-height: 500px;
  }

  .product-detail-info {
    max-height: none;
    padding: 30px clamp(24px, 5vw, 42px) 36px;
  }

  .product-detail-info h2 {
    max-width: 14ch;
    font-size: clamp(44px, 8vw, 66px);
  }
}

.lookbook {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--paper);
}

.lookbook-image {
  min-height: 720px;
  overflow: hidden;
}

.lookbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.lookbook-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
}

.lookbook-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: var(--ink);
}

.lookbook-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.lookbook-carousel img.active {
  opacity: 1;
  transform: scale(1);
}

.lookbook-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(48px, 6vw, 92px);
}

.lookbook-copy p {
  max-width: 520px;
  margin: 24px 0 32px;
  color: rgba(251, 250, 246, 0.72);
  font-size: 17px;
}

.lookbook-copy .button-dark {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.lookbook-copy .button-dark:hover,
.lookbook-copy .button-dark:focus-visible {
  color: var(--paper);
  border-color: rgba(251, 250, 246, 0.72);
  background: rgba(251, 250, 246, 0.08);
}

.social-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  padding: clamp(54px, 6vw, 92px) clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(17, 20, 17, 0.08);
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.8), rgba(231, 228, 220, 0.92)),
    #e7e4dc;
}

.social-band h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.social-copy {
  display: grid;
  gap: 26px;
  justify-items: start;
  padding-left: clamp(0px, 3vw, 42px);
  border-left: 1px solid rgba(17, 20, 17, 0.14);
}

.social-copy p {
  max-width: 500px;
  margin: 0;
  color: rgba(17, 20, 17, 0.68);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}

.social-copy strong {
  color: var(--forest);
  font-weight: 900;
}

.social-actions,
.contact-socials,
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 20, 17, 0.14);
}

.social-icon-link {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(17, 20, 17, 0.16);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.74);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  flex: 0 0 auto;
}

.social-icon-link svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon-link svg path {
  fill: none;
}

.social-icon-instagram {
  width: 52px;
  height: 52px;
  color: var(--ink);
  border-color: rgba(17, 20, 17, 0.16);
  background: rgba(251, 250, 246, 0.74);
}

.social-icon-instagram svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 32px;
  align-items: end;
  padding: 44px clamp(22px, 5vw, 72px);
  color: var(--paper);
  background: var(--forest-deep);
}

.footer-brand {
  color: var(--paper);
  margin-bottom: 16px;
}

.footer p {
  max-width: 520px;
  color: rgba(251, 250, 246, 0.64);
}

.footer-social {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
}

.footer-social-main {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-social-main .eyebrow {
  margin: 0;
}

.footer-social .social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-icon-email span {
  display: none;
}

.footer-social .social-icon-link {
  width: 38px;
  height: 38px;
  color: rgba(251, 250, 246, 0.86);
  border-color: rgba(251, 250, 246, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social .social-icon-link svg {
  width: 18px;
  height: 18px;
}

.footer-social .social-icon-email {
  width: auto;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
}

.footer-social .social-icon-email span {
  display: inline;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: start;
  font-size: 13px;
  font-weight: 900;
}

.footer-label {
  margin: 0;
  color: rgba(251, 250, 246, 0.54);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact a {
  color: rgba(251, 250, 246, 0.82);
}

.footer-social-row {
  gap: 10px;
}

.footer-social-row .social-icon-link {
  width: 38px;
  height: 38px;
  color: rgba(251, 250, 246, 0.86);
  border-color: rgba(251, 250, 246, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social-row .social-icon-link svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 250, 246, 0.14);
}

.footer-copyright {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.footer-copyright .brand-star {
  width: 14px;
  height: 14px;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-policy-links button {
  min-height: 34px;
  padding: 0 13px;
  color: rgba(251, 250, 246, 0.7);
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-policy-links button:hover,
.footer-policy-links button:focus-visible {
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: none;
  place-items: center;
  padding: 20px;
}

.policy-modal.open {
  display: grid;
}

.policy-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 20, 17, 0.46);
  backdrop-filter: blur(16px);
  cursor: default;
}

.policy-panel {
  position: relative;
  width: min(560px, calc(100vw - 36px));
  max-height: min(720px, calc(100svh - 40px));
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  color: var(--paper);
  border: 1px solid rgba(216, 195, 164, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 0%, rgba(216, 195, 164, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(1, 37, 29, 0.98), rgba(28, 22, 15, 0.96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.policy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.policy-copy {
  display: grid;
  gap: 14px;
  overflow: auto;
  padding-right: 8px;
}

.policy-copy h2 {
  max-width: 430px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 54px);
  line-height: 0.95;
}

.policy-copy p {
  margin: 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.policy-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-copy li {
  padding: 12px 14px;
  color: rgba(251, 250, 246, 0.76);
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  line-height: 1.55;
}

.policy-actions {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.policy-modal[data-policy-kind="cookies"] .policy-actions {
  display: flex;
}

.policy-action {
  min-height: 42px;
  padding: 0 18px;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 246, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.policy-action.primary,
.cookie-consent-accept {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.policy-action:hover,
.policy-action:focus-visible {
  transform: translateY(-1px);
  border-color: var(--paper);
  outline: none;
}

.cookie-consent {
  position: fixed;
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  z-index: 118;
  width: min(430px, calc(100vw - 36px));
  display: none;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: var(--paper);
  border: 1px solid rgba(216, 195, 164, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 195, 164, 0.15), transparent 32%),
    rgba(1, 37, 29, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.cookie-consent.open {
  display: grid;
}

.cookie-consent p {
  margin: 0;
  color: rgba(251, 250, 246, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.cookie-consent button {
  min-height: 38px;
  padding: 0 15px;
  color: var(--paper);
  border: 1px solid rgba(251, 250, 246, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-consent .cookie-consent-accept {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.cookie-consent button:hover,
.cookie-consent button:focus-visible {
  border-color: var(--paper);
  outline: none;
}

@media (max-width: 1050px) and (min-width: 761px) {
  .cookie-consent {
    top: auto;
    right: auto;
    bottom: 18px;
    left: 18px;
    width: min(380px, calc(100vw - 36px));
    gap: 12px;
    padding: 15px;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent button {
    flex: 1 1 0;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.search-page {
  min-height: calc(100svh - 68px);
  display: grid;
  align-content: start;
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(72px, 8vw, 128px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.98), rgba(231, 228, 220, 0.88)),
    var(--paper);
}

.search-page-heading {
  max-width: 760px;
}

.search-page-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 700;
  line-height: 0.92;
}

.search-page-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(17, 20, 17, 0.62);
  font-size: clamp(16px, 1.4vw, 20px);
}

.search-page-form {
  width: min(760px, 100%);
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(17, 20, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(17, 20, 17, 0.08);
}

.search-page-form svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(17, 20, 17, 0.58);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.search-page-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
}

.search-page-form button {
  min-height: 48px;
  padding: 0 22px;
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search-result-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 8px;
  padding: 10px 10px 16px;
  border: 1px solid rgba(17, 20, 17, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(17, 20, 17, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.search-result-card:hover,
.search-result-card:focus-visible {
  border-color: rgba(17, 20, 17, 0.24);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(17, 20, 17, 0.12);
}

.search-result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #e7e4dc;
}

.search-result-meta {
  margin-top: 4px;
  color: rgba(17, 20, 17, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result-card strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 0.98;
}

.search-result-card p {
  margin: 0;
  color: rgba(17, 20, 17, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.search-empty {
  margin: 0;
  color: rgba(17, 20, 17, 0.58);
  font-size: 16px;
  font-weight: 800;
}

.contact-page {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 145px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  overflow: hidden;
  padding: clamp(82px, 9vw, 148px) clamp(22px, 5vw, 76px);
  color: var(--paper);
  background: var(--forest-deep);
}

.contact-page::before,
.contact-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.contact-page::before {
  background:
    linear-gradient(90deg, rgba(1, 27, 22, 0.98) 0%, rgba(1, 37, 29, 0.88) 34%, rgba(17, 20, 17, 0.38) 68%, rgba(17, 20, 17, 0.74) 100%),
    linear-gradient(0deg, rgba(17, 20, 17, 0.62), rgba(17, 20, 17, 0.04) 54%, rgba(251, 250, 246, 0.04)),
    url("assets/contact-hero-landscape.png") center center / cover no-repeat,
    linear-gradient(135deg, #01251d 0%, #073d31 58%, #111411 100%);
}

.contact-page::after {
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(17, 20, 17, 0.62), rgba(17, 20, 17, 0));
}

.contact-intro h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 700;
  line-height: 0.92;
}

.contact-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(251, 250, 246, 0.76);
  font-size: clamp(17px, 1.4vw, 21px);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-highlights span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(251, 250, 246, 0.22);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.08);
  color: rgba(251, 250, 246, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.contact-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 246, 0.34);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.34);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(28px);
}

.contact-panel {
  min-height: 156px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
}

.contact-panel .eyebrow {
  width: fit-content;
  margin-bottom: 8px;
  color: #35584e;
  opacity: 1;
}

.contact-panel .eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: var(--gold);
}

.contact-panel a {
  width: fit-content;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 900;
}

.contact-panel p:last-child {
  margin: 0;
  color: rgba(17, 20, 17, 0.76);
  font-size: 18px;
}

.social-link-dark svg {
  width: 24px;
  height: 24px;
}

.contact-socials .social-icon-link {
  background: #fff;
  border-color: rgba(17, 20, 17, 0.12);
}

.contact-socials {
  gap: 18px;
  padding-top: 10px;
}

.contact-socials .social-icon-link {
  width: 62px;
  height: 62px;
}

.contact-socials .social-icon-link svg {
  width: 28px;
  height: 28px;
}

.cart-page {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 145px);
  overflow: hidden;
  padding:
    clamp(62px, 8vw, 118px)
    clamp(18px, 5vw, 76px)
    clamp(70px, 8vw, 122px)
    clamp(96px, 7vw, 136px);
  color: var(--paper);
  background: #061f1a;
}

.cart-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 24, 20, 0.96) 0%, rgba(1, 37, 29, 0.82) 34%, rgba(17, 20, 17, 0.38) 66%, rgba(17, 20, 17, 0.72) 100%),
    linear-gradient(0deg, rgba(17, 20, 17, 0.72), rgba(17, 20, 17, 0.04) 55%, rgba(251, 250, 246, 0.03)),
    url("assets/cart-hero-landscape.png") center center / cover no-repeat,
    linear-gradient(135deg, #01251d 0%, #073d31 58%, #111411 100%);
}

.cart-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}

.cart-shell {
  width: min(1280px, 100%);
  min-height: clamp(540px, calc(100svh - 245px), 760px);
  display: grid;
  align-content: center;
}

.cart-heading {
  max-width: 700px;
  margin: 0 0 clamp(28px, 4.8vw, 52px);
}

.cart-heading .eyebrow {
  color: var(--gold);
  opacity: 1;
}

.cart-heading h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.94;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.cart-heading p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(251, 250, 246, 0.78);
  font-size: 18px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
  width: 100%;
}

.cart-main {
  min-height: 320px;
  display: grid;
}

.cart-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 246, 0.34);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.cart-item {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  padding: clamp(18px, 2.5vw, 26px);
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 20, 17, 0.10);
  background: transparent;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(17, 20, 17, 0.06)),
    #e9dfcf;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-main h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.cart-item-main p {
  margin: 0 0 10px;
  color: rgba(17, 20, 17, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.cart-item-main span {
  display: inline-flex;
  margin-top: 4px;
  font-weight: 900;
}

.cart-remove,
.clear-cart-button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--ink);
  border: 1px solid rgba(17, 20, 17, 0.14);
  border-radius: 999px;
  background: rgba(17, 20, 17, 0.03);
  font-size: 13px;
  font-weight: 900;
}

.cart-remove {
  justify-self: end;
}

.cart-remove:hover,
.cart-remove:focus-visible,
.clear-cart-button:hover,
.clear-cart-button:focus-visible {
  color: var(--paper);
  background: var(--ink);
  outline: none;
}

.cart-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: auto;
  padding: 24px;
  color: var(--ink);
  border: 1px solid rgba(251, 250, 246, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 246, 0.90)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.cart-summary .eyebrow {
  color: var(--gold);
  opacity: 1;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 20, 17, 0.12);
  font-size: 15px;
}

.summary-row strong {
  font-size: 18px;
}

.summary-button {
  width: 100%;
}

.cart-summary .summary-button {
  color: var(--paper);
  background: var(--ink);
  border-color: transparent;
}

.cart-summary .summary-button:hover,
.cart-summary .summary-button:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.cart-summary .clear-cart-button {
  color: var(--ink);
  border-color: rgba(17, 20, 17, 0.14);
  background: rgba(17, 20, 17, 0.03);
}

.cart-summary .clear-cart-button:hover,
.cart-summary .clear-cart-button:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.cart-empty {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  border: 1px solid rgba(251, 250, 246, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 246, 0.86)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.cart-empty::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.cart-empty .eyebrow {
  color: #35584e;
  opacity: 1;
}

.cart-empty h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 0.96;
}

.cart-empty p {
  max-width: 430px;
  margin: 0 0 28px;
  color: rgba(17, 20, 17, 0.68);
  font-size: 16px;
  line-height: 1.58;
}

.cart-empty .button {
  width: fit-content;
  min-width: min(280px, 100%);
}

.cart-empty[hidden],
.cart-list[hidden] {
  display: none !important;
}

@media (max-width: 1400px) {
  .nav {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
    padding: 0 clamp(18px, 2.6vw, 32px);
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 3vw, 42px);
    left: clamp(18px, 3vw, 42px);
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(17, 20, 17, 0.10);
    border-radius: 10px;
    background: rgba(251, 250, 246, 0.98);
    box-shadow: 0 24px 60px rgba(17, 20, 17, 0.18);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a,
  .nav-dropdown-trigger {
    min-height: 42px;
    justify-content: center;
    padding: 0 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    min-height: 34px;
    padding: 8px 10px;
    color: rgba(17, 20, 17, 0.72);
  }

  .nav-actions {
    justify-self: end;
    gap: 8px;
  }

  .search-control {
    width: clamp(132px, 16vw, 190px);
    min-width: 0;
  }

  .hero-content {
    margin-left: clamp(92px, 8vw, 128px);
  }
}

@media (max-width: 1050px) {
  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    justify-self: stretch;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown-trigger {
    padding: 14px 12px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    min-height: 34px;
    padding: 8px 12px;
    color: rgba(17, 20, 17, 0.74);
  }

  .nav-actions {
    justify-self: end;
  }

  .search-control {
    width: 170px;
    min-width: 0;
  }

  .hero-media img,
  .hero-media video {
    width: min(68vw, 620px);
    right: -6vw;
    opacity: 0.8;
  }

  .product-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1320px) {
  .hero-rail {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 0 14px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    width: auto;
    justify-self: stretch;
    max-height: calc(100svh - 92px);
    grid-template-columns: 1fr;
    gap: 6px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 14px;
    border-radius: 18px;
    background: rgba(251, 250, 246, 0.98);
    box-shadow: 0 26px 70px rgba(17, 20, 17, 0.22);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a,
  .nav-dropdown-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    background: #ececea;
  }

  .nav-dropdown-menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-height: 0;
    margin: 6px 0 4px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(17, 20, 17, 0.04);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 180ms ease, opacity 160ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    min-height: 38px;
    justify-content: flex-start;
    padding: 0 10px;
    font-size: 12px;
  }

  .nav-actions {
    gap: 2px;
  }

  .language-button {
    min-width: 40px;
    width: 40px;
    padding: 0;
    gap: 0;
  }

  .language-button svg {
    display: none;
  }

  .language-menu {
    right: -42px;
  }

  .search-control {
    display: none;
  }

  .search-mobile-button {
    display: inline-grid;
  }

  .fixed-social-rail {
    left: 6px;
    gap: 4px;
    padding: 5px;
    border-color: rgba(251, 250, 246, 0.16);
    background: rgba(17, 20, 17, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  .fixed-social-rail .social-icon-link {
    width: 30px;
    height: 30px;
  }

  .fixed-social-rail .social-icon-link svg {
    width: 15px;
    height: 15px;
  }

  .brand-intro-modal {
    padding: 14px;
  }

  .brand-intro-panel {
    width: min(350px, calc(100vw - 28px));
  }

  .brand-intro-copy {
    padding: 20px 18px 22px;
  }

  .brand-intro-notice {
    padding: 20px 18px 20px;
  }

  .brand-intro-notice h2 {
    font-size: clamp(33px, 10vw, 44px);
  }

  .brand-intro-notice-carousel {
    aspect-ratio: 16 / 10;
  }

  .hero {
    min-height: calc(100svh - 62px);
    align-items: end;
  }

  .hero-media img,
  .hero-media video {
    width: 100%;
    height: 100%;
    min-height: 0;
    inset: 0;
    transform: none;
    object-position: 70% center;
    opacity: 0.94;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(1, 37, 29, 0.98) 0%, rgba(1, 37, 29, 0.88) 48%, rgba(1, 37, 29, 0.26) 100%),
      linear-gradient(90deg, rgba(1, 37, 29, 0.9), rgba(1, 37, 29, 0.1));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 0 0 72px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-rail {
    display: none;
  }

  .category-hero {
    min-height: 430px;
    padding: 132px 18px 44px;
  }

  .category-hero::before {
    background-size: min(104vw, 540px) auto;
    background-position: right -96px top 28px;
    opacity: 0.8;
  }

  .category-hero::after {
    background:
      linear-gradient(0deg, rgba(1, 37, 29, 0.98) 0%, rgba(1, 37, 29, 0.9) 45%, rgba(1, 37, 29, 0.48) 100%),
      linear-gradient(90deg, rgba(1, 37, 29, 0.86), rgba(1, 37, 29, 0.2));
  }

  .category-hero h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .search-page {
    min-height: calc(100svh - 62px);
    gap: 22px;
    padding: 58px 18px 48px;
  }

  .search-page-heading h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .search-page-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .search-page-form {
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 8px 14px;
    border-radius: 18px;
  }

  .search-page-form input {
    font-size: 18px;
  }

  .search-page-form button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
  }

  .search-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .search-result-card {
    padding: 8px 8px 12px;
  }

  .search-result-card strong {
    font-size: 25px;
  }

  .collection-strip,
  .product-grid,
  .feature-grid,
  .lookbook,
  .contact-page,
  .cart-layout,
  .social-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .social-copy {
    padding-left: 0;
    border-left: 0;
  }

  .strip-item {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .shop-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .feature-grid article:last-child {
    grid-column: auto;
  }

  .lookbook-image {
    min-height: 520px;
  }

  .lookbook-copy {
    padding: 44px 22px 56px;
  }

  .contact-page {
    min-height: auto;
    align-items: start;
    padding: 112px 18px 58px;
  }

  .contact-page::before {
    background:
      linear-gradient(0deg, rgba(1, 37, 29, 0.98) 0%, rgba(1, 37, 29, 0.88) 52%, rgba(1, 37, 29, 0.48) 100%),
      linear-gradient(90deg, rgba(1, 37, 29, 0.72), rgba(17, 20, 17, 0.22)),
      url("assets/contact-hero-landscape.png") center top / auto 100% no-repeat,
      linear-gradient(135deg, #01251d 0%, #073d31 58%, #111411 100%);
  }

  .contact-intro h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .contact-highlights {
    gap: 8px;
    margin-top: 24px;
  }

  .contact-grid {
    width: 100%;
  }

  .image-viewer {
    padding: 10px;
    align-items: flex-start;
  }

  .image-viewer-panel {
    width: 100%;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 8px;
  }

  .product-detail-thumbs {
    order: 2;
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 2px;
  }

  .product-detail-thumb {
    flex: 0 0 62px;
    width: 62px;
    aspect-ratio: 1 / 1;
  }

  .product-detail-main {
    order: 1;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .image-viewer-image {
    min-height: 0;
  }

  .product-detail-view-label {
    left: 10px;
    bottom: 10px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .image-viewer-close {
    top: 12px;
    right: 12px;
  }

  .product-detail-info {
    gap: 14px;
    padding: 22px 18px 24px;
  }

  .product-detail-info h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .product-detail-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-detail-option {
    padding-top: 14px;
  }

  .product-detail-sizes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-detail-sizes button {
    min-width: 0;
  }

  .product-detail-add {
    width: 100%;
  }

  .product-detail-specs div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .footer {
    align-items: start;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-policy-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    top: auto;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .cookie-consent p {
    font-size: 12px;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent button {
    flex: 1 1 0;
  }

  .footer-contact {
    justify-items: start;
  }

  .cart-shell {
    grid-template-columns: 1fr;
  }

  .cart-page::before {
    background-size: cover;
    background-position: center top;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 1020px) {
  .cart-page {
    padding-right: clamp(18px, 5vw, 52px);
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-main {
    min-height: auto;
  }

  .cart-summary {
    position: static;
    width: min(420px, 100%);
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .cart-page {
    padding: 92px 18px 58px 56px;
  }

  .cart-page::before {
    background:
      linear-gradient(0deg, rgba(1, 37, 29, 0.98) 0%, rgba(1, 37, 29, 0.9) 52%, rgba(1, 37, 29, 0.58) 100%),
      linear-gradient(90deg, rgba(1, 37, 29, 0.88), rgba(17, 20, 17, 0.24)),
      url("assets/cart-hero-landscape.png") center top / auto 100% no-repeat,
      linear-gradient(135deg, #01251d 0%, #073d31 58%, #111411 100%);
  }

  .cart-heading {
    margin-bottom: 28px;
  }

  .cart-heading h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .cart-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cart-layout {
    width: 100%;
    justify-self: stretch;
    gap: 16px;
  }

  .cart-summary {
    width: 100%;
  }

  .cart-empty,
  .cart-summary {
    min-height: auto;
    border-radius: 8px;
  }

  .cart-empty {
    padding: 30px 22px;
  }

  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .cart-item-main h2 {
    font-size: 20px;
  }

  .cart-remove {
    grid-column: 2;
    justify-self: start;
  }

  .cart-empty .button,
  .summary-button,
  .clear-cart-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .icon-button {
    width: 36px;
    height: 36px;
  }

  .hero-content {
    padding-top: 220px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }
}

@keyframes softAuroraDrift {
  0% {
    transform: translate3d(-1.6%, -1%, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(1.2%, 1.4%, 0) rotate(7deg) scale(1.04);
  }

  100% {
    transform: translate3d(2%, -0.8%, 0) rotate(-5deg) scale(1.02);
  }
}

@keyframes metallicFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes electricSweep {
  0% {
    transform: rotate(0deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(1.02);
  }
}

@keyframes auroraBandShift {
  0% {
    background-position: 0% 50%, 100% 0%;
  }

  100% {
    background-position: 120% 50%, 0% 100%;
  }
}

.brand-mark > span:not(.brand-star) {
  color: transparent;
  background:
    linear-gradient(105deg, #2a241a 0%, #f8f0dc 18%, #b18c49 33%, #fff8ea 46%, #385349 58%, #d9bd77 72%, #141711 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 16px 34px rgba(17, 20, 17, 0.14);
  animation: metallicFlow 8s linear infinite;
}

.footer .brand-mark > span:not(.brand-star),
.brand-intro-panel .brand-mark > span:not(.brand-star) {
  background-image: linear-gradient(105deg, #fbfaf6 0%, #d5b565 22%, #fff6dc 43%, #8ba39a 58%, #c4a35a 76%, #fbfaf6 100%);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.brand-star::before {
  background:
    radial-gradient(circle at 28% 22%, #fff7d8 0 16%, transparent 18%),
    conic-gradient(from 120deg, #7e6129, #fff5c8, #b48b3c, #f5df94, #203c32, #d9bd77, #7e6129);
  animation: metallicFlow 9s linear infinite;
}

.button,
.filter-button,
.add-button,
.product-detail-add,
.product-detail-sizes button,
.product-detail-choice,
.embroidery-choice,
.size-row button,
.language-button,
.language-menu button,
.icon-button,
.search-mobile-button,
.social-icon-link,
.cart-remove,
.clear-cart-button,
.email-contact-action,
.policy-action,
.search-page-form button,
.footer-policy-links button,
.cookie-consent button,
.nav-links > a,
.nav-dropdown-menu a {
  --spec-base: rgba(17, 20, 17, 0.16);
  --spec-line: rgba(255, 255, 255, 0.82);
  --spec-glow: rgba(196, 163, 90, 0.22);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::before,
.filter-button::before,
.add-button::before,
.product-detail-add::before,
.product-detail-sizes button::before,
.product-detail-choice::before,
.embroidery-choice::before,
.size-row button::before,
.language-button::before,
.language-menu button::before,
.icon-button::before,
.search-mobile-button::before,
.social-icon-link::before,
.cart-remove::before,
.clear-cart-button::before,
.email-contact-action::before,
.policy-action::before,
.search-page-form button::before,
.footer-policy-links button::before,
.cookie-consent button::before,
.nav-links > a::before,
.nav-dropdown-menu a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--spec-x, 50%) var(--spec-y, 50%), rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(196, 163, 90, 0.12));
  opacity: 0;
  transition: opacity 180ms ease;
}

.button::after,
.filter-button::after,
.add-button::after,
.product-detail-add::after,
.product-detail-sizes button::after,
.product-detail-choice::after,
.embroidery-choice::after,
.size-row button::after,
.language-button::after,
.language-menu button::after,
.icon-button::after,
.search-mobile-button::after,
.social-icon-link::after,
.cart-remove::after,
.clear-cart-button::after,
.email-contact-action::after,
.policy-action::after,
.search-page-form button::after,
.footer-policy-links button::after,
.cookie-consent button::after,
.nav-links > a::after,
.nav-dropdown-menu a::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  border-radius: inherit;
  padding: 1px;
  background:
    conic-gradient(from var(--spec-angle, 215deg), transparent 0 18%, var(--spec-line) 21%, rgba(196, 163, 90, 0.72) 24%, transparent 31% 62%, rgba(255, 255, 255, 0.54) 66%, transparent 74% 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), var(--spec-base));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  transition: opacity 180ms ease, transform 180ms ease;
}

.button:hover::before,
.button:focus-visible::before,
.filter-button:hover::before,
.filter-button:focus-visible::before,
.filter-button.active::before,
.add-button:hover::before,
.add-button:focus-visible::before,
.product-detail-add:hover::before,
.product-detail-add:focus-visible::before,
.product-detail-sizes button:hover::before,
.product-detail-sizes button:focus-visible::before,
.product-detail-sizes button.active::before,
.product-detail-choice:hover::before,
.product-detail-choice:focus-visible::before,
.product-detail-choice.active::before,
.embroidery-choice:hover::before,
.embroidery-choice:focus-visible::before,
.embroidery-choice.active::before,
.size-row button:hover::before,
.size-row button:focus-visible::before,
.size-row button.active::before,
.language-button:hover::before,
.language-button:focus-visible::before,
.language-switcher.open .language-button::before,
.language-menu button:hover::before,
.language-menu button:focus-visible::before,
.language-menu button.active::before,
.icon-button:hover::before,
.icon-button:focus-visible::before,
.search-mobile-button:hover::before,
.search-mobile-button:focus-visible::before,
.social-icon-link:hover::before,
.social-icon-link:focus-visible::before,
.cart-remove:hover::before,
.cart-remove:focus-visible::before,
.clear-cart-button:hover::before,
.clear-cart-button:focus-visible::before,
.email-contact-action:hover::before,
.email-contact-action:focus-visible::before,
.policy-action:hover::before,
.policy-action:focus-visible::before,
.search-page-form button:hover::before,
.search-page-form button:focus-visible::before,
.footer-policy-links button:hover::before,
.footer-policy-links button:focus-visible::before,
.cookie-consent button:hover::before,
.cookie-consent button:focus-visible::before,
.nav-links > a:hover::before,
.nav-links > a:focus-visible::before,
.nav-dropdown-menu a:hover::before,
.nav-dropdown-menu a:focus-visible::before {
  opacity: 1;
}

.button:hover::after,
.button:focus-visible::after,
.filter-button:hover::after,
.filter-button:focus-visible::after,
.filter-button.active::after,
.add-button:hover::after,
.add-button:focus-visible::after,
.product-detail-add:hover::after,
.product-detail-add:focus-visible::after,
.product-detail-sizes button:hover::after,
.product-detail-sizes button:focus-visible::after,
.product-detail-sizes button.active::after,
.product-detail-choice:hover::after,
.product-detail-choice:focus-visible::after,
.product-detail-choice.active::after,
.embroidery-choice:hover::after,
.embroidery-choice:focus-visible::after,
.embroidery-choice.active::after,
.size-row button:hover::after,
.size-row button:focus-visible::after,
.size-row button.active::after,
.icon-button:hover::after,
.icon-button:focus-visible::after,
.policy-action:hover::after,
.policy-action:focus-visible::after,
.search-page-form button:hover::after,
.search-page-form button:focus-visible::after,
.social-icon-link:hover::after,
.social-icon-link:focus-visible::after {
  opacity: 1;
  transform: scale(1.01);
}

.sold-out-button::before,
.sold-out-button::after,
.swatch::before,
.swatch::after,
.product-detail-swatch::before,
.product-detail-swatch::after,
.product-detail-thumb::before,
.product-detail-thumb::after {
  display: none;
}

.hero::before,
.shop-section::before,
.social-band::before,
.category-products::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent, rgba(251, 250, 246, 0.18), transparent),
    radial-gradient(ellipse at 18% 18%, rgba(196, 163, 90, 0.12), transparent 34%),
    radial-gradient(ellipse at 84% 28%, rgba(7, 61, 49, 0.12), transparent 32%);
  background-size: 220% 100%, auto, auto;
  opacity: 0.65;
  mix-blend-mode: soft-light;
  animation: auroraBandShift 14s ease-in-out infinite alternate;
}

.shop-section,
.social-band,
.category-products {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero > *,
.shop-section > *,
.social-band > *,
.category-products > * {
  position: relative;
  z-index: 1;
}

.laser-reveal {
  --mx: -9999px;
  --my: -9999px;
  position: relative;
  isolation: isolate;
}

.laser-reveal::before,
.laser-reveal::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.laser-reveal::before {
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(216, 195, 164, 0.42) 48%, rgba(255, 255, 255, 0.68) 50%, rgba(216, 195, 164, 0.28) 52%, transparent 58%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.38), transparent 23%);
  mix-blend-mode: screen;
  transform: translateX(-22%);
}

.laser-reveal::after {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.62) 0 34px, rgba(255, 255, 255, 0.24) 80px, transparent 190px);
  mix-blend-mode: soft-light;
}

.laser-reveal.is-revealing::before,
.laser-reveal.is-revealing::after {
  opacity: 1;
}

.laser-reveal > img:not(.laser-reveal-overlay),
.laser-reveal .lookbook-carousel img:not(.laser-reveal-overlay) {
  filter: brightness(0.55) saturate(0.76) contrast(1.04);
  transition: filter 260ms ease, opacity 260ms ease;
}

.laser-reveal-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: inherit;
  opacity: 0;
  pointer-events: none;
  filter: brightness(1.04) saturate(1.06) contrast(1.02);
  -webkit-mask-image: radial-gradient(circle at var(--mx) var(--my), #fff 0 60px, rgba(255, 255, 255, 0.92) 112px, rgba(255, 255, 255, 0.46) 178px, transparent 258px);
  mask-image: radial-gradient(circle at var(--mx) var(--my), #fff 0 60px, rgba(255, 255, 255, 0.92) 112px, rgba(255, 255, 255, 0.46) 178px, transparent 258px);
  transition: opacity 160ms ease;
}

.laser-reveal.is-revealing .laser-reveal-overlay {
  opacity: 1;
}

.hero-media.laser-reveal img:not(.laser-reveal-overlay) {
  filter: brightness(0.68) saturate(0.82) contrast(1.06);
}

.lookbook-carousel.laser-reveal img:not(.laser-reveal-overlay) {
  filter: brightness(0.64) saturate(0.78) contrast(1.04);
}

.electric-border,
.brand-intro-panel,
.auth-panel,
.image-viewer-panel,
.policy-panel,
.email-contact-panel {
  position: relative;
  isolation: isolate;
}

.brand-intro-panel::before,
.auth-panel::before,
.image-viewer-panel::before,
.policy-panel::before,
.email-contact-panel::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  content: "";
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background:
    conic-gradient(from 0deg, transparent 0 10%, rgba(216, 195, 164, 0.95) 15%, rgba(255, 255, 255, 0.82) 19%, rgba(7, 61, 49, 0.95) 24%, transparent 33% 60%, rgba(196, 163, 90, 0.8) 68%, transparent 78% 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 9px rgba(216, 195, 164, 0.32));
  animation: electricSweep 6s linear infinite;
}

.brand-intro-panel::after,
.auth-panel::after,
.image-viewer-panel::after,
.policy-panel::after,
.email-contact-panel::after {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 195, 164, 0.18), transparent 28%),
    radial-gradient(circle at 84% 90%, rgba(7, 61, 49, 0.2), transparent 32%);
  filter: blur(18px);
  opacity: 0.82;
}

.brand-intro-panel > *,
.auth-panel > *,
.image-viewer-panel > *,
.policy-panel > *,
.email-contact-panel > * {
  position: relative;
  z-index: 3;
}

@media (max-width: 1050px) {
  body::before {
    inset: -12vmax;
    opacity: 0.42;
    filter: blur(28px) saturate(1.04);
  }

  .laser-reveal-overlay {
    -webkit-mask-image: radial-gradient(circle at var(--mx) var(--my), #fff 0 48px, rgba(255, 255, 255, 0.78) 96px, transparent 188px);
    mask-image: radial-gradient(circle at var(--mx) var(--my), #fff 0 48px, rgba(255, 255, 255, 0.78) 96px, transparent 188px);
  }
}

@media (max-width: 760px) {
  body::before {
    opacity: 0.32;
  }

  .button,
  .filter-button,
  .add-button,
  .product-detail-add,
  .cart-remove,
  .clear-cart-button {
    min-height: 46px;
  }

  .filter-bar {
    gap: 9px;
  }

  .filter-button {
    flex: 1 1 calc(50% - 9px);
    justify-content: center;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-intro-panel::after,
  .image-viewer-panel::after,
  .policy-panel::after,
  .email-contact-panel::after {
    inset: -10px;
    filter: blur(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .brand-mark > span:not(.brand-star),
  .brand-star::before,
  .brand-intro-panel::before,
  .auth-panel::before,
  .image-viewer-panel::before,
  .policy-panel::before,
  .email-contact-panel::before,
  .hero::before,
  .shop-section::before,
  .social-band::before,
  .category-products::before {
    animation: none;
  }

  .laser-reveal-overlay {
    display: none;
  }
}

/* Final polish pass: quieter effects, cleaner product layout, stronger imagery. */
body::before {
  opacity: 0.34;
  mix-blend-mode: soft-light;
}

.brand-intro-modal {
  align-items: center;
  justify-items: center;
  padding: clamp(18px, 4vw, 44px);
}

.brand-intro-backdrop {
  background:
    radial-gradient(circle at 50% 40%, rgba(216, 195, 164, 0.16), rgba(1, 37, 29, 0.46) 36%, rgba(9, 12, 10, 0.84) 100%),
    rgba(17, 20, 17, 0.72);
}

.brand-intro-notice-panel {
  width: min(760px, calc(100vw - 42px));
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1fr);
  align-items: stretch;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(30, 22, 15, 0.98), rgba(1, 37, 29, 0.94) 58%, rgba(10, 16, 13, 0.96)),
    var(--forest-deep);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.48);
}

.brand-intro-close {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  z-index: 8;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.9);
  border-color: rgba(216, 195, 164, 0.34);
}

.image-viewer-close,
.policy-close,
.email-contact-close {
  position: absolute;
  left: auto;
  z-index: 8;
}

.brand-intro-close:hover,
.brand-intro-close:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.brand-intro-notice-carousel {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
  border-right: 1px solid rgba(216, 195, 164, 0.22);
  border-bottom: 0;
  background: #211c15;
}

.brand-intro-notice-carousel img {
  object-position: center;
  filter: brightness(0.96) contrast(1.04) saturate(0.92);
}

.brand-intro-dots {
  right: 18px;
  bottom: 18px;
  background: rgba(17, 20, 17, 0.48);
}

.brand-intro-notice {
  align-content: center;
  padding: clamp(30px, 4vw, 48px);
}

.brand-intro-notice h2 {
  max-width: 360px;
  font-size: clamp(42px, 5.2vw, 70px);
}

.brand-intro-notice p:last-child,
.brand-intro-notice p[data-i18n="introModal.copy"] {
  max-width: 34ch;
  font-size: 14px;
}

.brand-intro-contact {
  min-height: 44px;
  padding: 11px 20px;
}

.hero {
  min-height: clamp(680px, calc(100svh - 68px), 940px);
  background: #062e25;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-shade {
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-rail {
  position: absolute;
  z-index: 3;
}

.hero-media img {
  opacity: 1;
  filter: brightness(1.04) saturate(1.03) contrast(1.04);
  object-position: center center;
}

.hero-media.laser-reveal img:not(.laser-reveal-overlay) {
  filter: brightness(0.96) saturate(0.98) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 37, 29, 0.86) 0%, rgba(1, 37, 29, 0.62) 30%, rgba(1, 37, 29, 0.18) 58%, rgba(1, 37, 29, 0.03) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.02) 44%);
}

.hero::before {
  opacity: 0.28;
}

.laser-reveal::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), rgba(216, 195, 164, 0.12) 110px, transparent 260px);
  mix-blend-mode: screen;
  transform: none;
}

.laser-reveal::after {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.38) 0 40px, rgba(255, 255, 255, 0.16) 118px, transparent 245px);
}

.laser-reveal > img:not(.laser-reveal-overlay) {
  filter: brightness(0.92) saturate(0.92) contrast(1.02);
}

.laser-reveal-overlay {
  filter: brightness(1.04) saturate(1.02) contrast(1.02);
  -webkit-mask-image: radial-gradient(circle at var(--mx) var(--my), #fff 0 72px, rgba(255, 255, 255, 0.72) 145px, transparent 270px);
  mask-image: radial-gradient(circle at var(--mx) var(--my), #fff 0 72px, rgba(255, 255, 255, 0.72) 145px, transparent 270px);
}

.lookbook-carousel.laser-reveal::before,
.lookbook-carousel.laser-reveal::after,
.brand-intro-carousel.laser-reveal::before,
.brand-intro-carousel.laser-reveal::after,
.product-detail-main.laser-reveal::before,
.product-detail-main.laser-reveal::after {
  display: none;
}

.brand-intro-panel::before,
.auth-panel::before,
.image-viewer-panel::before,
.policy-panel::before,
.email-contact-panel::before {
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(216, 195, 164, 0.74), rgba(255, 255, 255, 0.28) 36%, rgba(7, 61, 49, 0.42) 68%, rgba(216, 195, 164, 0.54));
  filter: drop-shadow(0 0 10px rgba(216, 195, 164, 0.18));
  opacity: 0.72;
  animation: none;
}

.brand-intro-panel::after,
.auth-panel::after,
.image-viewer-panel::after,
.policy-panel::after,
.email-contact-panel::after {
  inset: -12px;
  opacity: 0.46;
  filter: blur(16px);
}

.shop-section {
  background:
    radial-gradient(circle at 12% 6%, rgba(216, 195, 164, 0.16), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(7, 61, 49, 0.08), transparent 30%),
    #f5f1e8;
}

.shop-section::before,
.category-products::before {
  opacity: 0.26;
}

.product-grid {
  gap: clamp(20px, 2.2vw, 34px);
  align-items: start;
}

.product-card {
  gap: 13px;
  padding: 10px 10px 18px;
  border: 1px solid rgba(17, 20, 17, 0.1);
  border-radius: 10px;
  background: rgba(251, 250, 246, 0.86);
  box-shadow: 0 18px 48px rgba(17, 20, 17, 0.07);
}

.product-image {
  order: 1;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.54), transparent 36%),
    linear-gradient(145deg, #eee4d5, #d9ccb8);
  box-shadow: none;
}

.product-info {
  order: 2;
  min-height: 0;
  padding: 2px 2px 0;
}

.option-group {
  order: 3;
}

.swatches {
  order: 4;
  padding: 2px;
}

.size-row {
  order: 5;
}

.add-button {
  order: 6;
}

.product-image img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.product-image:hover img,
.product-image:focus-visible img {
  transform: scale(1.025);
}

.embroidery-choice,
.size-row button,
.product-detail-sizes button,
.product-detail-choice {
  color: rgba(17, 20, 17, 0.88);
  border-color: rgba(17, 20, 17, 0.14);
  background: rgba(251, 250, 246, 0.74);
  box-shadow: none;
}

.embroidery-choice.active,
.size-row button.active,
.product-detail-sizes button.active,
.product-detail-choice.active {
  color: var(--paper);
  border-color: #173f34;
  background: linear-gradient(135deg, #102b24, #1d5143);
  box-shadow: none;
}

.embroidery-choice:hover,
.embroidery-choice:focus-visible,
.size-row button:hover,
.size-row button:focus-visible,
.product-detail-sizes button:hover,
.product-detail-sizes button:focus-visible,
.product-detail-choice:hover,
.product-detail-choice:focus-visible {
  color: var(--paper);
  border-color: #c49d52;
  background: linear-gradient(135deg, #1b4539, #0f1713);
  box-shadow: 0 12px 28px rgba(7, 61, 49, 0.16);
}

.filter-button.active:not(:hover):not(:focus-visible)::before,
.product-detail-sizes button.active:not(:hover):not(:focus-visible)::before,
.product-detail-choice.active:not(:hover):not(:focus-visible)::before,
.embroidery-choice.active:not(:hover):not(:focus-visible)::before,
.size-row button.active:not(:hover):not(:focus-visible)::before {
  opacity: 0;
}

.filter-button.active:not(:hover):not(:focus-visible)::after,
.product-detail-sizes button.active:not(:hover):not(:focus-visible)::after,
.product-detail-choice.active:not(:hover):not(:focus-visible)::after,
.embroidery-choice.active:not(:hover):not(:focus-visible)::after,
.size-row button.active:not(:hover):not(:focus-visible)::after {
  opacity: 0.18;
  transform: none;
}

.filter-button.active {
  background: #111411;
  border-color: #111411;
  box-shadow: none;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: #c49d52;
  background: linear-gradient(135deg, #153b31, #0f1713);
  box-shadow: 0 14px 34px rgba(7, 61, 49, 0.16);
}

.image-viewer {
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 195, 164, 0.18), transparent 32%),
    radial-gradient(circle at 78% 84%, rgba(7, 61, 49, 0.18), transparent 34%),
    rgba(9, 12, 10, 0.78);
}

.image-viewer-panel {
  width: min(1180px, calc(100vw - 34px));
  max-height: calc(100svh - 42px);
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  border-color: rgba(216, 195, 164, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.98), rgba(235, 228, 215, 0.98)),
    #f7f3eb;
}

.product-detail-gallery {
  min-height: 0;
  height: min(700px, calc(100svh - 74px));
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  background:
    radial-gradient(circle at 48% 20%, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(145deg, #eee7dc, #ded2bf);
}

.product-detail-thumbs {
  gap: 12px;
  max-height: calc(100svh - 108px);
}

.product-detail-thumb {
  width: 68px;
  border-radius: 8px;
}

.product-detail-main {
  display: grid;
  place-items: center;
  min-height: 0;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.62), transparent 34%),
    #e8ddcf;
}

.image-viewer-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.product-detail-info {
  gap: 16px;
  max-height: calc(100svh - 42px);
  padding: clamp(28px, 3vw, 42px);
}

.product-detail-info h2 {
  max-width: 12ch;
  font-size: clamp(42px, 4.4vw, 68px);
}

.product-detail-option {
  gap: 9px;
  padding-top: 14px;
}

.product-detail-add {
  border-radius: 999px;
}

.lookbook-image {
  background:
    radial-gradient(circle at 48% 36%, rgba(216, 195, 164, 0.12), transparent 34%),
    #111411;
}

.lookbook-carousel img {
  filter: brightness(0.96) saturate(0.94) contrast(1.02);
}

.lookbook-copy {
  background:
    radial-gradient(circle at 10% 18%, rgba(216, 195, 164, 0.08), transparent 32%),
    #111411;
}

.lookbook-copy h2 {
  font-size: clamp(36px, 4.4vw, 68px);
}

.cookie-consent {
  top: auto;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  left: auto;
  width: min(420px, calc(100vw - 32px));
  border-color: rgba(216, 195, 164, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 195, 164, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(1, 37, 29, 0.96), rgba(9, 18, 15, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.cookie-consent-actions {
  justify-content: flex-start;
}

@media (max-width: 1020px) {
  .image-viewer-panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .product-detail-gallery {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body::before {
    opacity: 0.2;
  }

  .brand-intro-notice-panel {
    width: min(390px, calc(100vw - 28px));
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .brand-intro-notice-carousel {
    min-height: 0;
    aspect-ratio: 16 / 10.5;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 195, 164, 0.2);
  }

  .brand-intro-notice {
    padding: 24px 24px 26px;
  }

  .brand-intro-notice h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero {
    min-height: 760px;
  }

  .cookie-consent {
    right: 14px;
    left: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: auto;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(1, 37, 29, 0.96) 0%, rgba(1, 37, 29, 0.78) 52%, rgba(1, 37, 29, 0.22) 100%),
      linear-gradient(90deg, rgba(1, 37, 29, 0.86), rgba(1, 37, 29, 0.08));
  }

  .product-card {
    padding: 9px 9px 15px;
    border-radius: 9px;
  }

  .product-grid {
    gap: 16px;
  }

  .image-viewer {
    padding: 10px;
  }

  .image-viewer-panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    border-radius: 12px;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .product-detail-main {
    aspect-ratio: 4 / 5;
  }

  .product-detail-thumbs {
    display: flex;
    order: 2;
    max-height: none;
    overflow-x: auto;
  }

  .product-detail-info {
    padding: 24px 18px 28px;
  }

  .lookbook-image {
    min-height: 440px;
  }
}

/* Premium motion refresh inspired by the provided React Bits effects. */
@keyframes knightShineText {
  0% {
    background-position: 220% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes knightGradientText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes knightBlurIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-26px);
  }

  54% {
    opacity: 0.55;
    filter: blur(5px);
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes knightButtonShine {
  0% {
    transform: translateX(-140%) skewX(-18deg);
  }

  100% {
    transform: translateX(180%) skewX(-18deg);
  }
}

.shiny-text {
  color: transparent;
  background:
    linear-gradient(
      105deg,
      rgba(251, 250, 246, 0.78) 0%,
      #fbfaf6 18%,
      #d8c3a4 34%,
      #fff8e8 48%,
      #b99a5d 62%,
      rgba(251, 250, 246, 0.88) 78%,
      rgba(251, 250, 246, 0.66) 100%
    );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: knightShineText 6.4s linear infinite;
}

.gradient-text {
  color: transparent;
  background:
    linear-gradient(110deg, #fbfaf6 0%, #d8c3a4 24%, #fff7df 48%, #98b2a7 68%, #fbfaf6 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  animation: knightGradientText 8s ease-in-out infinite;
}

.hero-gradient-title {
  letter-spacing: 0;
}

.blur-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.blur-text .blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-26px);
}

.blur-text.blur-ready .blur-word {
  animation: knightBlurIn 520ms cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
  animation-delay: calc(var(--blur-index, 0) * 92ms);
}

.shiny-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.shiny-button::before {
  position: absolute;
  inset: -25% auto -25% 0;
  z-index: -1;
  width: 46%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  opacity: 0.72;
  animation: knightButtonShine 3.8s ease-in-out infinite;
}

.electric-card::before {
  inset: -1px;
  z-index: 2;
  background:
    conic-gradient(
      from 180deg,
      transparent 0 16%,
      rgba(216, 195, 164, 0.82) 22%,
      rgba(255, 250, 235, 0.94) 26%,
      rgba(7, 61, 49, 0.54) 34%,
      transparent 48% 66%,
      rgba(196, 163, 90, 0.68) 74%,
      transparent 84% 100%
    );
  filter: drop-shadow(0 0 10px rgba(216, 195, 164, 0.22));
  opacity: 0.86;
  animation: electricSweep 7s linear infinite;
}

.electric-card::after {
  inset: -18px;
  background:
    linear-gradient(135deg, rgba(216, 195, 164, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(7, 61, 49, 0.18), transparent 42%);
  opacity: 0.62;
}

.category-hero {
  --hero-a: #062d25;
  --hero-b: #101410;
  --hero-c: #d8c3a4;
  --hero-d: #f1eadf;
  min-height: clamp(430px, 40vw, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--hero-a) 0%, #05251f 48%, var(--hero-b) 100%);
}

.category-hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(251, 250, 246, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(216, 195, 164, 0.10), transparent 42%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
  filter: none;
  opacity: 0.58;
  transform: none;
}

.category-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 37, 29, 0.64) 0%, rgba(1, 37, 29, 0.22) 54%, rgba(17, 20, 17, 0.40) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.20), transparent 48%);
}

.category-hero-copy {
  align-self: end;
  max-width: 900px;
  padding: clamp(84px, 8vw, 134px) clamp(22px, 5vw, 76px) clamp(52px, 6vw, 88px);
}

.category-hero .eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  opacity: 1;
}

.category-hero h1 {
  max-width: 9.5ch;
  width: fit-content;
  font-size: clamp(58px, 8.4vw, 132px);
  letter-spacing: 0;
}

.category-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(251, 250, 246, 0.72);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.45;
}

.category-hero-art {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100%;
  padding: clamp(40px, 4vw, 72px) clamp(24px, 4.2vw, 68px);
  overflow: hidden;
  border-left: 1px solid rgba(251, 250, 246, 0.12);
  background:
    linear-gradient(135deg, rgba(251, 250, 246, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(17, 20, 17, 0.20), rgba(17, 20, 17, 0.42));
}

.category-hero-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(216, 195, 164, 0.20) 34.2%, transparent 35% 100%),
    linear-gradient(120deg, transparent 0 64%, rgba(251, 250, 246, 0.08) 64.2%, transparent 65% 100%);
  opacity: 0.72;
  pointer-events: none;
}

.category-material-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  min-height: clamp(270px, 23vw, 380px);
  display: grid;
  align-content: end;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(216, 195, 164, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(251, 250, 246, 0.12), rgba(17, 20, 17, 0.24)),
    linear-gradient(135deg, rgba(251, 250, 246, 0.08), rgba(1, 37, 29, 0.30));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.category-material-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(251, 250, 246, 0.04) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(251, 250, 246, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.62;
  pointer-events: none;
}

.category-material-line {
  position: absolute;
  top: clamp(22px, 2.4vw, 34px);
  left: clamp(22px, 2.4vw, 34px);
  width: min(180px, 42%);
  height: 1px;
  background: linear-gradient(90deg, var(--hero-c), transparent);
  opacity: 0.82;
}

.category-swatch-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
}

.category-hero-swatch {
  min-height: clamp(92px, 8vw, 152px);
  display: block;
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 12px;
  background: var(--swatch-color);
  box-shadow:
    inset 0 18px 28px rgba(255, 255, 255, 0.08),
    inset 0 -24px 34px rgba(0, 0, 0, 0.18);
}

.category-hero-swatch::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 9px);
  mix-blend-mode: soft-light;
}

.category-material-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.category-material-copy span {
  color: rgba(216, 195, 164, 0.86);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-material-copy strong {
  color: rgba(251, 250, 246, 0.92);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.96;
}

.category-hero-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-hero-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: rgba(251, 250, 246, 0.78);
  border: 1px solid rgba(251, 250, 246, 0.16);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.06);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.category-hero-all {
  --hero-a: #062d25;
  --hero-b: #111411;
  --hero-c: #d8c3a4;
  --hero-d: #f1eadf;
}

.category-hero-caps {
  --hero-a: #071323;
  --hero-b: #0e1714;
  --hero-c: #d8c3a4;
  --hero-d: #f2eadc;
}

.category-hero-hoodies {
  --hero-a: #17382f;
  --hero-b: #111411;
  --hero-c: #d2bc98;
  --hero-d: #f1eadf;
}

.category-hero-crewnecks {
  --hero-a: #101410;
  --hero-b: #142034;
  --hero-c: #b99a5d;
  --hero-d: #d8c3a4;
}

.category-hero-shirts {
  --hero-a: #2d332f;
  --hero-b: #121311;
  --hero-c: #d8c3a4;
  --hero-d: #f4eee4;
}

.category-hero-quarterzip {
  --hero-a: #163a31;
  --hero-b: #111411;
  --hero-c: #e6d4b8;
  --hero-d: #f0e7d6;
}

.category-hero-jackets {
  --hero-a: #072b23;
  --hero-b: #101410;
  --hero-c: #c4a35a;
  --hero-d: #e6dac8;
}

.category-hero-pants {
  --hero-a: #111411;
  --hero-b: #111927;
  --hero-c: #d8c3a4;
  --hero-d: #f1eadf;
}

.category-hero-shorts {
  --hero-a: #132c25;
  --hero-b: #111411;
  --hero-c: #d8c3a4;
  --hero-d: #f1eadf;
}

@media (max-width: 1120px) {
  .category-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .category-hero-copy {
    padding-bottom: 34px;
  }

  .category-hero-art {
    min-height: 0;
    padding-top: 0;
    border-left: 0;
  }

  .category-material-card {
    width: 100%;
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .gradient-text {
    background-size: 180% 100%;
  }

  .category-hero {
    padding: 0;
  }

  .category-hero-copy {
    padding: 108px 18px 28px;
  }

  .category-hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 15vw, 72px);
  }

  .category-hero p:not(.eyebrow) {
    max-width: 33ch;
    margin-top: 16px;
    font-size: 15px;
  }

  .category-hero-art {
    padding: 0 18px 34px;
  }

  .category-material-card {
    min-height: 210px;
    padding: 20px;
    border-radius: 14px;
  }

  .category-hero-swatch {
    min-height: 74px;
    border-radius: 9px;
  }

  .category-material-copy strong {
    font-size: clamp(28px, 9vw, 40px);
  }

  .category-hero-tags span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .blur-text.blur-ready .blur-word {
    animation-delay: calc(var(--blur-index, 0) * 62ms);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shiny-text,
  .gradient-text,
  .shiny-button::before,
  .electric-card::before,
  .blur-text.blur-ready .blur-word {
    animation: none;
  }

  .blur-text .blur-word {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Final premium pass: single-image product roots, electric intro, and refined contact. */
@keyframes knightElectricRing {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(216, 195, 164, 0.34));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 16px rgba(123, 228, 219, 0.38));
  }

  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(216, 195, 164, 0.34));
  }
}

@keyframes knightElectricGlow {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.985);
  }

  45% {
    opacity: 0.72;
    transform: scale(1.015);
  }

  54% {
    opacity: 0.46;
  }
}

@keyframes knightFuzzyDrift {
  0%,
  100% {
    clip-path: polygon(0 10%, 100% 0, 100% 28%, 0 34%);
    transform: translate3d(-1px, 0, 0);
  }

  50% {
    clip-path: polygon(0 2%, 100% 14%, 100% 42%, 0 30%);
    transform: translate3d(1px, -1px, 0);
  }
}

@keyframes knightFuzzySlice {
  0%,
  100% {
    clip-path: polygon(0 62%, 100% 54%, 100% 84%, 0 90%);
    transform: translate3d(1px, 0, 0);
  }

  50% {
    clip-path: polygon(0 48%, 100% 64%, 100% 92%, 0 78%);
    transform: translate3d(-1px, 1px, 0);
  }
}

.category-hero {
  min-height: clamp(480px, 44vw, 650px);
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.86fr);
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--hero-c) 20%, transparent), transparent 28%),
    linear-gradient(135deg, var(--hero-a) 0%, #032920 46%, var(--hero-b) 100%);
}

.category-hero::before {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(251, 250, 246, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 74% 32%, rgba(216, 195, 164, 0.16), transparent 32%);
  background-size: 52px 52px, 52px 52px, 100% 100%;
  opacity: 0.7;
}

.category-hero::after {
  background:
    linear-gradient(90deg, rgba(1, 37, 29, 0.82) 0%, rgba(1, 37, 29, 0.28) 62%, rgba(17, 20, 17, 0.58) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 56%);
}

.category-hero-copy {
  align-self: center;
  padding: clamp(96px, 8vw, 140px) clamp(22px, 5vw, 76px);
}

.category-hero .eyebrow {
  color: rgba(216, 195, 164, 0.88);
}

.category-hero h1 {
  max-width: 10ch;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.category-hero-art {
  min-height: 100%;
  padding: clamp(42px, 4.4vw, 78px) clamp(28px, 4.5vw, 76px);
  place-items: center;
}

.category-image-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 195, 164, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(251, 250, 246, 0.08), rgba(17, 20, 17, 0.26)),
    #111411;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(251, 250, 246, 0.06);
}

.category-image-card::before,
.category-image-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.category-image-card::before {
  background:
    linear-gradient(90deg, rgba(1, 37, 29, 0.76) 0%, rgba(1, 37, 29, 0.18) 46%, rgba(17, 20, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 20, 17, 0.56), transparent 46%);
}

.category-image-card::after {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(251, 250, 246, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 56%, rgba(216, 195, 164, 0.22) 56.2%, transparent 57% 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  mix-blend-mode: soft-light;
  opacity: 0.64;
}

.category-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--category-image-position, center center);
  filter: brightness(0.82) saturate(0.9) contrast(1.05);
  transform: scale(1.02);
}

.category-material-line {
  position: absolute;
  top: 34px;
  right: 34px;
  left: 34px;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 195, 164, 0.66), transparent 74%);
}

.category-image-card .category-material-copy {
  position: absolute;
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(18px, 2.5vw, 34px);
  left: clamp(18px, 2.5vw, 34px);
  z-index: 3;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 195, 164, 0.34);
}

.category-image-card .category-material-copy span {
  color: rgba(216, 195, 164, 0.92);
}

.category-image-card .category-material-copy strong {
  max-width: 11ch;
  color: var(--paper);
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 0.9;
}

.category-hero-tags {
  width: min(680px, 100%);
  margin-top: 16px;
}

.category-hero-tags span {
  background: rgba(251, 250, 246, 0.08);
}

.image-viewer.single-image-gallery .product-detail-gallery,
.image-viewer-panel.single-image-gallery .product-detail-gallery {
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(12px, 2vw, 20px);
}

.image-viewer.single-image-gallery .product-detail-thumbs,
.image-viewer-panel.single-image-gallery .product-detail-thumbs {
  display: none;
}

.image-viewer.single-image-gallery .product-detail-main,
.image-viewer-panel.single-image-gallery .product-detail-main {
  min-height: min(700px, calc(100svh - 78px));
  border-radius: 12px;
}

.image-viewer.single-image-gallery .product-detail-view-label,
.image-viewer-panel.single-image-gallery .product-detail-view-label {
  display: none;
}

.brand-intro-notice-panel.electric-card {
  overflow: visible;
  border-color: rgba(216, 195, 164, 0.44);
}

.brand-intro-notice-panel.electric-card .brand-intro-notice {
  position: relative;
  overflow: hidden;
}

.brand-intro-notice-panel.electric-card::before {
  inset: -2px;
  padding: 2px;
  background:
    linear-gradient(115deg, rgba(216, 195, 164, 0.16), rgba(125, 249, 255, 0.9), rgba(251, 250, 246, 0.86), rgba(197, 157, 82, 0.86), rgba(125, 249, 255, 0.5), rgba(216, 195, 164, 0.16));
  background-size: 260% 260%;
  opacity: 0.95;
  animation: knightElectricRing 3.2s linear infinite;
}

.brand-intro-notice-panel.electric-card::after {
  inset: -30px;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(125, 249, 255, 0.22), transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(216, 195, 164, 0.24), transparent 26%),
    linear-gradient(135deg, transparent 0 47%, rgba(125, 249, 255, 0.28) 47.2%, transparent 48% 100%);
  filter: blur(18px);
  opacity: 0.58;
  animation: knightElectricGlow 2.8s ease-in-out infinite;
}

.brand-intro-notice-panel.electric-card .brand-intro-notice::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(140deg, transparent 0 42%, rgba(125, 249, 255, 0.22) 42.2%, transparent 43% 100%),
    linear-gradient(40deg, transparent 0 76%, rgba(216, 195, 164, 0.18) 76.2%, transparent 77% 100%);
  pointer-events: none;
}

.brand-intro-notice-panel.electric-card .brand-intro-notice > * {
  position: relative;
  z-index: 1;
}

.fuzzy-text {
  position: relative;
  display: inline-block;
  isolation: isolate;
  text-shadow:
    0 1px 0 rgba(216, 195, 164, 0.16),
    0 0 32px rgba(216, 195, 164, 0.14);
}

.fuzzy-text::before,
.fuzzy-text::after {
  position: absolute;
  inset: 0;
  content: attr(data-fuzzy-label);
  pointer-events: none;
}

.fuzzy-text::before {
  color: rgba(216, 195, 164, 0.5);
  filter: blur(0.7px);
  animation: knightFuzzyDrift 3.8s ease-in-out infinite;
}

.fuzzy-text::after {
  color: rgba(125, 249, 255, 0.22);
  filter: blur(1px);
  animation: knightFuzzySlice 4.6s ease-in-out infinite;
}

.contact-page {
  min-height: calc(100svh - 72px);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  background: #01251d;
}

.contact-page::before {
  background:
    linear-gradient(90deg, rgba(1, 24, 19, 0.96) 0%, rgba(1, 37, 29, 0.82) 42%, rgba(17, 20, 17, 0.62) 100%),
    radial-gradient(circle at 72% 34%, rgba(216, 195, 164, 0.18), transparent 26%),
    url("assets/contact-hero-landscape.png") center center / cover no-repeat,
    linear-gradient(135deg, #01251d 0%, #073d31 58%, #111411 100%);
}

.contact-intro h1 {
  max-width: 8.6ch;
}

.contact-intro p:not(.eyebrow) {
  max-width: 610px;
}

.contact-grid {
  position: relative;
  justify-self: end;
  width: min(620px, 100%);
  overflow: hidden;
  border: 1px solid rgba(216, 195, 164, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(251, 250, 246, 0.16), rgba(251, 250, 246, 0.06));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.contact-grid::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(251, 250, 246, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.32;
  pointer-events: none;
}

.contact-panel {
  position: relative;
  background: rgba(251, 250, 246, 0.92);
}

.contact-panel h2 {
  color: rgba(17, 20, 17, 0.72);
}

@media (max-width: 1120px) {
  .category-hero {
    grid-template-columns: 1fr;
  }

  .category-hero-copy {
    padding: clamp(94px, 10vw, 128px) clamp(20px, 5vw, 56px) 34px;
  }

  .category-hero-art {
    padding: 0 clamp(20px, 5vw, 56px) 48px;
    border-left: 0;
  }

  .category-image-card {
    width: min(760px, 100%);
  }

  .contact-grid {
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .category-hero {
    min-height: 0;
  }

  .category-hero-copy {
    padding: 96px 18px 26px;
  }

  .category-hero-art {
    padding: 0 18px 30px;
  }

  .category-image-card {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .category-image-card img {
    transform: scale(1.04);
  }

  .category-material-line {
    top: 20px;
    right: 20px;
    left: 20px;
  }

  .category-image-card .category-material-copy {
    right: 20px;
    bottom: 18px;
    left: 20px;
    padding-top: 12px;
  }

  .category-image-card .category-material-copy strong {
    font-size: clamp(30px, 11vw, 44px);
  }

  .image-viewer.single-image-gallery .product-detail-main,
  .image-viewer-panel.single-image-gallery .product-detail-main {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .brand-intro-notice-panel.electric-card::after {
    inset: -18px;
    filter: blur(14px);
  }

  .contact-page {
    min-height: auto;
    padding: 104px 18px 54px;
  }

  .contact-page::before {
    background:
      linear-gradient(0deg, rgba(1, 37, 29, 0.98) 0%, rgba(1, 37, 29, 0.9) 56%, rgba(1, 37, 29, 0.68) 100%),
      url("assets/contact-hero-landscape.png") center top / auto 100% no-repeat,
      linear-gradient(135deg, #01251d 0%, #073d31 58%, #111411 100%);
  }

  .contact-intro h1 {
    max-width: 8.8ch;
    font-size: clamp(52px, 17vw, 82px);
  }

  .contact-grid {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro-notice-panel.electric-card::before,
  .brand-intro-notice-panel.electric-card::after,
  .fuzzy-text::before,
  .fuzzy-text::after {
    animation: none;
  }
}

/* Product detail frame reset: single, clean frame with no overflow. */
.image-viewer-panel,
.image-viewer-panel *,
.product-detail-gallery,
.product-detail-main,
.image-viewer-image {
  box-sizing: border-box;
}

.image-viewer-panel {
  width: min(1160px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(216, 195, 164, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(250, 247, 239, 0.98), rgba(232, 225, 211, 0.98)),
    #f6f1e8;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34);
}

.image-viewer-panel::before,
.image-viewer-panel::after {
  display: none;
}

.product-detail-gallery,
.image-viewer.single-image-gallery .product-detail-gallery,
.image-viewer-panel.single-image-gallery .product-detail-gallery {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  padding: clamp(14px, 1.8vw, 20px);
  overflow: hidden;
  border-right: 1px solid rgba(17, 20, 17, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(216, 195, 164, 0.08)),
    #e8dfd2;
}

.product-detail-thumbs,
.image-viewer.single-image-gallery .product-detail-thumbs,
.image-viewer-panel.single-image-gallery .product-detail-thumbs {
  display: none;
}

.product-detail-main,
.image-viewer.single-image-gallery .product-detail-main,
.image-viewer-panel.single-image-gallery .product-detail-main {
  width: 100%;
  height: min(660px, calc(100svh - 76px));
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.68), transparent 34%),
    linear-gradient(145deg, #eadfce, #ded3c1);
  box-shadow:
    inset 0 0 0 1px rgba(17, 20, 17, 0.04),
    0 16px 42px rgba(17, 20, 17, 0.08);
}

.image-viewer-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: scale(var(--detail-image-scale, 0.965));
  transform-origin: center center;
}

.product-detail-view-label,
.image-viewer-panel.single-image-gallery .product-detail-view-label {
  display: none;
}

.product-detail-info {
  max-height: calc(100svh - 36px);
  overflow: auto;
  border-left: 0;
}

@media (max-width: 1020px) {
  .image-viewer {
    align-items: flex-start;
    padding: 14px;
  }

  .image-viewer-panel {
    width: min(760px, 100%);
    max-height: none;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .product-detail-gallery,
  .image-viewer.single-image-gallery .product-detail-gallery,
  .image-viewer-panel.single-image-gallery .product-detail-gallery {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 17, 0.08);
  }

  .product-detail-main,
  .image-viewer.single-image-gallery .product-detail-main,
  .image-viewer-panel.single-image-gallery .product-detail-main {
    height: auto;
    aspect-ratio: 1 / 1.08;
    max-height: 620px;
  }

  .product-detail-info {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .image-viewer {
    padding: 8px;
  }

  .image-viewer-panel {
    width: 100%;
    border-radius: 10px;
  }

  .product-detail-gallery,
  .image-viewer.single-image-gallery .product-detail-gallery,
  .image-viewer-panel.single-image-gallery .product-detail-gallery {
    padding: 8px;
  }

  .product-detail-main,
  .image-viewer.single-image-gallery .product-detail-main,
  .image-viewer-panel.single-image-gallery .product-detail-main {
    aspect-ratio: 4 / 5;
    max-height: min(560px, calc(100svh - 118px));
    border-radius: 8px;
  }

  .image-viewer-image {
    transform: scale(var(--detail-image-scale, 0.94));
  }

  .product-detail-info {
    padding: 22px 18px 26px;
  }
}

@keyframes lookbookFilmBreath {
  from {
    transform: scale(1.012);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes lookbookTitleSheen {
  0%,
  38% {
    background-position: 100% 0;
  }

  72%,
  100% {
    background-position: 0 0;
  }
}

.nav-actions .search-mobile-button {
  display: none;
}

.contact-page .contact-classic-title {
  position: relative;
  max-width: 8.7ch;
  color: var(--paper);
  background: none;
  filter: none;
  text-shadow: 0 18px 56px rgba(216, 196, 157, 0.16);
  -webkit-text-fill-color: currentColor;
}

.contact-page .contact-classic-title::after {
  content: "";
  display: block;
  width: 104px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(216, 196, 157, 0.95), rgba(216, 196, 157, 0));
}

.lookbook {
  position: relative;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.74fr);
  overflow: hidden;
  border-top: 1px solid rgba(216, 196, 157, 0.16);
  border-bottom: 1px solid rgba(216, 196, 157, 0.16);
  background:
    radial-gradient(circle at 16% 12%, rgba(216, 196, 157, 0.1), transparent 30%),
    #101411;
}

.lookbook::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(216, 196, 157, 0.08), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 44px);
  opacity: 0.52;
  mix-blend-mode: screen;
}

.lookbook-film {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 196, 157, 0.12), transparent 32%),
    #0d1110;
}

.lookbook-film .lookbook-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(0.92) brightness(0.82);
  transform-origin: center;
  animation: lookbookFilmBreath 12s ease-in-out infinite alternate;
}

.lookbook-film::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 17, 16, 0.08), transparent 35%, rgba(13, 17, 16, 0.24)),
    linear-gradient(180deg, rgba(13, 17, 16, 0.02), rgba(13, 17, 16, 0.2));
}

.lookbook-film::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(216, 196, 157, 0.18);
  box-shadow: inset 0 0 80px rgba(216, 196, 157, 0.05);
}

.lookbook-film-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 196, 157, 0.34);
  color: rgba(250, 247, 239, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lookbook-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 196, 157, 0.12), transparent 30%),
    linear-gradient(150deg, rgba(15, 18, 15, 0.96), rgba(11, 14, 12, 0.98));
}

.lookbook-copy::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(216, 196, 157, 0.16);
}

.lookbook-copy > * {
  position: relative;
  z-index: 1;
}

.lookbook-kinetic-title {
  color: var(--paper);
  background-image: linear-gradient(110deg, #fffaf0 0%, #fffaf0 38%, #d8c49d 50%, #fffaf0 62%, #fffaf0 100%);
  background-size: 260% 100%;
  background-position: 100% 0;
  background-clip: text;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  animation: lookbookTitleSheen 7s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lookbook-copy .button-dark {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #fffaf0;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.lookbook-copy .button-dark:hover,
.lookbook-copy .button-dark:focus-visible {
  color: #fffaf0;
  border-color: rgba(216, 196, 157, 0.7);
  background: #111411;
}

.nav-dropdown-menu {
  min-width: 238px;
  padding: 10px;
  gap: 7px;
  border: 1px solid rgba(196, 163, 90, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(252, 250, 245, 0.98), rgba(236, 232, 222, 0.96)),
    var(--paper);
  box-shadow: 0 26px 70px rgba(17, 20, 17, 0.16);
}

.nav-dropdown-menu a {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 20, 17, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(232, 229, 220, 0.44));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav-dropdown-menu a::before,
.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--paper);
  border-color: rgba(17, 20, 17, 0.92);
  background:
    linear-gradient(135deg, rgba(196, 163, 90, 0.18), rgba(17, 20, 17, 0)),
    var(--ink);
  transform: translateY(-1px);
}

.filter-button {
  border-color: rgba(17, 20, 17, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 241, 234, 0.9)),
    var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 26px rgba(17, 20, 17, 0.05);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: rgba(17, 20, 17, 0.9);
  background:
    linear-gradient(135deg, rgba(196, 163, 90, 0.14), rgba(17, 20, 17, 0)),
    var(--ink);
  box-shadow: 0 16px 38px rgba(17, 20, 17, 0.14);
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .lookbook {
    grid-template-columns: 1fr;
  }

  .lookbook-film {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .nav-actions .search-mobile-button {
    display: inline-grid;
  }

  .nav-links {
    border-color: rgba(196, 163, 90, 0.18);
    border-radius: 28px;
    background:
      linear-gradient(160deg, rgba(252, 250, 245, 0.98), rgba(239, 235, 226, 0.96)),
      var(--paper);
    box-shadow: 0 30px 80px rgba(17, 20, 17, 0.18);
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(17, 20, 17, 0.08);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(232, 229, 220, 0.54)),
      rgba(17, 20, 17, 0.035);
  }

  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    border-width: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown.open:hover .nav-dropdown-menu,
  .nav-dropdown.open:focus-within .nav-dropdown-menu {
    max-height: 380px;
    margin: 8px 0 4px;
    padding: 10px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    gap: 8px;
    border-radius: 20px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 232, 222, 0.74)),
      rgba(255, 255, 255, 0.86);
  }

  .nav-dropdown-menu a {
    min-height: 48px;
    justify-content: center;
    border-radius: 14px;
    text-align: center;
  }

  .contact-page .contact-classic-title {
    max-width: 9ch;
  }

  .lookbook-film {
    min-height: 440px;
  }

  .lookbook-film-overlay {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }

  .lookbook-copy {
    padding: 38px 24px 46px;
  }

  .lookbook-copy::before {
    inset: 14px;
  }

  .filter-button {
    min-height: 44px;
    padding: 9px 16px;
  }
}

@media (max-width: 520px) {
  .lookbook-film {
    min-height: 360px;
  }

  .lookbook-film-overlay {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .nav-dropdown-menu {
    grid-template-columns: 1fr;
  }
}

/* Rounded editorial polish */
.brand-intro-panel,
.brand-intro-notice-panel,
.brand-intro-notice-panel.electric-card {
  overflow: hidden;
  border-radius: 24px;
  clip-path: inset(0 round 24px);
  isolation: isolate;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(216, 196, 157, 0.24);
}

.brand-intro-notice-panel.electric-card::before,
.brand-intro-notice-panel.electric-card::after,
.electric-card::before,
.electric-card::after {
  inset: 1px;
  border-radius: 23px;
  clip-path: inset(0 round 23px);
  overflow: hidden;
  pointer-events: none;
}

.brand-intro-notice-panel.electric-card::after {
  opacity: 0.42;
  background:
    radial-gradient(circle at 84% 12%, rgba(120, 236, 220, 0.26), transparent 20%),
    linear-gradient(135deg, transparent 0 42%, rgba(216, 196, 157, 0.34) 49%, transparent 56%),
    linear-gradient(315deg, transparent 0 44%, rgba(120, 236, 220, 0.22) 50%, transparent 57%);
}

.brand-intro-carousel,
.brand-intro-notice-carousel {
  overflow: hidden;
  border-radius: 22px 0 0 22px;
}

.brand-intro-carousel img,
.brand-intro-notice-carousel img {
  border-radius: inherit;
}

.brand-intro-close {
  top: 16px;
  right: 16px;
  border-radius: 999px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lookbook {
  margin: clamp(14px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(216, 196, 157, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 14%, rgba(216, 196, 157, 0.11), transparent 30%),
    linear-gradient(135deg, #092f26, #0e1210 58%, #171510);
  box-shadow: 0 30px 80px rgba(17, 20, 17, 0.14);
}

.lookbook-editorial {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
  isolation: isolate;
  background:
    radial-gradient(circle at 58% 40%, rgba(216, 196, 157, 0.1), transparent 34%),
    #0d1110;
}

.lookbook-editorial-main {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: contrast(1.02) saturate(0.9) brightness(0.84);
  transform: scale(1.012);
}

.lookbook-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 47, 38, 0.34), rgba(7, 47, 38, 0.06) 42%, rgba(12, 15, 13, 0.2)),
    radial-gradient(circle at 18% 18%, rgba(216, 196, 157, 0.13), transparent 28%);
}

.lookbook-editorial::after {
  content: "";
  position: absolute;
  inset: 34px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(216, 196, 157, 0.22);
  border-radius: 22px;
  box-shadow: inset 0 0 70px rgba(216, 196, 157, 0.04);
}

.lookbook-copy {
  border-radius: 0 30px 30px 0;
}

.lookbook-copy::before {
  border-radius: 22px;
}

.social-band {
  position: relative;
  margin: clamp(14px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(216, 196, 157, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 196, 157, 0.2), transparent 28%),
    radial-gradient(circle at 86% 26%, rgba(20, 96, 78, 0.48), transparent 28%),
    linear-gradient(135deg, #062f26 0%, #0e1713 56%, #1f1a12 100%);
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(17, 20, 17, 0.16);
}

.social-band::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(216, 196, 157, 0.12) 48%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 48px);
  opacity: 0.7;
}

.social-band > * {
  position: relative;
  z-index: 1;
}

.social-band h2 {
  color: var(--paper);
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
}

.social-band .eyebrow {
  color: rgba(216, 196, 157, 0.82);
}

.social-copy {
  padding: clamp(20px, 3vw, 34px);
  border-left: 1px solid rgba(216, 196, 157, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-copy p {
  color: rgba(250, 247, 239, 0.74);
}

.social-copy strong {
  color: #d8c49d;
}

.social-actions .social-icon-link,
.social-band .social-icon-link {
  border-color: rgba(216, 196, 157, 0.32);
  border-radius: 999px;
  background: rgba(250, 247, 239, 0.08);
  color: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.12);
}

.social-actions .social-icon-link:hover,
.social-actions .social-icon-link:focus-visible,
.social-band .social-icon-link:hover,
.social-band .social-icon-link:focus-visible {
  border-color: rgba(216, 196, 157, 0.64);
  background: rgba(216, 196, 157, 0.18);
  transform: translateY(-1px);
}

.site-header,
.nav-links,
.nav-dropdown-trigger,
.nav-dropdown-menu,
.nav-dropdown-menu a,
.search-control,
.search-results,
.product-card,
.product-card-media,
.product-detail-main,
.product-detail-gallery,
.image-viewer-panel,
.cart-shell,
.cart-summary,
.cart-empty,
.contact-panel,
.policy-modal-card,
.cookie-banner,
.footer-social-card,
.category-feature-card,
.category-hero-visual,
.filter-button,
.button,
.icon-button {
  border-radius: 18px;
}

.button,
.filter-button,
.icon-button,
.social-icon-link,
.language-button,
.search-control,
.nav-dropdown-trigger {
  border-radius: 999px;
}

.product-card-media,
.product-card-media img,
.product-detail-main,
.product-detail-main img,
.image-viewer-panel,
.search-results {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .lookbook {
    margin: 16px;
    border-radius: 26px;
  }

  .lookbook-editorial {
    min-height: 560px;
    border-radius: 26px 26px 0 0;
  }

  .lookbook-copy {
    border-radius: 0 0 26px 26px;
  }

  .social-band {
    margin: 16px;
    border-radius: 26px;
  }
}

@media (max-width: 760px) {
  .brand-intro-panel,
  .brand-intro-notice-panel,
  .brand-intro-notice-panel.electric-card {
    border-radius: 22px;
    clip-path: inset(0 round 22px);
  }

  .brand-intro-notice-panel.electric-card::before,
  .brand-intro-notice-panel.electric-card::after,
  .electric-card::before,
  .electric-card::after {
    border-radius: 21px;
    clip-path: inset(0 round 21px);
  }

  .brand-intro-carousel,
  .brand-intro-notice-carousel {
    border-radius: 22px 22px 0 0;
  }

  .lookbook {
    margin: 12px;
    border-radius: 22px;
  }

  .lookbook-editorial {
    min-height: 430px;
    border-radius: 22px 22px 0 0;
  }

  .lookbook-editorial-main {
    object-position: 70% center;
  }

  .lookbook-editorial::after {
    inset: 16px;
    border-radius: 16px;
  }

  .lookbook-film-overlay {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }

  .social-band {
    margin: 12px;
    border-radius: 22px;
  }

  .social-copy {
    border-left: 0;
    border-radius: 18px;
  }

  .site-header,
  .nav-links,
  .nav-dropdown-menu,
  .product-card,
  .cart-shell,
  .cart-summary,
  .cart-empty,
  .contact-panel,
  .policy-modal-card,
  .cookie-banner {
    border-radius: 22px;
  }
}
