:root {
  --font-main: "Figtree", Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/figtree-300.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/figtree-400.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/figtree-500.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/figtree-600.woff2") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/figtree-700.woff2") format("woff2");
}

:root {
  --ink: #24201d;
  --muted: #7c7068;
  --line: #e9ded2;
  --paper: #ffffff;
  --soft: #f8f3ed;
  --cream: #fbf7ef;
  --ivory: #fffaf2;
  --beige: #efe2d3;
  --blush: #ead0ca;
  --charcoal: #24201d;
  --teal: #24201d;
  --teal-dark: #171310;
  --teal-soft: #f3e8dd;
  --gold: #c89a4b;
  --gold-dark: #9b7234;
  --clay: #8f6f61;
  --sage: #7c7068;
  --plum: #6f4f4d;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(36, 32, 29, 0.14);
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-main);
  font-size: 14px;
  overflow-x: clip;
}

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

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

button,
input {
  font: inherit;
}

.announcement {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-areas:
    "menu brand actions"
    "nav nav nav";
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0 22px;
  min-height: 118px;
  padding: 38px 24px 0;
  color: var(--white);
  background: linear-gradient(rgba(13, 45, 57, 0.46), rgba(13, 45, 57, 0));
  border-bottom: 0;
  backdrop-filter: none;
  transition: background 280ms ease, color 280ms ease, box-shadow 280ms ease, min-height 280ms ease, padding 280ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(24, 65, 82, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 12px;
}

.header-left {
  grid-area: menu;
  display: flex;
  justify-self: start;
  gap: 2px;
}

.brand-logo {
  width: 190px;
  max-width: 44vw;
  height: 72px;
  object-fit: contain;
  filter: none;
  transition: opacity 240ms ease, transform 280ms var(--ease-luxe);
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--font-main);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-name {
  font-family: var(--font-main);
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 0;
  min-height: 46px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-item.has-mega {
  position: static;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 10px;
  color: var(--white);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  transition: color 240ms ease, text-shadow 240ms ease, transform 240ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-highlight > a {
  color: var(--gold);
}

.nav-arrow {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  padding: 13px 0;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(24, 65, 82, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 220ms var(--ease-luxe), transform 220ms var(--ease-luxe), visibility 220ms ease;
  visibility: hidden;
}

.nav-mega {
  left: 50%;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 26px;
  width: min(1000px, calc(100vw - 24px));
  padding: 30px 34px;
  text-transform: none;
}

.nav-mega-new {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  width: min(1120px, calc(100vw - 48px));
}

.nav-mega-new .mega-tiles {
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: end;
}

.nav-mega-new .mega-tile {
  min-height: 300px !important;
}

.nav-mega-new .mega-tile span {
  margin: 0 0 4px;
  font-size: 19px;
  line-height: 1.18;
}

.nav-mega-new .mega-tile small {
  font-size: 14px;
  line-height: 1.2;
}

.nav-dropdown a {
  min-height: 0;
  padding: 9px 22px;
  color: #496166;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  text-shadow: none;
  white-space: nowrap;
}

.mega-links {
  display: grid;
  align-content: start;
}

.mega-links h3 {
  margin: 0 0 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-links a {
  display: block;
  padding: 9px 0;
  color: #74878a;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
}

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

.nav-mega-ready {
  grid-template-columns: 360px 234px;
  justify-content: center;
  width: min(800px, calc(100vw - 24px));
}

.nav-mega-ready .mega-links a {
  font-size: 17px;
}

.mega-tiles-single {
  grid-template-columns: 234px;
}

.mega-tiles-single .mega-tile {
  min-height: 306px !important;
}

.nav-mega-separates {
  grid-template-columns: 360px 364px;
  width: min(820px, calc(100vw - 24px));
}

.nav-mega-separates .mega-tiles-single {
  grid-template-columns: 364px;
}

.nav-mega-separates .mega-tile {
  min-height: 544px !important;
}

.nav-mega-duo,
.nav-mega-essentials {
  grid-template-columns: 276px minmax(0, 1fr);
  width: min(930px, calc(100vw - 24px));
}

.mega-tiles-duo {
  grid-template-columns: repeat(2, minmax(0, 276px));
}

.mega-tiles-duo .mega-tile {
  min-height: 320px !important;
}

.mega-tile {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  min-height: 282px !important;
  overflow: hidden;
  place-items: center;
  padding: 0 !important;
  color: #ffffff !important;
  text-align: center;
  text-decoration: none;
  text-shadow: none !important;
}

.mega-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(24, 65, 82, 0.04), rgba(13, 45, 57, 0.5));
  transition: background 260ms ease;
}

.mega-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-luxe), filter 260ms ease;
}

.mega-tile span,
.mega-tile small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 90%;
  color: #ffffff;
  white-space: normal;
}

.mega-tile span {
  grid-row: 2;
  align-self: end;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
}

.mega-tile small {
  grid-row: 3;
  align-self: start;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
}

.mega-tile:hover img {
  filter: saturate(1.04);
  transform: scale(1.06);
}

.mega-tile:hover::after {
  background: linear-gradient(180deg, rgba(215, 154, 43, 0.08), rgba(13, 45, 57, 0.62));
}

.nav-dropdown a:hover {
  color: var(--gold);
}

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

.site-header.is-scrolled .desktop-nav {
  border-top-color: var(--line);
}

.site-header.is-scrolled .desktop-nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header.is-scrolled .nav-highlight > a,
.site-header.is-scrolled .nav-dropdown a:hover {
  color: var(--gold);
}

.header-actions {
  grid-area: actions;
  position: relative;
  display: flex;
  justify-content: end;
  gap: 4px;
}

.header-preview {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  pointer-events: none;
}

.preview-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-height: min(520px, calc(100vh - 130px));
  padding: 18px;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms var(--ease-luxe), transform 220ms var(--ease-luxe);
}

.preview-cart {
  right: 0;
}

.preview-wishlist {
  right: 46px;
}

.header-actions:has(.counter:first-child:hover) .preview-wishlist,
.header-actions:has(.counter:first-child:focus-within) .preview-wishlist,
.preview-wishlist:hover,
.header-actions:has(.counter:last-child:hover) .preview-cart,
.header-actions:has(.counter:last-child:focus-within) .preview-cart,
.preview-cart:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.preview-panel h3 {
  margin: 0 0 12px;
  color: #184152;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-preview-list {
  display: grid;
  gap: 12px;
}

.header-preview-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.header-preview-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--teal);
  text-decoration: none;
}

.header-preview-item img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  background: var(--teal-soft);
}

.header-preview-item b,
.header-preview-item small {
  display: block;
}

.header-preview-item b {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-preview-item small {
  color: var(--muted);
  font-size: 12px;
}

.preview-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 13px;
}

.preview-link {
  display: grid;
  min-height: 38px;
  margin-top: 14px;
  place-items: center;
  background: var(--gold);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1366px) {
  .desktop-nav {
    font-size: 12px;
  }

  .desktop-nav a {
    padding-right: 7px;
    padding-left: 7px;
  }

  .nav-mega {
    width: min(920px, calc(100vw - 18px));
    gap: 18px;
    padding: 24px;
  }

  .nav-mega-new {
    grid-template-columns: 230px minmax(0, 1fr);
    width: min(960px, calc(100vw - 28px));
  }

  .mega-tiles {
    gap: 18px;
  }

  .nav-mega-new .mega-tiles {
    grid-template-columns: repeat(3, minmax(0, 220px));
  }

  .mega-tile {
    min-height: 240px !important;
  }

  .nav-mega-new .mega-tile {
    min-height: 258px !important;
  }

  .nav-mega-new .mega-tile span {
    font-size: 17px;
  }

  .nav-mega-new .mega-tile small {
    font-size: 13px;
  }

  .nav-mega-ready {
    grid-template-columns: 320px 220px;
    width: min(720px, calc(100vw - 18px));
  }

  .mega-tiles-single {
    grid-template-columns: 220px;
  }

  .mega-tiles-single .mega-tile {
    min-height: 280px !important;
  }

  .nav-mega-separates {
    grid-template-columns: 300px 300px;
    width: min(690px, calc(100vw - 18px));
  }

  .nav-mega-separates .mega-tiles-single {
    grid-template-columns: 300px;
  }

  .nav-mega-separates .mega-tile {
    min-height: 430px !important;
  }

  .nav-mega-duo,
  .nav-mega-essentials {
    grid-template-columns: 230px minmax(0, 1fr);
    width: min(820px, calc(100vw - 18px));
  }

  .mega-tiles-duo {
    grid-template-columns: repeat(2, minmax(0, 230px));
  }

  .mega-tiles-duo .mega-tile {
    min-height: 280px !important;
  }
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  grid-area: menu;
  justify-self: start;
  display: none;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.counter span {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  transition: transform 220ms var(--ease-luxe), background 220ms ease;
}

.counter.has-update span {
  animation: countPop 420ms var(--ease-luxe);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 1440 / 710;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.035);
  transition: transform 6500ms ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-copy {
  display: none;
}

.hero-copy p,
.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 30px;
  font-family: var(--font-main);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.98;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-luxe);
}

.button:hover {
  box-shadow: 0 12px 24px rgba(24, 65, 82, 0.16);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-light {
  color: var(--white);
}

.button-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: var(--teal);
}

.button-dark:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.hero-dots {
  position: absolute;
  right: auto;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms var(--ease-luxe), width 220ms var(--ease-luxe);
}

.hero-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.arrival-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
  padding: 56px clamp(32px, 7.5vw, 145px) 78px;
  background: var(--cream);
}

.arrival-feature > * {
  min-width: 0;
}

.arrival-copy {
  align-self: center;
}

.arrival-copy h2 {
  margin: 0 0 22px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.arrival-copy p {
  max-width: 480px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.arrival-button {
  display: inline-grid;
  min-width: 168px;
  min-height: 44px;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease-luxe);
}

.arrival-button:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.arrival-products {
  position: relative;
  min-width: 0;
}

.arrival-window {
  overflow: hidden;
  min-width: 0;
  contain: layout paint;
}

.arrival-track {
  display: flex;
  gap: 38px;
  min-width: 0;
  transition: transform 420ms ease;
  will-change: transform;
}

.arrival-card {
  flex: 0 0 calc((100% - 76px) / 3);
  min-width: 0;
  text-align: center;
  transition: transform 260ms var(--ease-luxe);
}

.arrival-card:hover {
  transform: translateY(-4px);
}

.arrival-media {
  position: relative;
  aspect-ratio: 0.665;
  overflow: hidden;
  background: #f3f3f3;
}

.arrival-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-luxe), filter 260ms ease;
}

.arrival-card:hover .arrival-media img {
  filter: saturate(1.03);
  transform: scale(1.035);
}

.arrival-bag {
  position: absolute;
  top: 20px;
  right: 18px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal);
  cursor: pointer;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-luxe);
}

.arrival-bag:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 65, 82, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.arrival-bag svg,
.arrival-arrow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.arrival-card h3 {
  margin: 20px 0 4px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.arrival-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.arrival-card span {
  color: var(--gold-dark);
  font-size: 21px;
  letter-spacing: 0.1em;
}

.arrival-arrow {
  position: absolute;
  top: 41%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 54px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease-luxe);
}

.arrival-arrow:hover,
.mini-arrow:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--gold);
  transform: translateX(2px);
}

.arrival-arrow.prev:hover,
.mini-arrow.prev:hover {
  transform: translateX(-2px);
}

.arrival-arrow.prev {
  left: 18px;
}

.arrival-arrow.next {
  right: 18px;
}

.section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 44px 32px;
}

.collection-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--teal-soft);
}

.feature-image {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-luxe), filter 320ms ease;
}

.feature-image:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.feature-image span {
  display: none;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 90px);
  background: linear-gradient(135deg, #ffffff, var(--teal-soft));
}

.feature-copy p {
  max-width: 560px;
  margin: 0 0 34px;
  color: #526b70;
  font-size: 14px;
  line-height: 1.7;
}

.mini-products {
  position: relative;
  max-width: 560px;
  overflow: hidden;
}

.mini-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.mini-products article {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  text-align: center;
}

.mini-product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mini-products img {
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 520ms var(--ease-luxe);
}

.mini-products span {
  display: block;
  margin-top: 9px;
  color: var(--teal);
  font-size: 12px;
}

.mini-product-actions {
  position: absolute;
  right: 10px;
  bottom: 34px;
  left: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.mini-product-card:hover img {
  opacity: 0.86;
  transform: scale(1.03);
}

.mini-product-card:hover .mini-product-actions,
.mini-product-card:focus-within .mini-product-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mini-product-actions button,
.mini-product-actions a {
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  padding: 9px 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease-luxe);
}

.mini-product-actions button:hover,
.mini-product-actions a:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-1px);
}

.mini-arrow {
  position: absolute;
  right: 0;
  top: 42%;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 48px;
  place-items: center;
  border: 0;
  background: rgba(237, 244, 242, 0.9);
  color: var(--teal);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease-luxe);
}

.mini-arrow.prev {
  right: auto;
  left: 0;
}

.mini-arrow.prev svg {
  transform: rotate(180deg);
}

.mini-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.section-head {
  display: grid;
  place-items: center;
  gap: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.section-head h2,
.feature-band h2,
.newsletter h2,
.editorial-grid h2 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head > a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-showcase,
.collection-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 18px;
}

.collection-tile {
  position: relative;
  aspect-ratio: 3 / 4.05;
  min-height: 0;
  overflow: hidden;
  background: var(--teal-soft);
}

.collection-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-luxe), filter 260ms ease;
}

.collection-tile:hover img {
  filter: saturate(1.04);
  transform: scale(1.05);
}

.collection-tile span {
  position: absolute;
  left: 50%;
  bottom: 16px;
  min-width: 150px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease-luxe);
}

.collection-tile:hover span {
  background: var(--gold);
  color: #ffffff;
  transform: translate(-50%, -3px);
}

.category-showcase.wide {
  grid-template-columns: repeat(2, 1fr);
}

.category-showcase.wide .collection-tile {
  aspect-ratio: 16 / 9.7;
}

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

.product-card {
  position: relative;
  transition: transform 260ms var(--ease-luxe);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4.08;
  overflow: hidden;
  background: var(--soft);
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-luxe), filter 260ms ease;
}

.product-card:hover .product-media img {
  filter: saturate(1.03);
  transform: scale(1.025);
}

.product-tools {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition: 240ms ease;
}

.product-card:hover .product-tools {
  opacity: 1;
  transform: translateY(0);
}

.product-tools button {
  width: 100%;
  height: 40px;
  border: 0;
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.product-tools button:hover {
  background: var(--gold);
  color: #ffffff;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  background: rgba(251, 250, 246, 0.96);
  border: 1px solid rgba(215, 154, 43, 0.45);
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-info {
  padding: 14px 4px 0;
  text-align: center;
}

.product-info h3 {
  margin: 0 0 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
}

.product-info p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
}

.price {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: center;
  max-width: 1480px;
  margin: 34px auto 0;
  padding: 0 36px 54px;
  background: var(--paper);
}

.feature-band > div {
  padding: 42px 44px;
  border: 1px solid var(--line);
  border-right: 0;
}

.feature-band p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-band img {
  aspect-ratio: 16 / 10;
  max-height: none;
  object-fit: cover;
}

.campaign-banner {
  max-width: 1480px;
  margin: 24px auto 0;
  padding: 0 32px 34px;
}

.campaign-banner img {
  width: 100%;
  aspect-ratio: 1440 / 565;
  object-fit: cover;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.editorial-grid article {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.editorial-grid img {
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.editorial-grid article > div {
  position: absolute;
  inset: auto 26px 28px;
  color: var(--white);
}

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

.tabs button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tabs button.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

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

.compact .product-info h3 {
  font-size: 17px;
}

.spotted {
  max-width: 1760px;
  padding-top: 46px;
  padding-bottom: 34px;
}

.spotted h2 {
  margin: 0 0 34px;
  color: #737373;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.spotted-slider {
  position: relative;
}

.spotted-window {
  overflow: hidden;
}

.spotted-track {
  display: flex;
  gap: 36px;
  transition: transform 420ms ease;
  will-change: transform;
}

.spotted-track article {
  flex: 0 0 calc((100% - 108px) / 4);
  position: relative;
  min-width: 0;
  background: var(--paper);
  text-align: center;
}

.spotted-track img {
  width: 100%;
  aspect-ratio: 0.67;
  object-fit: cover;
}

.spotted-track span {
  display: block;
  padding: 10px 0 0;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  text-align: center;
}

.spotted-arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 56px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
}

.spotted-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.spotted-arrow.prev {
  left: -18px;
}

.spotted-arrow.next {
  right: -18px;
}

.newsletter {
  display: grid;
  place-items: center;
  padding: 70px 24px;
  text-align: center;
  background: var(--soft);
  color: var(--ink);
}

.newsletter form {
  display: flex;
  width: min(560px, 100%);
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.newsletter input,
.search-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  outline: 0;
}

.form-note {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px 38px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, var(--cream));
  color: var(--ink);
}

.footer p,
.footer a {
  display: block;
  max-width: 360px;
  margin: 9px 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer .brand-logo {
  filter: none;
}

.footer .brand-mark {
  border-color: var(--white);
}

.best-sellers {
  padding-top: 34px;
  padding-bottom: 72px;
}

.best-sellers .section-head {
  margin-bottom: 28px;
}

.best-sellers .eyebrow,
.best-sellers .tabs,
.best-sellers .section-head > a {
  display: none;
}

.best-sellers .section-head h2 {
  color: #7a7a7a;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
}

.best-sellers .compact {
  max-width: 1240px;
  margin: 0 auto;
}

.best-sellers .product-media {
  aspect-ratio: 0.68;
}

.best-sellers .product-info h3 {
  font-size: 13px;
}

.best-sellers .product-info p,
.best-sellers .price {
  font-size: 11px;
}

.newsletter {
  display: none;
}

.footer {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 60px;
  row-gap: 0;
  align-items: start;
  max-width: 1612px;
  margin: 0 auto;
  padding: 64px 0 118px;
  border-top: 1px solid rgba(24, 65, 82, 0.25);
  color: var(--teal);
}

.footer-logo {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0 0 66px;
}

.footer-logo img {
  width: 250px;
  height: 150px;
  max-width: 46vw;
  object-fit: contain;
  display: block;
}

.footer p,
.footer a {
  max-width: 330px;
  margin: 0 0 16px;
  color: #60767b;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer h3 {
  margin: 0 0 22px;
  color: var(--teal);
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin-top: 34px;
  border-bottom: 1px solid rgba(24, 65, 82, 0.45);
}

.footer-newsletter input {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--teal);
  background: transparent;
  font-size: 13px;
}

.footer-newsletter button {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  font-size: 0;
  cursor: pointer;
}

.footer-newsletter button::before {
  content: "\2192";
  font-size: 24px;
  line-height: 1;
}

.quick-view {
  width: min(900px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  box-shadow: var(--shadow);
}

.quick-view::backdrop {
  background: rgba(23, 20, 18, 0.5);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--white);
}

.modal-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-product img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-details {
  padding: 46px 36px;
}

.modal-details h2 {
  margin: 0 0 10px;
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 400;
}

.modal-details p {
  color: var(--muted);
  line-height: 1.7;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  padding: 90px clamp(20px, 8vw, 120px);
  background: rgba(255, 253, 249, 0.98);
}

.search-panel.open {
  display: block;
}

.search-panel form {
  border-bottom: 1px solid var(--line);
}

.search-panel input {
  background: transparent;
  font-family: var(--font-main);
  font-size: clamp(28px, 5vw, 62px);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.plain-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(24, 65, 82, 0.08);
}

.plain-header .brand-logo {
  filter: none;
}

.plain-header .desktop-nav {
  border-top-color: var(--line);
}

.plain-header .desktop-nav a {
  color: var(--ink);
  text-shadow: none;
}

.plain-header .nav-highlight > a,
.plain-header .nav-dropdown a:hover {
  color: var(--gold);
}

.plain-header .nav-dropdown a {
  color: #496166;
}

.page-main {
  padding-top: 138px;
}

.page-hero {
  max-width: 1480px;
  margin: 0 auto;
  padding: 54px 32px 38px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #526b70;
  line-height: 1.7;
}

.shop-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 42px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px 72px;
}

.shop-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
}

.shop-sidebar button,
.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f7378;
  cursor: pointer;
  text-align: left;
}

.shop-sidebar button {
  min-height: 34px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-sidebar button.active {
  color: var(--gold-dark);
  font-weight: 700;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--muted);
}

.shop-toolbar select,
.product-detail-copy select,
.product-detail-copy input,
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal);
}

.product-detail {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 28px 74px;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  gap: 28px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
}

.product-thumbs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.product-thumbs button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
}

.product-thumbs button.active {
  opacity: 1;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  background: var(--teal-soft);
}

.product-detail-media {
  position: relative;
  overflow: hidden;
  background: var(--teal-soft);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  background: var(--teal-soft);
}

.gallery-arrow,
.gallery-expand,
.related-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal);
  cursor: pointer;
}

.gallery-arrow {
  top: 50%;
  width: 42px;
  height: 54px;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-expand {
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  text-decoration: none;
}

.gallery-arrow svg,
.gallery-expand svg,
.related-arrow svg,
.product-heart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--teal);
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.product-sku {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-heart {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
}

.product-price {
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.product-tags b {
  display: inline-grid;
  min-height: 29px;
  place-items: center;
  padding: 0 10px;
  background: var(--teal);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
}

.product-size-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.product-size-row a {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-decoration: underline;
}

.size-options {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body);
  font-weight: 400;
}

.size-options button {
  min-width: 26px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #888888;
  cursor: pointer;
  font-size: 12px;
}

.size-options button.active {
  background: var(--gold);
  color: #ffffff;
}

.purchase-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.product-qty {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  min-height: 36px;
  border: 1px solid var(--line);
}

.product-qty button,
.product-qty input {
  border: 0;
  background: #ffffff;
  color: var(--teal);
  text-align: center;
}

.product-qty button {
  cursor: pointer;
  font-size: 20px;
}

.product-qty input {
  min-height: 0;
  padding: 0;
  font-weight: 600;
}

.product-cart-button,
.buy-now-button {
  min-height: 36px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
}

.product-cart-button {
  border-color: var(--line);
}

.buy-now-button {
  width: 100%;
  background: var(--teal);
}

.whatsapp-button {
  display: inline-grid;
  width: fit-content;
  min-height: 30px;
  place-items: center;
  padding: 0 30px;
  background: #050505;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.delivery-note {
  display: grid;
  gap: 6px;
  margin: 2px 0 12px;
  color: #179129;
  font-size: 12px;
  line-height: 1.45;
}

.delivery-note span {
  padding-left: 24px;
}

.product-accordions {
  border-top: 1px solid #cccccc;
}

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.product-accordions details[open] summary::after {
  transform: rotate(90deg);
}

.product-accordions p,
.product-accordions li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-accordions ul {
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}

.product-notes {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-products {
  padding-top: 78px;
}

.related-products h2 {
  margin: 0 0 28px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.related-wrap {
  position: relative;
  overflow: hidden;
}

.related-track {
  display: flex;
  grid-template-columns: none;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.related-track::-webkit-scrollbar {
  display: none;
}

.related-track .product-card {
  flex: 0 0 calc((100% - 84px) / 4);
}

.related-arrow {
  top: 38%;
  width: 44px;
  height: 58px;
  transform: translateY(-50%);
}

.related-prev {
  left: 0;
}

.related-next {
  right: 0;
}

.cart-layout,
.checkout-layout,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 72px;
}

.cart-list {
  display: grid;
  gap: 18px;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-product-image {
  display: block;
}

.cart-product-image img,
.cart-row img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cart-product-info {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.cart-row h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-row p,
.cart-row span {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
}

.cart-row > div:not(.qty-control) {
  min-width: 0;
}

.cart-row > strong {
  white-space: nowrap;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  border: 1px solid var(--line);
  text-align: center;
}

.qty-control button {
  height: 34px;
  border: 0;
  background: #ffffff;
  cursor: pointer;
}

.order-summary,
.form-panel,
.admin-card,
.empty-state {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(24, 65, 82, 0.05);
}

.order-summary h2,
.form-panel h2,
.admin-card h2,
.empty-state h2 {
  margin: 0 0 20px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.order-summary p,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #526b70;
}

.order-summary .cart-row {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px 20px;
  align-items: start;
}

.order-summary .cart-product-image {
  grid-row: span 4;
}

.order-summary .cart-row img {
  width: 120px;
  height: 160px;
}

.order-summary .qty-control,
.order-summary .cart-row > strong,
.order-summary .cart-row > .text-button {
  grid-column: 2;
}

.order-summary .qty-control {
  width: fit-content;
}

.order-summary .cart-row > .text-button {
  justify-self: start;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 72px;
  color: #526b70;
  line-height: 1.8;
}

.policy-copy h2 {
  margin: 34px 0 10px;
  color: var(--teal);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-body {
  background: var(--cream);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(24, 65, 82, 0.06);
}

.admin-brand {
  grid-column: 2;
  justify-self: center;
}

.admin-brand img {
  width: 160px;
  height: 92px;
  object-fit: contain;
}

.admin-header nav {
  display: flex;
  justify-self: end;
  gap: 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-main {
  padding: 44px 32px 72px;
}

.admin-hero {
  max-width: 1480px;
  margin: 0 auto 28px;
}

.admin-hero p {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-hero h1 {
  margin: 0 0 8px;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.admin-hero span {
  color: #526b70;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1480px;
  margin: 0 auto;
}

.admin-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admin-stats article,
.admin-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(24, 65, 82, 0.06);
}

.admin-stats article {
  padding: 22px;
}

.admin-stats span,
.admin-card-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 10px;
  color: var(--gold-dark);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.admin-card {
  padding: 24px;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-card h2,
.admin-card-head h2 {
  margin: 0;
  color: var(--teal);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.admin-table-wrap {
  max-height: 430px;
  overflow: auto;
  border: 1px solid var(--line);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #ffffff;
}

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: #526b70;
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  padding: 5px 8px;
  background: rgba(215, 154, 43, 0.14);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-empty {
  display: grid;
  min-height: 160px;
  place-items: center;
  border: 1px dashed rgba(24, 65, 82, 0.25);
  color: var(--muted);
  text-align: center;
}

.admin-login {
  grid-column: 1 / -1;
  width: min(460px, 100%);
  margin: 0 auto;
  background: #ffffff;
}

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

.admin-product-form label {
  display: grid;
  gap: 7px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-product-form input,
.admin-product-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.admin-product-form textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.admin-product-form [data-menu-json] {
  min-height: 420px;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.45;
}

.admin-field-wide,
.admin-form-actions,
.admin-product-form .form-note {
  grid-column: 1 / -1;
}

.admin-check {
  display: flex !important;
  grid-column: span 1;
  align-items: center;
  gap: 10px !important;
}

.admin-check input {
  width: 16px;
  min-height: 16px;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-actions button:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.mobile-drawer,
.scrim {
  display: none;
}

@media (max-width: 1180px) {
  .footer {
    column-gap: 48px;
    padding-right: 46px;
    padding-left: 46px;
  }

  .desktop-nav {
    display: none;
  }

  .header-preview {
    display: none;
  }

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

  .header-left {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: center;
  }

  .mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    display: block;
    width: min(360px, 88vw);
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: var(--shadow);
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    transition: clip-path 260ms ease;
  }

  .mobile-drawer.open {
    clip-path: inset(0);
    pointer-events: auto;
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-drawer nav {
    display: grid;
  }

  .mobile-drawer a,
  .mobile-menu-group summary {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .mobile-menu-group summary::-webkit-details-marker {
    display: none;
  }

.mobile-menu-group summary::after {
  content: "+";
  color: var(--gold-dark);
    font-size: 18px;
    font-weight: 400;
  }

  .mobile-menu-group[open] summary::after {
    content: "-";
  }

.mobile-menu-group a {
  display: block;
  padding: 11px 0 11px 18px;
  color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

.mobile-drawer .mobile-highlight {
    color: var(--gold);
  }

  .scrim {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(23, 20, 18, 0.42);
  }

  .scrim.open {
    display: block;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 72px;
    padding: 0 16px;
    gap: 8px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions .counter:first-of-type {
    display: none;
  }

  .arrival-feature {
    grid-template-columns: 1fr;
    padding: 44px 16px 58px;
  }

  .arrival-copy {
    text-align: center;
  }

  .arrival-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .arrival-products {
    width: 100%;
  }

  .arrival-track {
    gap: 16px;
  }

  .arrival-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .category-showcase,
  .collection-strip,
  .product-grid,
  .compact,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotted-track {
    gap: 18px;
  }

  .spotted-track article {
    flex-basis: calc((100% - 18px) / 2);
  }

  .feature-band,
  .collection-feature,
  .editorial-grid,
  .footer,
  .shop-layout,
  .product-shell,
  .cart-layout,
  .checkout-layout,
  .content-grid,
  .admin-grid,
  .modal-product {
    grid-template-columns: 1fr;
  }

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

  .product-gallery {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .related-track .product-card {
    flex-basis: calc((100% - 28px) / 2);
  }

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

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

  .admin-card,
  .admin-wide {
    grid-column: auto;
  }

  .page-main {
    padding-top: 92px;
  }

  .shop-sidebar {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .cart-row {
    grid-template-columns: 76px 1fr;
  }

  .cart-row > strong,
  .cart-row > .text-button,
  .qty-control {
    grid-column: 2;
  }

  .footer {
    padding: 44px 24px 72px;
  }

  .footer-logo {
    margin-bottom: 42px;
  }

  .footer div {
    max-width: 420px;
  }

  .feature-image {
    min-height: 420px;
  }

  .feature-copy {
    padding: 42px 18px;
  }

  .mini-products {
    max-width: none;
  }

  .mini-products article {
    flex-basis: calc((100% - 22px) / 2);
  }

  .section {
    padding: 54px 16px;
  }

  .category-showcase,
  .collection-strip {
    padding-top: 24px;
  }

  .collection-tile {
    min-height: 260px;
  }

  .feature-band {
    padding: 54px 16px;
  }

  .editorial-grid article {
    min-height: 430px;
  }

  .modal-product img {
    min-height: 360px;
  }
}

@media (max-width: 1100px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-row {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px 18px;
    align-items: start;
  }

  .cart-product-image {
    grid-row: span 3;
  }

  .cart-row img {
    width: 120px;
    height: 160px;
  }

  .cart-row .qty-control {
    grid-column: 2;
    width: fit-content;
  }

  .cart-row > strong {
    grid-column: 2;
  }

  .cart-row > .text-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .cart-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px 14px;
  }

  .cart-product-image {
    grid-row: span 3;
  }

  .cart-row img {
    width: 82px;
    height: 110px;
  }

  .cart-row .qty-control {
    grid-template-columns: 30px 34px 30px;
  }

  .order-summary .cart-row {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .order-summary .cart-row img {
    width: 82px;
    height: 110px;
  }
}

@media (max-width: 620px) {
  .announcement {
    padding: 8px 12px;
    font-size: 10px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    right: 22px;
    bottom: 72px;
  }

  .arrival-feature {
    padding-top: 34px;
  }

  .arrival-products {
    width: 100%;
  }

  .arrival-card {
    flex-basis: 100%;
  }

  .arrival-arrow {
    top: 38%;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .product-grid,
  .compact,
  .search-results {
    gap: 22px 12px;
  }

  .spotted-track article {
    flex-basis: 100%;
  }

  .mini-products article {
    flex-basis: 100%;
  }

  .product-gallery {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-thumbs {
    display: flex;
    overflow-x: auto;
  }

  .product-thumbs button {
    flex: 0 0 62px;
  }

  .product-title-row,
  .product-size-row,
  .purchase-row {
    grid-template-columns: 1fr;
  }

  .product-title-row {
    display: grid;
  }

  .product-heart {
    justify-self: start;
  }

  .product-size-row {
    align-items: start;
  }

  .related-track .product-card {
    flex-basis: 82%;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer h3 {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .footer p,
  .footer a {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .footer-newsletter {
    max-width: 100%;
    margin-top: 20px;
  }

  .admin-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .admin-brand,
  .admin-header nav {
    grid-column: auto;
    justify-self: center;
  }

  .admin-main {
    padding: 32px 14px 56px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-product-form {
    grid-template-columns: 1fr;
  }

  .spotted h2 {
    margin-bottom: 24px;
  }

  .category-showcase,
  .collection-strip {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    display: grid;
  }

  .newsletter .button {
    width: 100%;
  }

  .product-tools {
    opacity: 1;
    transform: none;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 1180px) {
  body {
    overflow-x: hidden;
  }

  img,
  video,
  canvas,
  svg {
    max-width: 100%;
  }

  .site-header {
    min-height: 82px;
    padding-top: 10px;
  }

  .brand-logo {
    width: clamp(128px, 30vw, 174px);
    height: 58px;
  }

  .page-main {
    padding-top: 96px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 8px 12px 0;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: clamp(112px, 36vw, 148px);
    height: 52px;
  }

  .hero {
    min-height: min(680px, 100svh);
  }

  .hero-copy {
    right: 16px;
    bottom: 58px;
    left: 16px;
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 58px);
  }

  .hero-copy p,
  .hero-copy span {
    max-width: 92vw;
  }

  .arrival-copy h2,
  .spotted h2,
  .related-products h2,
  .page-hero h1,
  .admin-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .arrival-card h3 {
    font-size: 20px;
  }

  .arrival-card p,
  .arrival-card span {
    font-size: 14px;
  }

  .arrival-bag {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .feature-image {
    min-height: min(420px, 72vw);
  }

  .feature-image span,
  .editorial-grid span {
    font-size: clamp(34px, 9vw, 48px);
  }

  .product-card,
  .arrival-card,
  .mini-products article,
  .spotted-track article {
    min-width: 0;
  }

  .product-media,
  .arrival-media,
  .mini-products img,
  .spotted-track img {
    max-height: none;
  }

  .product-detail-copy,
  .product-accordions,
  .cart-summary,
  .checkout-summary,
  .admin-card {
    min-width: 0;
  }

  .product-size-row,
  .purchase-row {
    gap: 12px;
  }

  .size-options {
    flex-wrap: wrap;
  }

  .whatsapp-button {
    width: 100%;
  }

  .cart-row {
    align-items: start;
  }

  .cart-row img {
    width: 76px;
    height: 100px;
    object-fit: cover;
  }

  .form-grid,
  .checkout-layout,
  .cart-layout {
    gap: 18px;
  }

  .footer {
    row-gap: 28px;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: 42px 1fr 42px;
    gap: 0;
  }

  .header-actions .counter {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 118px;
  }

  .mobile-drawer {
    width: min(330px, 92vw);
    padding: 16px;
  }

  .arrival-feature,
  .section,
  .feature-band,
  .collection-feature,
  .product-detail,
  .shop-layout,
  .cart-layout,
  .checkout-layout,
  .page-hero,
  .content-grid {
    padding-right: 12px;
    padding-left: 12px;
  }

  .product-grid,
  .compact,
  .search-results {
    grid-template-columns: 1fr;
  }

  .product-tools {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 8px;
    opacity: 1;
    transform: none;
  }

  .product-tools button {
    min-width: 0;
    padding: 10px 6px;
  }

  .footer-logo img {
    width: min(170px, 70vw);
  }

  .admin-card,
  .admin-stats article {
    padding: 18px;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    min-height: 560px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    height: 46px;
  }
}

/* Eclat editorial redesign layer */
.site-header {
  min-height: 112px;
  background: linear-gradient(180deg, rgba(23, 19, 16, 0.56), rgba(23, 19, 16, 0));
}

.site-header.is-scrolled,
.plain-header {
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 12px 32px rgba(36, 32, 29, 0.08);
}

.desktop-nav {
  gap: clamp(2px, 0.6vw, 12px);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero {
  min-height: 760px;
  aspect-ratio: auto;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 19, 16, 0.6), rgba(23, 19, 16, 0.18) 48%, rgba(23, 19, 16, 0.1)),
    linear-gradient(180deg, rgba(23, 19, 16, 0.22), rgba(23, 19, 16, 0.08) 45%, rgba(23, 19, 16, 0.42));
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 8vw, 132px);
  bottom: clamp(84px, 14vw, 180px);
  display: none;
  width: min(560px, calc(100vw - 48px));
  color: #ffffff;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy h1,
.editorial-heading h2,
.eclat-edit h2,
.shop-look h2,
.newsletter-luxe h2 {
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 7.4vw, 112px);
}

.hero-copy span {
  display: block;
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 250, 242, 0.12);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 220ms ease, transform 220ms var(--ease-luxe);
}

.hero-arrow:hover {
  background: rgba(255, 250, 242, 0.24);
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.category-editorial {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.editorial-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 34px;
  text-align: center;
}

.editorial-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(36px, 4.6vw, 70px);
  line-height: 1;
}

.category-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--beige);
  color: #ffffff;
}

.category-card-large {
  grid-row: span 2;
  min-height: 798px;
}

.category-card img,
.edit-media img,
.shop-look-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-luxe), filter 280ms ease;
}

.category-card::after {
  display: none;
}

.category-card span,
.category-card small {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.category-card span {
  bottom: 56px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(26px, 2.5vw, 42px);
  line-height: 1;
}

.category-card small {
  bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card:hover img,
.edit-media:hover img,
.shop-look-media:hover img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.arrival-feature {
  max-width: none;
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(78px, 8vw, 124px);
  background: linear-gradient(180deg, var(--ivory), var(--soft));
}

.arrival-copy h2,
.best-sellers .section-head h2,
.spotted h2 {
  color: var(--charcoal);
}

.arrival-card {
  position: relative;
}

.arrival-media,
.product-media a {
  display: block;
  position: relative;
}

.secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .secondary-image,
.arrival-card:hover .secondary-image {
  opacity: 1;
}

.arrival-bag {
  z-index: 2;
}

.product-card {
  background: rgba(255, 250, 242, 0.52);
}

.product-media {
  box-shadow: 0 18px 40px rgba(36, 32, 29, 0.06);
}

.product-tools {
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(10px);
}

.compare-price {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: line-through;
}

.eclat-edit,
.shop-look,
.newsletter-luxe {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 124px) 32px;
}

.eclat-edit {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
  max-width: 1360px;
  padding-top: clamp(56px, 6vw, 86px);
  padding-bottom: clamp(56px, 6vw, 86px);
}

.edit-media {
  aspect-ratio: 16 / 7.8;
  min-height: 360px;
  max-height: 500px;
  overflow: hidden;
}

.edit-copy,
.shop-look-copy {
  max-width: 520px;
}

.edit-copy h2,
.shop-look h2,
.newsletter-luxe h2 {
  margin: 0 0 20px;
  color: var(--charcoal);
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1;
}

.edit-copy h2 {
  max-width: 560px;
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 1.08;
}

.edit-copy p:not(.eyebrow),
.shop-look-copy p,
.newsletter-luxe p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.collection-feature:nth-of-type(odd) {
  background: var(--ivory);
}

.collection-feature:nth-of-type(even) {
  background: var(--soft);
}

.feature-copy {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(234, 208, 202, 0.22));
}

.shop-look {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.15fr);
}

.shop-look-media {
  position: relative;
  aspect-ratio: 16 / 7.8;
  min-height: 420px;
  overflow: hidden;
}

.shop-look-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.look-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(255, 250, 242, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.look-hotspot.active {
  background: var(--charcoal);
}

.shop-look-product article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.shop-look-product img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.shop-look-product h3 {
  margin: 4px 0;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-look-product span,
.shop-look-product p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.spotted-track article {
  position: relative;
  overflow: hidden;
}

.spotted-overlay {
  position: absolute;
  inset: auto 14px 14px;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--charcoal);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms var(--ease-luxe);
}

.spotted-track article:hover .spotted-overlay {
  opacity: 1;
  transform: translateY(0);
}

.spotted-overlay a {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: benefit;
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-benefits article {
  display: grid;
  gap: 6px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  counter-increment: benefit;
}

.brand-benefits article:last-child {
  border-right: 0;
}

.brand-benefits span {
  color: var(--gold-dark);
  font-size: 0;
  letter-spacing: 0.14em;
}

.brand-benefits span::before {
  content: "0" counter(benefit);
  font-size: 12px;
}

.brand-benefits strong {
  color: var(--charcoal);
  text-transform: uppercase;
}

.brand-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.newsletter-luxe {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  margin-top: clamp(42px, 5vw, 78px);
  margin-bottom: clamp(42px, 5vw, 78px);
  background:
    linear-gradient(rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.92)),
    url("assets/Nureh_-_Desktop-542829f7754478.png") center / cover;
}

.newsletter-luxe form {
  display: grid;
  gap: 12px;
}

.newsletter-luxe input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(36, 32, 29, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--charcoal);
}

.footer {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: none;
  padding-right: clamp(24px, 6vw, 110px);
  padding-left: clamp(24px, 6vw, 110px);
  background: #fffaf2;
}

.footer-logo {
  margin-bottom: 46px;
}

.footer-extra p {
  max-width: 260px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 700px;
  }

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

  .category-card-large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 520px;
  }

  .eclat-edit,
  .shop-look,
  .newsletter-luxe {
    grid-template-columns: 1fr;
  }

  .shop-look-media {
    min-height: 520px;
  }

  .edit-media {
    min-height: 420px;
  }

  .brand-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-benefits article:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 768px) {
  .hero {
    min-height: 640px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-copy {
    bottom: 82px;
  }

  .category-editorial-grid,
  .brand-benefits,
  .footer {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card-large {
    grid-column: auto;
    min-height: 420px;
  }

  .brand-benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-benefits article:last-child {
    border-bottom: 0;
  }

  .shop-look-product article {
    grid-template-columns: 86px minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 600px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .category-card,
  .category-card-large,
  .shop-look-media {
    min-height: 360px;
  }

  .edit-media {
    min-height: 290px;
  }

  .eclat-edit,
  .shop-look,
  .newsletter-luxe {
    padding-right: 14px;
    padding-left: 14px;
  }

  .look-hotspot {
    display: none;
  }
}

@keyframes countPop {
  0% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.28);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.toast {
  animation: toastIn 260ms var(--ease-luxe);
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-luxe), transform 760ms var(--ease-luxe);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.is-visible,
.arrival-card.is-visible,
.mini-product-card.is-visible,
.spotted-card.is-visible {
  --reveal-delay: min(calc(var(--reveal-index, 0) * 55ms), 280ms);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .motion-ready .reveal-target {
    opacity: 1;
    transform: none;
  }
}
