:root {
  --ink: #070707;
  --paper: #ffffff;
  --mist: #f6f5f2;
  --line: #d8d2c9;
  --blush: #e7b8bf;
  --rose: #d99aa8;
  --sage: #8ea680;
  --clay: #b9784e;
  --midnight: #1d2632;
  --blue: #c4d8ed;
  --stone: #d8cabb;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 152px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

.announcement {
  min-height: 38px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink);
  letter-spacing: 1.6px;
  font-size: 12px;
}

.announcement p {
  margin: 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eeeeee;
}

.header-top {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
}

.header-utility,
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-utility {
  min-width: 0;
}

.header-actions {
  justify-content: flex-end;
}

.header-actions a,
.region-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 1px;
}

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

.cart-count {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 16px;
  height: 16px;
  display: none;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1;
}

.cart-count.has-items {
  display: grid;
}

.site-search {
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  background: transparent;
  transition: width 260ms ease, border-color 220ms ease, background 220ms ease;
}

.site-search.is-open {
  width: min(34vw, 330px);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
}

.site-search .search-toggle {
  flex: 0 0 30px;
}

.site-search-input {
  width: 0;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  opacity: 0;
  letter-spacing: 1px;
  transition: width 220ms ease, opacity 180ms ease, padding 220ms ease;
}

.site-search-input::placeholder {
  color: #6e6a65;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.6px;
}

.site-search.is-open .site-search-input {
  width: 100%;
  padding: 0 34px 0 8px;
  opacity: 1;
}

.search-close {
  position: absolute;
  right: 2px;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.search-close .lucide-icon {
  width: 16px;
  height: 16px;
}

.site-search.is-open .search-close {
  opacity: 1;
  pointer-events: auto;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: min(86vw, 330px);
  display: none;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(20, 18, 16, 0.12);
}

.site-search.is-open.has-results .search-results {
  display: block;
}

.search-result,
.search-empty {
  width: 100%;
  display: block;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
  letter-spacing: 1.4px;
  font-size: 12px;
  text-transform: uppercase;
}

.search-result:last-child,
.search-empty:last-child {
  border-bottom: 0;
}

.search-result small {
  display: block;
  margin-top: 3px;
  color: #6b655f;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: none;
}

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

.search-result:hover small,
.search-result:focus-visible small {
  color: #eee8df;
}

.lucide-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 0;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1;
}

.brand span {
  font-size: 25px;
}

.brand small {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 5px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 82px);
  padding: 15px 20px 22px;
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.nav-item {
  display: inline-flex;
}

.nav-link {
  display: inline-block;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 30px clamp(28px, 6vw, 96px) 42px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 46px rgba(20, 18, 16, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
  visibility: hidden;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  max-width: 1460px;
  margin: 0 auto;
}

.mega-menu-list {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--line);
  padding-right: clamp(28px, 4vw, 52px);
}

.mega-menu-trigger {
  min-height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 0;
  border-bottom: 1px solid #eeeeee;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  color: #4c4945;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 2.4px;
  text-align: left;
  text-transform: uppercase;
}

.mega-menu-trigger:first-child {
  border-top: 0;
}

.mega-menu-trigger:hover,
.mega-menu-trigger:focus-visible,
.mega-menu-trigger.is-active {
  color: var(--ink);
  outline: 0;
}

.mega-menu-trigger.is-active {
  background: #f8f7f5;
  font-weight: 700;
  padding-left: 18px;
}

.mega-menu-detail {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 0;
}

.mega-menu-detail .eyebrow {
  min-height: 34px;
  margin: 0;
  border-bottom: 1px solid #eeeeee;
  color: #6a625b;
  font-weight: 700;
}

.mega-detail-list {
  display: grid;
}

.mega-detail-list a {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  color: #3c3732;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mega-detail-list a:hover,
.mega-detail-list a:focus-visible {
  color: var(--ink);
  outline: 0;
}

.mega-menu-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.mega-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px auto;
  gap: 18px;
  overflow: hidden;
  text-align: center;
}

.mega-card::before {
  content: "";
  grid-row: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #1b1917, #47413d 48%, #ead1c3);
}

.mega-card > img,
.mega-card-art {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 138px;
  height: 174px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.28));
}

.mega-card > span:last-child {
  grid-row: 2;
  color: #2d2a27;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mega-card-peach::before {
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(231, 184, 191, 0.42), transparent 25%),
    linear-gradient(135deg, #181716, #51473f 52%, #f1c9bd);
}

.mega-card-rose::before {
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 219, 204, 0.52), transparent 16%),
    radial-gradient(circle at 32% 72%, rgba(198, 52, 63, 0.58), transparent 24%),
    linear-gradient(135deg, #4f1114, #b64d58 52%, #f0b1b7);
}

.mega-card-amber::before {
  background:
    radial-gradient(circle at 24% 28%, rgba(251, 231, 198, 0.46), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(185, 120, 78, 0.55), transparent 28%),
    linear-gradient(135deg, #2e2119, #7a4c32 52%, #ddb180);
}

.mega-card-dark::before {
  background:
    radial-gradient(circle at 72% 28%, rgba(234, 218, 190, 0.35), transparent 16%),
    radial-gradient(circle at 28% 76%, rgba(67, 79, 94, 0.7), transparent 28%),
    linear-gradient(135deg, #101419, #303948 54%, #9b8068);
}

.mega-card-sage::before {
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 255, 255, 0.5), transparent 16%),
    radial-gradient(circle at 30% 74%, rgba(142, 166, 128, 0.58), transparent 26%),
    linear-gradient(135deg, #273228, #718465 52%, #d9cabc);
}

.mega-card-art {
  width: 156px;
  height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.9), transparent 20%),
    radial-gradient(circle at 55% 55%, rgba(118, 18, 24, 0.92), rgba(35, 8, 11, 0.98) 66%);
}

.mega-card-art-amber {
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.84), transparent 20%),
    radial-gradient(circle at 55% 55%, rgba(172, 102, 48, 0.92), rgba(54, 32, 18, 0.98) 66%);
}

.mega-card-art-dark {
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.72), transparent 20%),
    radial-gradient(circle at 55% 55%, rgba(41, 50, 64, 0.95), rgba(6, 9, 13, 0.98) 66%);
}

.mega-card-art-sage {
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.86), transparent 20%),
    radial-gradient(circle at 55% 55%, rgba(105, 128, 88, 0.92), rgba(29, 43, 29, 0.98) 66%);
}

.mega-card-art::before,
.mega-card-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 217, 197, 0.6);
}

.mega-card-art::before {
  left: 48px;
  top: -16px;
  width: 60px;
  height: 28px;
}

.mega-card-art::after {
  left: 42px;
  top: -34px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 235, 218, 0.54);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-spring {
  background:
    linear-gradient(90deg, rgba(156, 185, 211, 0.92), rgba(197, 219, 237, 0.72) 44%, rgba(246, 229, 222, 0.3)),
    radial-gradient(circle at 88% 28%, rgba(241, 143, 158, 0.45) 0 4%, transparent 5%),
    radial-gradient(circle at 92% 35%, rgba(226, 125, 139, 0.35) 0 3%, transparent 4%),
    var(--blue);
}

.hero-noor {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.68) 0 10%, transparent 11%),
    radial-gradient(circle at 84% 38%, rgba(222, 119, 138, 0.38) 0 8%, transparent 9%),
    linear-gradient(95deg, rgba(199, 146, 157, 0.92), rgba(238, 204, 207, 0.86) 50%, rgba(247, 238, 228, 0.72)),
    #e8c6c9;
}

.hero-oud {
  background:
    radial-gradient(circle at 78% 28%, rgba(235, 218, 190, 0.58) 0 10%, transparent 11%),
    linear-gradient(100deg, rgba(49, 59, 72, 0.94), rgba(105, 87, 72, 0.86) 48%, rgba(210, 187, 154, 0.76)),
    #38404a;
}

/* Image-based banners (managed from the admin panel) */
.hero-image {
  display: flex;
  align-items: center;
  background-color: #2b2722;
  background-image: linear-gradient(110deg, #3a3531, #6b5d50 55%, #d2bb9a);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(20, 18, 16, 0.62), rgba(20, 18, 16, 0.26) 52%, rgba(20, 18, 16, 0.04));
  z-index: 1;
}

.hero-image .hero-copy {
  z-index: 2;
  align-self: center;
  max-width: 640px;
}

/* Gender / Spring banners with a real uploaded image */
.gender-panel.has-banner-image {
  background-size: cover;
  background-position: center;
}

.gender-panel.has-banner-image .panel-art {
  opacity: 0;
}

.gender-panel.has-banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.gender-panel.has-banner-image .panel-footer {
  position: relative;
  z-index: 2;
  color: var(--paper);
}

.gender-panel.has-banner-image .panel-footer h2,
.gender-panel.has-banner-image .panel-footer .text-link {
  color: var(--paper);
}

.spring-section.has-banner-image {
  background-size: cover;
  background-position: center;
}

.spring-section.has-banner-image .spring-scene {
  opacity: 0.15;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 52px 4vw;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: 10px;
  line-height: 0.95;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.text-link.light {
  color: var(--paper);
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.marble-plinth {
  position: absolute;
  right: -10%;
  bottom: -72px;
  width: 108%;
  height: 230px;
  border-radius: 52% 0 0 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.66), rgba(183, 174, 163, 0.5)),
    var(--stone);
  box-shadow: inset 0 24px 58px rgba(255, 255, 255, 0.45);
}

.perfume-bottle,
.product-visual,
.large-bottle,
.scene-bottle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 12px 28px rgba(255, 255, 255, 0.5), 0 24px 42px rgba(36, 29, 24, 0.18);
}

.perfume-bottle {
  width: 112px;
  height: 214px;
  bottom: 132px;
  border-radius: 46px 46px 24px 24px;
}

.perfume-bottle::before,
.product-visual::before,
.large-bottle::before,
.scene-bottle::before {
  content: "";
  position: absolute;
  inset: 18px 16px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  opacity: 0.8;
}

.bottle-pearl {
  left: 4%;
  transform: rotate(-4deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(223, 229, 221, 0.62));
}

.bottle-rose {
  left: 27%;
  bottom: 160px;
  width: 132px;
  height: 252px;
  background: linear-gradient(135deg, rgba(244, 193, 201, 0.96), rgba(231, 153, 164, 0.72));
}

.bottle-moon {
  left: 57%;
  transform: rotate(3deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(244, 203, 214, 0.72));
}

.bottle-noor-main {
  left: 34%;
  bottom: 118px;
  width: 178px;
  height: 318px;
  background: linear-gradient(135deg, rgba(249, 206, 213, 0.96), rgba(214, 117, 138, 0.78));
}

.bottle-oud-main {
  left: 38%;
  bottom: 118px;
  width: 176px;
  height: 316px;
  background: linear-gradient(135deg, rgba(103, 116, 132, 0.96), rgba(24, 31, 43, 0.94));
}

.bottle-oud-side {
  left: 64%;
  bottom: 142px;
  width: 112px;
  height: 214px;
  transform: rotate(5deg);
  background: linear-gradient(135deg, rgba(211, 166, 118, 0.92), rgba(144, 78, 48, 0.78));
}

.cap {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #d7d9dc 34%, #727981 72%, #eff2f3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tassel {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 84px;
  border-right: 3px solid rgba(236, 202, 208, 0.86);
  border-radius: 20px;
}

.tassel::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 20px;
  height: 34px;
  border-radius: 0 0 14px 14px;
  background: repeating-linear-gradient(90deg, #efc9d0 0 2px, #f9e3e7 2px 4px);
}

.crest,
.bottle-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  color: rgba(35, 31, 28, 0.55);
}

.crest {
  top: 82px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 31, 28, 0.25);
  border-radius: 50%;
  font-size: 18px;
}

.bottle-name {
  bottom: 32px;
  font-size: 8px;
  letter-spacing: 1px;
}

.flower {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle, #e99dab 0 18%, #d96e84 19% 44%, transparent 46%);
  filter: blur(0.2px);
}

.flower::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 34px;
  width: 2px;
  height: 135px;
  background: rgba(74, 103, 64, 0.62);
  transform: rotate(-14deg);
}

.flower-one {
  right: 12%;
  top: 128px;
}

.flower-two {
  right: 4%;
  top: 190px;
  transform: scale(0.86);
}

.flower-three {
  right: 20%;
  top: 214px;
  transform: scale(0.72);
}

.flower-four {
  right: 14%;
  top: 112px;
  transform: scale(1.15);
}

.flower-five {
  right: 24%;
  top: 244px;
  transform: scale(0.82);
}

.silk-ribbon {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.ribbon-one {
  right: 2%;
  bottom: 88px;
  width: 330px;
  height: 110px;
  background: rgba(255, 255, 255, 0.2);
}

.ribbon-two {
  right: 8%;
  bottom: 96px;
  width: 360px;
  height: 118px;
  background: rgba(255, 244, 219, 0.16);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 4vw;
  bottom: 28px;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 34px;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--paper);
}

.products-section {
  padding: 46px 5vw 32px;
  background: var(--paper);
}

.section-tabs {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-bottom: 28px;
  white-space: nowrap;
}

.tab {
  min-height: 36px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #565656;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 1.6px;
}

.tab.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

.section-heading {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.product-carousel {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 0 48px 12px;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.product-carousel:active {
  cursor: grabbing;
}

.product-row {
  display: flex;
  gap: 56px;
  overflow: visible;
  transition: transform 420ms ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - 168px) / 4);
  min-width: 220px;
  padding-top: 18px;
  text-align: center;
}

.carousel-button {
  position: absolute;
  top: 45%;
  z-index: 8;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.carousel-button:hover {
  background: var(--ink);
  color: var(--paper);
}

.carousel-button:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.badge {
  min-height: 22px;
  margin: 0 0 34px;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-image-frame {
  position: relative;
  width: min(100%, 220px);
  height: 300px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.product-image-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.real-product-image {
  filter: drop-shadow(0 24px 28px rgba(28, 22, 18, 0.16));
}

.product-visual {
  position: relative;
  width: 132px;
  height: 214px;
  border-radius: 38px 38px 18px 18px;
}

.product-visual .cap {
  width: 48px;
  height: 48px;
  top: -30px;
}

.product-visual .crest {
  top: 70px;
}

.product-rose {
  background: linear-gradient(150deg, #f4c6cf, #d98699);
}

.product-sage {
  background: linear-gradient(150deg, #cbdabc, #779a70);
}

.product-amber {
  background: linear-gradient(150deg, #dca06f, #9f5637);
}

.product-ink {
  background: linear-gradient(150deg, #657386, #182130);
}

.product-lilac {
  background: linear-gradient(150deg, #ead6ee, #a77cb8);
}

.product-pearl {
  background: linear-gradient(150deg, #f4eee2, #d7b57a);
}

.product-card h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-card-link {
  display: block;
}

.notes {
  min-height: 23px;
  margin: 0 0 18px;
  color: #5f5f5f;
  font-size: 12px;
}

.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.size-select {
  position: relative;
}

.size-select-button {
  min-width: 84px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
}

.chevron-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.size-select.is-open .chevron-icon {
  transform: rotate(180deg);
}

.size-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  min-width: 108px;
  max-height: 168px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(20, 18, 16, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.size-select.is-open .size-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.size-options button {
  width: 100%;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.size-options button:hover,
.size-options button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}

.outline-button {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 4px;
  font-size: 12px;
  transition: background 180ms ease, color 180ms ease;
}

.outline-button:hover,
.outline-button.is-added {
  background: var(--ink);
  color: var(--paper);
}

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  min-width: min(360px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(18, 16, 14, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cart-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-toast span {
  font-size: 13px;
}

.cart-toast a {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gender-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 16px;
}

.gender-panel {
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--mist);
}

.panel-art {
  position: relative;
  overflow: hidden;
}

.panel-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.58), transparent 46%),
    radial-gradient(circle at 62% 22%, rgba(255, 255, 255, 0.75) 0 7%, transparent 8%);
}

.for-her .panel-art {
  background: linear-gradient(130deg, #fbf1ee, #e4bdc2 58%, #f7f3ed);
}

.for-him .panel-art {
  background: linear-gradient(130deg, #e7edf1, #9ba8b1 50%, #efe8dd);
}

.large-bottle {
  left: 50%;
  bottom: -10px;
  width: 175px;
  height: 292px;
  transform: translateX(-50%);
  border-radius: 52px 52px 22px 22px;
}

.large-bottle::after {
  content: "";
  position: absolute;
  top: -58px;
  left: 50%;
  width: 82px;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #cfd4d7 42%, #5e666d 72%, #eef3f4);
}

.rose-glass {
  background: linear-gradient(150deg, rgba(246, 203, 210, 0.96), rgba(216, 132, 148, 0.74));
}

.dark-glass {
  background: linear-gradient(150deg, rgba(67, 80, 98, 0.94), rgba(15, 23, 34, 0.9));
}

.panel-footer {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--paper);
}

.panel-footer h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2px;
}

.spring-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d8c9b8;
}

.spring-copy {
  position: absolute;
  z-index: 2;
  left: 5vw;
  top: 42px;
}

.spring-copy h2 {
  max-width: 390px;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.spring-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.52) 0 9%, transparent 10%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.2), transparent 58%),
    #d8c9b8;
}

.stone {
  position: absolute;
  background: linear-gradient(135deg, #eee3d2, #bcae9d);
  box-shadow: 18px 26px 35px rgba(58, 46, 36, 0.16);
}

.stone-one {
  left: 16%;
  bottom: 120px;
  width: 270px;
  height: 210px;
}

.stone-two {
  right: 20%;
  bottom: 76px;
  width: 320px;
  height: 250px;
}

.scene-bottle {
  width: 116px;
  height: 205px;
  border-radius: 40px 40px 18px 18px;
  z-index: 1;
}

.scene-bottle::after {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #d4d7d8 42%, #6e7378 72%, #f7f7f5);
}

.scene-green {
  left: 22%;
  bottom: 295px;
  background: linear-gradient(150deg, #b6ceb0, #5c9566);
}

.scene-pink {
  left: 43%;
  bottom: 132px;
  background: linear-gradient(150deg, #f3c5cd, #d88b9b);
}

.scene-clear {
  right: 29%;
  bottom: 305px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(215, 221, 218, 0.58));
}

.scene-dark {
  right: 10%;
  bottom: 120px;
  background: linear-gradient(150deg, #687789, #1b2533);
}

.stem {
  position: absolute;
  width: 2px;
  height: 340px;
  background: rgba(72, 101, 59, 0.55);
  transform-origin: bottom;
}

.stem::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 18%, #f0dfe0 19% 52%, transparent 53%);
}

.stem-one {
  left: 18%;
  bottom: 235px;
  transform: rotate(-9deg);
}

.stem-two {
  left: 61%;
  bottom: 220px;
  transform: rotate(6deg);
}

.stem-three {
  right: 15%;
  bottom: 205px;
  transform: rotate(-12deg);
}

.scent-pin {
  position: absolute;
  z-index: 3;
  min-width: 112px;
  min-height: 42px;
  border: 0;
  border-radius: 24px;
  background: rgba(31, 39, 30, 0.74);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 1.2px;
}

.pin-one {
  left: 31%;
  bottom: 500px;
}

.pin-two {
  left: 39%;
  bottom: 300px;
}

.pin-three {
  right: 26%;
  bottom: 510px;
}

.pin-four {
  right: 8%;
  bottom: 310px;
}

.maison-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) 5vw;
  background: var(--paper);
}

.maison-copy h2 {
  max-width: 460px;
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.06;
}

.maison-copy p {
  max-width: 460px;
  margin: 0 0 26px;
  line-height: 1.7;
  color: #4a463f;
}

.maison-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 36px);
  margin: 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
}

.maison-stats div {
  text-align: center;
}

.maison-stats dt {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.maison-stats dd {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6b665d;
}

.newsletter {
  padding: 44px 20px 48px;
  text-align: center;
  background: var(--mist);
}

.newsletter h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.newsletter input {
  width: min(420px, 62vw);
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  text-align: center;
  letter-spacing: 1.2px;
}

.newsletter button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer {
  padding: 48px 5vw 60px;
  background: var(--paper);
}

.cart-page {
  min-height: calc(100vh - 115px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 90px);
  background: #f8f5ef;
}

.cart-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.cart-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 94px);
  font-weight: 400;
  line-height: 0.95;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.cart-item-image {
  height: 150px;
  display: grid;
  place-items: center;
  background: #f5eee8;
}

.cart-item-image img {
  width: 84px;
  height: 128px;
  object-fit: contain;
}

.cart-item h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.cart-item p {
  margin: 0 0 6px;
  color: #5f5750;
}

.cart-quantity {
  width: fit-content;
  min-height: 38px;
  display: inline-grid;
  grid-template-columns: 38px minmax(34px, auto) 38px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.cart-quantity span {
  min-width: 34px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
}

.quantity-button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

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

.cart-item-price {
  text-align: right;
  letter-spacing: 1px;
}

.remove-cart-item {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #5f5750;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.empty-cart {
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.empty-cart p {
  margin: 0;
  color: #5f5750;
}

.cart-summary {
  position: sticky;
  top: 150px;
  padding: 28px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.cart-summary h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.summary-total {
  align-items: baseline;
  border-color: var(--ink);
  font-size: 20px;
}

.checkout-button {
  margin-top: 24px;
  background: var(--ink);
  color: var(--paper);
}

.checkout-page {
  min-height: calc(100vh - 115px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 90px);
  background: #f8f5ef;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.checkout-fieldset {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.checkout-fieldset legend {
  padding: 0 10px;
  margin-left: -10px;
  font-family: var(--serif);
  font-size: 22px;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5f5750;
}

.field-optional {
  letter-spacing: 0.5px;
  text-transform: none;
  color: #9a9389;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
}

.payment-options {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: var(--ink);
  background: var(--paper);
}

.payment-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.payment-option-body {
  display: grid;
  gap: 3px;
}

.payment-option-body strong {
  font-weight: 600;
}

.payment-option-body small {
  color: #5f5750;
}

.card-fields {
  margin-top: 18px;
}

.card-fields[hidden] {
  display: none;
}

.checkout-error {
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--rose);
  background: #fbeef0;
  color: #7a2e3a;
  font-size: 13px;
}

.checkout-summary .summary-row:first-of-type {
  margin-top: 8px;
}

.checkout-items {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-item-image {
  height: 64px;
  display: grid;
  place-items: center;
  background: #f5eee8;
}

.checkout-item-image img {
  width: 34px;
  height: 54px;
  object-fit: contain;
}

.checkout-item-name {
  margin: 0 0 4px;
  font-size: 14px;
}

.checkout-item-meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #5f5750;
}

.checkout-note {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #5f5750;
}

.order-confirmation {
  max-width: 560px;
  margin: clamp(20px, 6vw, 60px) auto;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--ink);
  background: var(--paper);
  text-align: center;
}

.order-confirmation h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 400;
}

.order-confirmation-lead {
  margin: 0;
  color: #5f5750;
  line-height: 1.6;
}

.order-confirmation-meta {
  width: 100%;
  display: grid;
  gap: 0;
  margin: 8px 0;
}

.order-confirmation-meta div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.order-confirmation-meta dt {
  color: #5f5750;
  letter-spacing: 1px;
}

.order-confirmation-meta dd {
  margin: 0;
  font-weight: 600;
}

a.outline-button {
  display: inline-grid;
  place-items: center;
  width: auto;
  min-width: 240px;
  padding: 0 28px;
  text-decoration: none;
}

.collection-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px 0;
  color: #5f5750;
  letter-spacing: 0.4px;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 28px;
  padding: 40px 20px;
  text-align: center;
  background: var(--mist);
}

.not-found-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 400;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  text-align: center;
}

.footer-columns h2 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
}

.footer-columns a {
  display: block;
  margin: 0 0 14px;
  color: #494949;
}

.collection-page {
  background: var(--paper);
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 7vw, 112px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 22%, rgba(231, 184, 191, 0.28), transparent 18%),
    linear-gradient(135deg, #fbf8f4, #f2e6dc 56%, #fbfaf7);
}

.collection-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.collection-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #504942;
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: 1.35;
}

.collection-stat {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.collection-stat strong {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.9;
}

.collection-stat span {
  max-width: 220px;
  color: #5d554e;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collection-type-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 70px);
  padding: 20px clamp(16px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.collection-type-nav::-webkit-scrollbar {
  display: none;
}

.collection-type-nav a {
  color: #5a534d;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.collection-type-nav a.is-active {
  color: var(--ink);
  font-weight: 700;
}

.collection-shell {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 92px) clamp(16px, 6vw, 92px);
}

.collection-filter {
  position: sticky;
  top: 154px;
  align-self: start;
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.collection-filter h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.collection-filter p {
  margin: 0;
  color: #5f5750;
}

.collection-filter dl {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

.collection-filter div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: #4d4741;
}

.collection-filter dt,
.collection-filter dd {
  margin: 0;
}

.collection-filter dt {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 54px) clamp(20px, 3vw, 42px);
}

.collection-card {
  min-width: 0;
  padding: 0 0 18px;
  text-align: center;
}

.collection-card .product-image-frame {
  width: min(100%, 240px);
  height: 320px;
}

.pdp-main {
  background: var(--paper);
}

.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.72fr);
  min-height: calc(100vh - 153px);
  border-bottom: 1px solid var(--line);
}

.pdp-gallery {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 680px;
  padding: 32px clamp(24px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 18% 74%, rgba(190, 120, 78, 0.18) 0 18%, transparent 19%),
    linear-gradient(120deg, #f4e8df, #ead1c3 48%, #f8f2eb);
}

.pdp-kicker,
.pdp-gallery-meta {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #4c4039;
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.pdp-image-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.pdp-gallery-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px) scale(0.985);
  transition: opacity 520ms ease, visibility 520ms ease, transform 620ms ease;
}

.pdp-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.pdp-image-stage img {
  position: relative;
  z-index: 2;
  width: min(46vw, 440px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(39, 28, 22, 0.2));
}

.pdp-gallery-slide-detail {
  overflow: hidden;
}

.pdp-gallery-slide-detail::before,
.framed-view::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: 1;
  border: 1px solid rgba(7, 7, 7, 0.16);
  background: rgba(255, 255, 255, 0.28);
}

.pdp-gallery-slide-detail img {
  width: min(78vw, 690px);
  max-height: 940px;
  filter: drop-shadow(0 28px 32px rgba(39, 28, 22, 0.16));
}

.label-detail img {
  transform: translateY(12%) scale(1.5);
  transform-origin: center 62%;
}

.cap-detail img {
  transform: translateY(36%) scale(1.75);
  transform-origin: center 18%;
}

.framed-view img {
  width: min(42vw, 390px);
  transform: rotate(-3deg);
}

.pdp-shadow-word {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--serif);
  font-size: clamp(92px, 18vw, 230px);
  letter-spacing: 14px;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.pdp-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 7, 7, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pdp-gallery-arrow:hover,
.pdp-gallery-arrow:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  outline: 0;
}

.pdp-gallery-prev {
  left: clamp(14px, 3vw, 34px);
}

.pdp-gallery-next {
  right: clamp(14px, 3vw, 34px);
}

.pdp-gallery-meta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 7, 7, 0.18);
}

.pdp-purchase {
  position: sticky;
  top: 153px;
  align-self: start;
  min-height: calc(100vh - 153px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid var(--line);
}

.pdp-purchase h1 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1.5px;
}

.pdp-price {
  margin: 0 0 24px;
  font-size: 15px;
  letter-spacing: 1.8px;
}

.pdp-intro {
  max-width: 440px;
  margin: 0 0 34px;
  color: #49433e;
}

.pdp-size-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.pdp-size-button {
  min-height: 76px;
  display: grid;
  justify-items: start;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}

.pdp-size-button span {
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pdp-size-button small {
  color: #706a64;
  font-size: 12px;
}

.pdp-size-button.is-selected {
  border-color: var(--ink);
  background: #fbf7f2;
}

.pdp-add-button {
  min-height: 56px;
  margin-bottom: 22px;
  background: var(--ink);
  color: var(--paper);
}

.pdp-add-button:hover,
.pdp-add-button.is-added {
  background: #3b2823;
}

.pdp-service-list {
  display: grid;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #57504a;
  font-size: 13px;
}

.pdp-service-list p {
  margin: 0;
}

.pdp-story {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 8vw, 110px);
  padding: clamp(54px, 8vw, 110px) clamp(22px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
}

.pdp-story h2,
.pdp-detail-copy h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.02;
}

.pdp-story > p,
.pdp-detail-copy p {
  max-width: 680px;
  margin: 0;
  color: #49433e;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
}

.pdp-notes {
  position: relative;
  min-height: 300vh;
  background: var(--ink);
  color: var(--paper);
}

.pdp-notes-visual {
  display: block;
}

.pdp-notes-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(36px, 7vw, 92px);
  isolation: isolate;
}

.pdp-notes-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.76), rgba(7, 7, 7, 0.38) 44%, rgba(7, 7, 7, 0.1)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0) 56%);
}

.note-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease, transform 900ms ease;
}

.note-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.note-scene {
  position: absolute;
  left: clamp(22px, 7vw, 92px);
  right: clamp(22px, 7vw, 92px);
  bottom: clamp(38px, 7vw, 92px);
  z-index: 2;
  max-width: 760px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 360ms ease, transform 420ms ease;
}

.note-scene.is-active {
  opacity: 1;
  transform: translateY(0);
}

.note-scroll-track {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(3, 100vh);
  pointer-events: none;
}

.note-scroll-step {
  display: block;
  min-height: 100vh;
}

.note-count {
  display: inline-block;
  margin-bottom: 22px;
  color: #c9bcae;
  font-size: 12px;
  letter-spacing: 2.6px;
}

.note-scene h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(52px, 10vw, 132px);
  font-weight: 400;
  line-height: 0.95;
}

.note-scene p {
  max-width: 680px;
  margin: 0;
  color: #fff4e8;
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.35;
}

.pdp-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  padding: clamp(54px, 8vw, 104px) clamp(22px, 7vw, 110px);
  background: #f8f5ef;
}

.pdp-accordions {
  border-top: 1px solid var(--line);
}

.pdp-accordion {
  border-bottom: 1px solid var(--line);
}

.pdp-accordion-toggle {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
}

.pdp-accordion-toggle span:last-child {
  font-size: 22px;
  transition: transform 180ms ease;
}

.pdp-accordion.is-open .pdp-accordion-toggle span:last-child {
  transform: rotate(45deg);
}

.pdp-accordion-panel {
  display: none;
  padding: 0 0 24px;
  color: #4f4943;
}

.pdp-accordion-panel p {
  margin: 0;
}

.pdp-accordion.is-open .pdp-accordion-panel {
  display: block;
}

.pdp-related {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.pdp-related-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 4vw, 54px);
}

.pdp-related-row article {
  text-align: center;
}

.pdp-related-row h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.pdp-related-row p {
  margin: 0;
  color: #5f5f5f;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 42px;
  }

  .product-row {
    gap: 42px;
  }

  .product-card {
    flex-basis: calc((100% - 84px) / 3);
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(54px, 8vw, 92px);
  }

  .pdp-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  }

  .pdp-gallery {
    min-height: 620px;
  }

  .pdp-image-stage img {
    width: min(44vw, 390px);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 132px;
  }

  .announcement {
    min-height: 34px;
    padding: 0 8px;
  }

  .header-top {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 14px;
    min-height: 68px;
  }

  /* Keep the brand truly centered regardless of the side icons' widths. */
  .header-top .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header-actions a,
  .region-button {
    display: none;
  }

  .header-actions .sign-in-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .header-actions .cart-link {
    display: inline-grid;
  }

  .header-utility,
  .header-actions {
    gap: 8px;
  }

  .site-search.is-open {
    width: min(42vw, 260px);
  }

  .main-nav {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 13px;
  }

  .mega-menu {
    display: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero-stage {
    min-height: 480px;
  }

  .product-row {
    gap: 32px;
  }

  .product-card {
    flex-basis: calc((100% - 32px) / 2);
    min-width: 0;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .gender-section {
    grid-template-columns: 1fr;
  }

  .spring-section {
    min-height: 600px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .cart-summary {
    position: static;
  }

  .checkout-summary {
    position: static;
  }

  .collection-hero,
  .collection-shell {
    grid-template-columns: 1fr;
  }

  .collection-stat {
    justify-items: start;
    text-align: left;
  }

  .collection-filter {
    position: static;
  }

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

  .pdp-hero,
  .pdp-story,
  .pdp-detail-grid {
    grid-template-columns: 1fr;
  }

  .pdp-hero {
    min-height: auto;
  }

  .pdp-gallery {
    min-height: 580px;
  }

  .pdp-image-stage {
    min-height: 460px;
  }

  .pdp-image-stage img {
    width: min(72vw, 380px);
    max-height: 520px;
  }

  .pdp-gallery-slide-detail img {
    width: min(110vw, 620px);
  }

  .framed-view img {
    width: min(68vw, 350px);
  }

  .pdp-purchase {
    position: static;
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pdp-related-row {
    grid-template-columns: 1fr;
  }

  .pdp-notes-visual {
    display: block;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 122px;
  }

  .announcement {
    grid-template-columns: 26px 1fr 26px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .header-top {
    min-height: 62px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 0 10px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .sign-in-link {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .header-utility {
    gap: 4px;
  }

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

  .site-search {
    width: 28px;
    min-width: 28px;
    height: 36px;
  }

  .site-search.is-open {
    position: absolute;
    left: 10px;
    right: 10px;
    z-index: 25;
    width: auto;
  }

  .site-search.is-open + .region-button {
    visibility: hidden;
  }

  .lucide-icon {
    width: 18px;
    height: 18px;
  }

  .brand {
    letter-spacing: 4px;
  }

  .brand span {
    font-size: 19px;
  }

  .main-nav {
    gap: 24px;
    padding: 12px 14px 16px;
    font-size: 12px;
    letter-spacing: 1.6px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-copy {
    padding: 34px 16px 0;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(46px, 15vw, 62px);
    letter-spacing: 5px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .text-link {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .marble-plinth {
    right: -34%;
    bottom: -56px;
    width: 138%;
    height: 190px;
  }

  .perfume-bottle {
    transform: scale(0.82);
  }

  .bottle-pearl {
    left: -2%;
  }

  .bottle-rose {
    left: 26%;
  }

  .bottle-moon {
    left: 60%;
  }

  .bottle-noor-main {
    left: 18%;
    bottom: 96px;
    transform: scale(0.7);
  }

  .bottle-oud-main {
    left: 12%;
    bottom: 96px;
    transform: scale(0.68);
  }

  .bottle-oud-side {
    left: 56%;
    bottom: 120px;
    transform: scale(0.62) rotate(5deg);
  }

  .flower-one,
  .flower-four {
    right: 10%;
    top: 275px;
  }

  .flower-two,
  .flower-five {
    right: 2%;
    top: 350px;
  }

  .flower-three {
    display: none;
  }

  .hero-controls {
    left: 16px;
    bottom: 18px;
  }

  .section-tabs {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .section-tabs::-webkit-scrollbar {
    display: none;
  }

  .section-heading {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .section-heading h2 {
    width: 100%;
    text-align: center;
    font-size: 29px;
  }

  .products-section {
    padding: 38px 12px 28px;
  }

  .product-carousel {
    padding: 0 38px 12px;
  }

  .product-row {
    gap: 20px;
  }

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

  .product-image-frame {
    width: min(100%, 210px);
    height: 286px;
  }

  .product-card h3 {
    font-size: 20px;
    letter-spacing: 2.4px;
  }

  .notes {
    font-size: 11px;
  }

  .buy-row {
    gap: 12px;
    font-size: 14px;
  }

  .carousel-button {
    width: 36px;
    height: 40px;
  }

  .gender-panel {
    min-height: 360px;
  }

  .panel-footer {
    padding: 18px 20px;
  }

  .spring-section {
    min-height: 560px;
  }

  .spring-copy {
    left: 16px;
    top: 32px;
  }

  .spring-copy h2 {
    max-width: 280px;
    font-size: 38px;
  }

  .scene-bottle {
    transform: scale(0.78);
  }

  .stone-one {
    left: 4%;
    bottom: 104px;
  }

  .stone-two {
    right: -18%;
    bottom: 74px;
  }

  .scent-pin {
    min-width: 92px;
    font-size: 11px;
  }

  .pin-one {
    left: 8%;
    bottom: 418px;
  }

  .pin-two {
    left: 32%;
    bottom: 258px;
  }

  .pin-three {
    right: 18%;
    bottom: 430px;
  }

  .pin-four {
    right: 5%;
    bottom: 250px;
  }

  .maison-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .newsletter {
    padding: 40px 16px 44px;
  }

  .newsletter h2 {
    font-size: 26px;
  }

  .newsletter form {
    flex-direction: column;
    gap: 16px;
  }

  .newsletter input {
    width: min(420px, 88vw);
  }

  .site-footer {
    padding: 42px 20px 52px;
  }

  .cart-page {
    padding: 38px 14px 52px;
  }

  .cart-heading {
    display: grid;
    gap: 10px;
  }

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

  .cart-item-image {
    height: 124px;
  }

  .cart-item-price {
    grid-column: 1 / -1;
    text-align: left;
  }

  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: 0;
  }

  .collection-hero {
    padding: 42px 18px 34px;
  }

  .collection-hero h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .collection-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .collection-shell {
    padding: 36px 14px 54px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card .product-image-frame {
    height: 286px;
  }

  .pdp-gallery {
    min-height: 520px;
    padding: 24px 18px;
  }

  .pdp-image-stage {
    min-height: 410px;
  }

  .pdp-image-stage img {
    width: min(88vw, 330px);
    max-height: 450px;
  }

  .pdp-gallery-slide-detail::before,
  .framed-view::before {
    inset: 16%;
  }

  .pdp-gallery-slide-detail img {
    width: min(135vw, 560px);
  }

  .label-detail img {
    transform: translateY(12%) scale(1.35);
  }

  .cap-detail img {
    transform: translateY(34%) scale(1.55);
  }

  .framed-view img {
    width: min(78vw, 300px);
  }

  .pdp-gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .pdp-shadow-word {
    font-size: 86px;
    letter-spacing: 8px;
  }

  .pdp-gallery-meta {
    font-size: 10px;
  }

  .pdp-purchase,
  .pdp-story,
  .pdp-detail-grid,
  .pdp-related {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pdp-purchase h1 {
    font-size: 42px;
  }

  .pdp-notes-sticky {
    min-height: 580px;
    padding: 34px 18px;
  }

  .note-scene {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }

  .pdp-size-group {
    grid-template-columns: 1fr;
  }

  .pdp-story > p,
  .pdp-detail-copy p {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .announcement p {
    line-height: 1.35;
  }

  .header-actions .cart-link {
    display: inline-grid;
  }

  .brand span {
    font-size: 18px;
  }

  .hero {
    min-height: 580px;
  }

  .bottle-pearl {
    left: -14%;
  }

  .bottle-rose {
    left: 19%;
  }

  .bottle-moon {
    left: 58%;
  }

  .product-carousel {
    padding-left: 32px;
    padding-right: 32px;
  }

  .product-image-frame {
    height: 270px;
  }

  .spring-copy h2 {
    max-width: 240px;
    font-size: 34px;
  }

  .scent-pin {
    min-width: 82px;
    min-height: 36px;
    font-size: 10px;
  }
}

/* ---------------------------------------------------------------------------
   Mobile menu (tap-to-open category panel; shown only on small screens)
   --------------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  transform: translateX(-100%);
  transition: transform 280ms ease;
  visibility: hidden;
  overflow-y: auto;
  padding: 18px 22px 44px;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

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

.mobile-menu-brand {
  font-family: var(--serif);
  letter-spacing: 4px;
  font-size: 20px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu-top {
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}

.mobile-menu-group {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-heading {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a8378;
}

.mobile-menu-group a {
  display: block;
  padding: 8px 0 8px 12px;
  font-size: 14px;
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  /* The cart/checkout header text links ("CONTINUE SHOPPING" / "BACK TO CART")
     look odd next to the menu button on mobile — the menu + cart icon cover it. */
  .header-utility .text-link {
    display: none;
  }
}
