@font-face {
  font-family: "Alimama Agile VF";
  src:
    url("./assets/fonts/AlimamaAgileVF-Thin.woff2") format("woff2"),
    url("./assets/fonts/AlimamaAgileVF-Thin.woff") format("woff");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alimama FangYuan Ti VF";
  src:
    url("./assets/fonts/AlimamaFangYuanTiVF-Thin.woff2") format("woff2"),
    url("./assets/fonts/AlimamaFangYuanTiVF-Thin.woff") format("woff");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown: #935727;
  --brown-2: #7a421c;
  --ink: #2e1711;
  --taupe: #e4d0ac;
  --paper: #fefbeb;
  --white: #fffaf3;
  --line: rgba(147, 87, 39, 0.18);
  --shadow: 0 24px 80px rgba(147, 87, 39, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Enforce hidden attribute — author display rules (e.g. .btn) would otherwise override the UA stylesheet */
[hidden] { display: none !important; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  font-family: "Alimama FangYuan Ti VF", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  font-variation-settings: "BEVL" 50;
}

h3, h4, h5, h6 {
  font-family: "Alimama Agile VF", "Noto Serif SC", Georgia, serif;
  font-variation-settings: "SRIF" 1;
}

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

button,
input,
select {
  font: inherit;
}

a,
button,
input,
select,
.product-card,
.service-list article,
.ritual-list article,
.quick-links a {
  transition:
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  --nav-glass: 0;
  --nav-border: 0;
  position: fixed;
  top: 18px;
  left: clamp(14px, 3vw, 38px);
  right: clamp(14px, 3vw, 38px);
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, calc(var(--nav-glass) * 0.18)), rgba(255, 250, 243, calc(var(--nav-glass) * 0.08))),
    rgba(55, 44, 36, calc(var(--nav-glass) * 0.34));
  border: 1px solid rgba(255, 250, 243, calc(var(--nav-border) * 0.18));
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, calc(var(--nav-glass) * 0.14));
  backdrop-filter: blur(calc(var(--nav-glass) * 24px)) saturate(calc(1 + var(--nav-glass) * 0.45));
  -webkit-backdrop-filter: blur(calc(var(--nav-glass) * 24px)) saturate(calc(1 + var(--nav-glass) * 0.45));
  transition:
    background 0.32s ease,
    box-shadow 0.32s ease,
    backdrop-filter 0.32s ease,
    -webkit-backdrop-filter 0.32s ease,
    border-color 0.32s ease;
}

.site-header.is-scrolled {
  --nav-border: 1;
}

.brand {
  position: relative;
  display: block;
  width: 174px;
  height: 58px;
}

.brand img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 174px;
  display: block;
  transition: opacity 0.72s ease;
}

.logo-brown {
  opacity: 0;
  filter: brightness(0.72) saturate(1.18) contrast(1.08);
}

.site-header.logo-dark .logo-cream {
  opacity: 0;
}

.site-header.logo-dark .logo-brown {
  opacity: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(255, 250, 243, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.nav a:hover {
  color: #d7ae73;
}

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

.icon-btn,
.lang-switch {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(147, 87, 39, 0.2);
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255, 250, 243, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.lang-switch {
  width: auto;
  min-width: 40px;
  padding: 0;
  font-weight: 750;
}

.icon-btn:hover,
.lang-switch:hover,
.btn:hover {
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.lang-switch svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #d7ae73;
  color: var(--paper);
  font-size: 11px;
}

.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 238, 200, 0.18), rgba(255, 238, 200, 0.09) 28%, transparent 68%);
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-dark {
  background:
    linear-gradient(135deg, rgba(255, 239, 205, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(122, 66, 28, 0.72);
  color: var(--paper);
  border-color: rgba(255, 235, 194, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 32px rgba(122, 66, 28, 0.24);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.btn-glass,
.btn-light,
.btn-cream {
  background:
    linear-gradient(135deg, rgba(255, 239, 205, 0.34), rgba(255, 255, 255, 0.12)),
    rgba(122, 66, 28, 0.2);
  color: var(--paper);
  border-color: rgba(255, 235, 194, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 32px rgba(122, 66, 28, 0.18);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.btn.compact {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transform: translate3d(7%, 0, 0) scale(1.035);
  will-change: transform, opacity;
  /* Only the transform (slow ken-burns) animates for the incoming image;
     the crossfade itself is driven by the OUTGOING image fading out on top,
     which avoids the mid-transition luminance dip that caused the flicker. */
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image.is-active {
  z-index: 1; /* sits underneath, already fully opaque */
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-image.is-leaving {
  z-index: 2; /* on top, fades away to reveal the fully-present active image */
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 1.1s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 15, 10, 0.7), rgba(24, 15, 10, 0.34) 42%, rgba(24, 15, 10, 0.12)),
    linear-gradient(180deg, rgba(20, 12, 8, 0.15), rgba(20, 12, 8, 0.08) 38%, rgba(20, 12, 8, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(22px, 8vw, 108px);
  padding: 120px 0 96px;
  min-height: 440px;
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

/* The two copy layers occupy the same grid cell so they overlay for the
   crossfade, while the cell still sizes to the taller layer — this gives the
   copy a real height in normal flow, so the actions below can never overlap it. */
.hero-copy-stack {
  display: grid;
  width: 100%;
}

.hero-copy-layer {
  grid-area: 1 / 1 / 2 / 2;
  width: min(760px, 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.62s ease;
}

.hero-copy-layer.is-current {
  opacity: 1;
  pointer-events: auto;
}

.hero-copy-layer.is-exiting {
  opacity: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: inherit;
  font-family: "Alimama Agile VF", "Noto Serif SC", Georgia, serif;
  font-variation-settings: "SRIF" 1;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  margin: 0;
  color: var(--brown-2);
  font-family: "Alimama Agile VF", "Noto Serif SC", Georgia, serif;
  font-variation-settings: "SRIF" 1;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--brown-2);
  font-family: "Alimama Agile VF", "Noto Serif SC", Georgia, serif;
  font-variation-settings: "SRIF" 1;
}

.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto; /* sit at the bottom of the hero block, but always below the copy */
  padding-top: 34px;
}

.hero .eyebrow,
.hero h1,
.hero-copy {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 8vw, 108px);
  bottom: 36px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  position: relative;
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 250, 243, 0.38);
  cursor: pointer;
  overflow: hidden;
}

.hero-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--paper);
}

.hero-dots button.is-active::after {
  animation: slide-progress 10s linear forwards;
}

@keyframes slide-progress {
  to {
    width: 100%;
  }
}

.hero-dots button.is-active {
  background: var(--paper);
  background: rgba(255, 250, 243, 0.34);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(215, 174, 115, 0.18);
  border-bottom: 1px solid rgba(215, 174, 115, 0.18);
  background: #15100d;
}

.quick-links a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
  border-right: 1px solid rgba(215, 174, 115, 0.16);
}

.quick-links a::before,
.quick-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quick-links a::before {
  background-image: var(--quick-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.46;
  filter: brightness(0.86) saturate(0.95) contrast(1.08);
  transform: scale(1.04);
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-links a::after {
  background:
    linear-gradient(90deg, rgba(16, 10, 7, 0.86), rgba(16, 10, 7, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.32));
  transition: opacity 0.35s ease;
}

.quick-links a:nth-child(1) {
  --quick-bg: url("./assets/products/oil-01.jpeg");
}

.quick-links a:nth-child(2) {
  --quick-bg: url("./assets/services-bg-v2.png");
}

.quick-links a:nth-child(3) {
  --quick-bg: url("./assets/hero-oil.png");
}

.quick-links a:nth-child(4) {
  --quick-bg: url("./assets/products/oil-02.jpeg");
}

.quick-links a:hover::before {
  opacity: 0.92;
  filter: brightness(1.36) saturate(1.16) contrast(1.02);
  transform: scale(1);
}

.quick-links a:hover::after {
  opacity: 0.62;
}

.quick-links a:hover {
  color: var(--paper);
  background: #251812;
  transform: translateY(-3px);
}

.quick-links span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  color: #f4eadc;
}

.quick-links small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(244, 234, 220, 0.62);
}

.quick-links a:hover small {
  color: rgba(242, 242, 242, 0.84);
}

.section {
  padding: 78px clamp(22px, 5vw, 76px);
}

.services-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(22px, 7vw, 108px);
  overflow: hidden;
  color: var(--paper);
}

.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.services-immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 15, 10, 0.78), rgba(24, 15, 10, 0.36) 46%, rgba(24, 15, 10, 0.08)),
    linear-gradient(180deg, rgba(24, 15, 10, 0.12), rgba(24, 15, 10, 0.8));
}

.services-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.services-copy h2,
.services-copy .eyebrow,
.services-copy p,
.services-copy h3 {
  color: var(--paper);
}

.services-copy > p {
  width: min(560px, 100%);
  line-height: 1.72;
  color: rgba(255, 250, 243, 0.78);
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.service-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  width: min(620px, 100%);
  padding: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(18, 12, 9, 0.64), rgba(78, 50, 34, 0.28)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -18px 36px rgba(255, 255, 255, 0.025),
    0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(1.75) contrast(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(1.75) contrast(1.08);
  transform-origin: center;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.55s ease,
    box-shadow 0.55s ease,
    border-color 0.55s ease;
}

.service-list article::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 20px;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 28%, rgba(255, 255, 255, 0.045) 68%, transparent),
    radial-gradient(circle at 80% 0%, rgba(215, 174, 115, 0.16), transparent 26%);
  opacity: 0.74;
}

.service-list article:hover {
  transform: translateX(6px) scale(1.025);
  border-color: rgba(255, 250, 243, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(26, 17, 12, 0.68), rgba(94, 61, 41, 0.34)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 70px rgba(0, 0, 0, 0.26);
}

.service-list svg {
  width: 24px;
  height: 24px;
  color: #d9b184;
}

.service-list p {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.55;
}

.service-list h3 {
  margin-bottom: 6px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.product-card:hover,
.ritual-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(122, 66, 28, 0.12);
}

.ritual-panel p,
.gift p,
.booking-copy p {
  line-height: 1.72;
  color: rgba(35, 24, 21, 0.68);
}

.booking-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
  padding: 72px clamp(22px, 5vw, 76px);
  background: linear-gradient(135deg, #d8cdbb, #cfc4b1 54%, #eadfce);
}

.shop-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(207, 196, 177, 0.38), transparent 30%),
    linear-gradient(180deg, var(--paper), #ebe4d8 100%);
}

.shop-section h2,
.shop-section .eyebrow {
  color: var(--brown-2);
}

.shop-section .section-head {
  border-bottom: 1px solid rgba(147, 87, 39, 0.14);
  padding-bottom: 28px;
}

.section-copy {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(35, 24, 21, 0.68);
  line-height: 1.62;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: rgba(255, 250, 243, 0.64);
  border: 1px solid rgba(147, 87, 39, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.booking-form .btn {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus {
  outline: 0;
  border-color: rgba(122, 66, 28, 0.55);
  box-shadow: 0 0 0 4px rgba(122, 66, 28, 0.1);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--brown);
  font-size: 13px;
}

/* Booking deposit payment panel (Stripe Payment Element) */
.deposit-payment {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(92, 74, 58, 0.18);
  border-radius: 12px;
  background: var(--cream, #faf8f5);
}
.deposit-payment__title {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--brown, #5c4a3a);
}
.deposit-payment__title span { font-weight: 700; }
.deposit-payment__hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(44, 33, 23, 0.7);
}
#booking-stripe-element { margin-bottom: 14px; }
.deposit-payment__pay { width: 100%; }

/* Booking slot picker: date row + availability-aware time chips */
.slot-picker label {
  font-family: "Alimama FangYuan Ti VF", "Noto Sans SC", Arial, sans-serif;
  font-variation-settings: "BEVL" 50;
}
.slot-picker .slot-dates {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.slot-date {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 58px;
  padding: 9px 10px 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
}
.slot-date:hover { border-color: var(--brown); background: rgba(147, 87, 39, 0.05); }
.slot-date:active { transform: scale(0.96); }
.slot-date.is-active { background: var(--brown); color: #fff; border-color: var(--brown); }
.slot-date-wd { font-size: 11px; font-weight: 700; letter-spacing: 0.02em; opacity: 0.7; }
.slot-date.is-active .slot-date-wd { opacity: 0.85; }
.slot-date-dm { font-size: 13px; font-weight: 600; }

.slot-times {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding: 2px;
}
.slot-time {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
  animation: rec-fade-up 0.28s ease both;
}
.slot-time:hover:not(:disabled) { border-color: var(--brown); background: rgba(147, 87, 39, 0.05); }
.slot-time:active:not(:disabled) { transform: scale(0.96); }
.slot-time.is-active { background: var(--brown); color: #fff; border-color: var(--brown); }
.slot-time.is-disabled {
  opacity: 0.4;
  color: rgba(46, 23, 17, 0.35);
  text-decoration: line-through;
  cursor: not-allowed;
  background: rgba(46, 23, 17, 0.03);
}
.slot-hint {
  margin: 10px 0;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(46, 23, 17, 0.45);
  background: rgba(147, 87, 39, 0.04);
  border-radius: var(--radius-sm);
}

/* Checkout shipping options (AusPost PAC) */
.shipping-options { display: flex; flex-direction: column; gap: 8px; }
.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(92, 74, 58, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.shipping-option:hover { border-color: var(--brown, #5c4a3a); }
.shipping-option:has(input:checked) { border-color: var(--brown, #5c4a3a); background: rgba(92, 74, 58, 0.05); }
.shipping-option-name { flex: 1; font-size: 14px; color: var(--ink, #2c2117); }
.shipping-option-price { font-weight: 700; color: var(--brown, #5c4a3a); }
.shipping-hint { font-size: 13px; color: rgba(44, 33, 23, 0.6); margin: 4px 0; }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding-top: 8px;
  border-top: 1px solid var(--line, rgba(92, 74, 58, 0.15));
}
.checkout-total-row strong { font-size: 18px; color: var(--brown, #5c4a3a); }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.filter-tabs button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(147, 87, 39, 0.18);
  border-radius: var(--radius-sm);
  color: var(--brown-2);
  background: rgba(255, 250, 243, 0.48);
  cursor: pointer;
}

.filter-tabs button:hover {
  background: rgba(147, 87, 39, 0.1);
}

.filter-tabs button.active {
  background: var(--brown);
  color: var(--paper);
  border-color: var(--brown);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* medium is the default density */
  gap: 18px;
}

/* Grid density switcher — desktop only; narrower screens keep the responsive
   collapse to 2 / 1 columns defined in the max-width media queries below. */
@media (min-width: 1041px) {
  .product-grid.grid-large  { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .product-grid.grid-medium { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .product-grid.grid-small  { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.shop-toolbar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(46, 23, 17, 0.4);
}

.grid-size-toggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.6);
}

.grid-size-toggle button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(46, 23, 17, 0.5);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.grid-size-toggle button:hover {
  color: var(--brown);
  background: rgba(147, 87, 39, 0.08);
}

.grid-size-toggle button.active {
  background: var(--brown);
  color: #fff;
}

.grid-size-toggle button svg {
  width: 16px;
  height: 16px;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 250, 243, 0.72);
  border-color: rgba(147, 87, 39, 0.16);
  box-shadow: 0 18px 48px rgba(122, 66, 28, 0.08);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.06;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(207, 196, 177, 0.56), transparent 34%),
    linear-gradient(145deg, #fffaf3, #ded2c0);
}

.product-media::before {
  content: none;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 174, 115, 0.24);
  background: rgba(215, 174, 115, 0.06);
}

.product-media i {
  position: absolute;
  width: 44px;
  height: 44px;
  color: var(--brown);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(35, 24, 21, 0.58);
  font-size: 13px;
}

.product-title {
  min-height: 44px;
  margin: 0;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 700;
  color: var(--ink);
}

.product-description {
  min-height: 48px;
  margin: 0;
  color: rgba(35, 24, 21, 0.66);
  font-size: 13px;
  line-height: 1.48;
}

.stock-pill {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: rgba(122, 66, 28, 0.1);
  color: var(--brown-2);
  font-size: 12px;
  font-weight: 800;
}

.stock-pill.low {
  background: rgba(194, 137, 55, 0.16);
}

.stock-pill.out {
  background: rgba(130, 48, 36, 0.12);
  color: #823024;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(147, 87, 39, 0.2);
  border-radius: var(--radius-sm);
  color: var(--brown-2);
  background: rgba(255, 250, 243, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.product-buy button,
.product-detail-actions button {
  min-width: 116px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #7a421c;
  color: #f4eadc;
  cursor: pointer;
  font-weight: 800;
}

.product-buy button:disabled,
.product-detail-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(207, 196, 177, 0.42), transparent 32%),
    radial-gradient(circle at 88% 2%, rgba(215, 174, 115, 0.16), transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, #f3ece1 46%, #e8dfd0 100%);
  background-attachment: fixed;
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.product-header img {
  width: 172px;
}

.product-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-header .lang-switch {
  color: var(--brown-2);
  text-shadow: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 6vw, 74px) clamp(20px, 5vw, 72px) 86px;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  overflow: hidden;
  aspect-ratio: 1 / 0.86;
  border-radius: var(--radius-lg);
  background: #d8cdbb;
  box-shadow: var(--shadow);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.product-thumb {
  overflow: hidden;
  aspect-ratio: 1 / 0.8;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.7);
  cursor: pointer;
}

.product-thumb.is-active {
  border-color: var(--brown);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-detail-copy {
  padding-top: 24px;
}

.product-detail-copy h1 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-detail-copy p {
  color: rgba(35, 24, 21, 0.72);
  line-height: 1.72;
}

.product-detail-price {
  margin: 20px 0;
  color: var(--brown-2);
  font-size: 30px;
  font-weight: 850;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.product-detail-actions .btn {
  min-width: 150px;
}

.product-detail-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.58);
}

.related-products {
  padding: 0 clamp(20px, 5vw, 72px) 90px;
}

.related-products h2 {
  color: var(--brown-2);
}

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

.related-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(122, 66, 28, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(122, 66, 28, 0.14);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  display: block;
  object-fit: cover;
}

.related-card div {
  padding: 14px;
}

.rituals {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) 1.12fr;
  gap: 20px;
  padding: 78px clamp(22px, 5vw, 76px) 88px;
  background:
    radial-gradient(circle at 78% 0%, rgba(207, 196, 177, 0.34), transparent 32%),
    linear-gradient(180deg, #ebe4d8, var(--paper));
}

.ritual-panel {
  padding: 48px;
  color: var(--paper);
  background: linear-gradient(135deg, #6c3a1a, #9a633a);
  border-radius: var(--radius-lg);
}

.ritual-panel h2 {
  color: var(--paper);
}

.ritual-panel .eyebrow,
.ritual-panel p {
  color: rgba(255, 250, 243, 0.82);
}

.ritual-list {
  display: grid;
  gap: 14px;
}

.ritual-list article {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.ritual-list strong {
  color: var(--brown-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.ritual-list span {
  margin-top: 8px;
  color: rgba(35, 24, 21, 0.66);
}

.gift {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(22px, 5vw, 76px) 86px;
  padding: 42px;
  background:
    radial-gradient(circle at 86% 20%, rgba(215, 174, 115, 0.24), transparent 34%),
    linear-gradient(135deg, #050403, #15100d 52%, #0b0806);
  color: #f4eadc;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 174, 115, 0.26);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.gift::after {
  content: "VIP";
  position: absolute;
  right: 56px;
  bottom: 34px;
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Playfair Display", Georgia, serif;
  font-size: clamp(82px, 14vw, 168px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, rgba(255, 235, 171, 0.54), rgba(194, 137, 55, 0.18) 58%, rgba(92, 58, 23, 0.12));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.5;
  pointer-events: none;
}

.gift > * {
  position: relative;
  z-index: 1;
}

.gift h2 {
  color: #f4eadc;
}

.gift img {
  width: 54px;
  opacity: 0.92;
}

.gift .eyebrow,
.gift p {
  color: rgba(244, 234, 220, 0.78);
}

.gift .eyebrow {
  color: #d7ae73;
}

.gift .btn-cream {
  color: #15100d;
  background: linear-gradient(135deg, #f1d9ab, #d7ae73);
  border-color: rgba(215, 174, 115, 0.45);
  box-shadow: 0 14px 34px rgba(215, 174, 115, 0.18);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--white);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 26px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 20px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line p {
  margin: 0 0 6px;
  font-weight: 700;
}

.cart-line span {
  color: rgba(35, 24, 21, 0.62);
  font-size: 13px;
}

.cart-line-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.72);
  color: var(--brown-2);
  cursor: pointer;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: rgba(130, 48, 36, 0.86);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

/* Dim backdrop behind the slide-in cart drawer */
.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(24, 15, 10, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.cart-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-empty {
  margin: 0;
  padding: 24px 0;
  color: rgba(46, 23, 17, 0.5);
}

/* Cart button sits on the light product-detail header, so it needs dark ink */
.product-header .icon-btn {
  color: var(--brown-2);
  text-shadow: none;
}

.product-notfound {
  grid-column: 1 / -1;
  display: grid;
  gap: 20px;
  justify-items: start;
  padding: 60px 0;
  color: var(--ink);
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(242, 242, 242, 0.6);
}

.checkout-form[hidden] {
  display: none;
}

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

.stripe-element-wrap {
  min-height: 48px;
  padding: 4px 0 8px;
}

.stripe-element-note {
  font-size: 0.72rem;
  color: var(--taupe);
  text-align: center;
  opacity: 0.8;
}

.footer {
  background: var(--ink);
  padding: clamp(52px, 7vw, 88px) clamp(22px, 5vw, 76px) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(207, 196, 177, 0.12);
}

.footer-logo {
  width: 160px;
  display: block;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(207, 196, 177, 0.58);
  margin: 0;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 4px;
}

.footer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(207, 196, 177, 0.35);
  margin-bottom: 2px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: rgba(207, 196, 177, 0.7);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--taupe);
}

.footer-cta {
  margin-top: 4px;
  color: #d7ae73 !important;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  font-size: 12px;
  color: rgba(207, 196, 177, 0.3);
}

.footer-top {
  color: rgba(207, 196, 177, 0.45);
  letter-spacing: 0.02em;
}

.footer-top:hover {
  color: var(--taupe);
}

.hero-content,
.quick-links,
.section,
.services-immersive,
.booking-band,
.rituals,
.gift {
  animation: fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Booking page layout ────────────────────────────────────── */
.booking-page-main {
  padding: 48px clamp(22px, 5vw, 76px);
  max-width: 1200px;
  margin: 0 auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  min-width: 0;
}

.booking-card-label {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink);
}

.booking-card-sub {
  font-size: 13px;
  color: rgba(46, 23, 17, 0.55);
  margin: 0 0 22px;
  line-height: 1.55;
}

/* Branch finder */
.branch-finder {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px 20px;
  margin-bottom: 26px;
  background: rgba(254, 251, 235, 0.55);
}

.branch-finder-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--ink);
}

.branch-finder-sub {
  font-size: 12px;
  color: rgba(46, 23, 17, 0.5);
  margin: 0 0 12px;
}

.branch-location-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.branch-use-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.branch-use-location:hover { color: var(--brown-2); }
.branch-use-location svg { width: 14px; height: 14px; }

.branch-location-hint {
  font-size: 12px;
  color: rgba(46, 23, 17, 0.45);
}

.postcode-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.postcode-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(46, 23, 17, 0.5);
}

.postcode-input-group {
  display: flex;
  gap: 8px;
}

.postcode-input-group input {
  flex: 1;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 11px;
  font-size: 13px;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
}

.postcode-input-group input:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(147, 87, 39, 0.1);
}

.postcode-find-btn {
  height: 34px;
  padding: 0 14px;
  background: var(--brown);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}

.postcode-find-btn:hover { background: var(--brown-2); }

.booking-map-wrap {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e8dfd2;
  margin-bottom: 10px;
  position: relative;
}

.booking-map-wrap > #booking-map {
  width: 100%;
  height: 100%;
}

.map-key-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(147, 87, 39, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  margin-bottom: 10px;
  font-size: 12px;
  color: rgba(46, 23, 17, 0.65);
  line-height: 1.5;
}

.map-key-notice svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: var(--brown); }
.map-key-notice strong { display: block; color: var(--brown); margin-bottom: 2px; font-size: 13px; }

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.branch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background 0.18s, border-color 0.18s;
}

.branch-item:hover { border-color: rgba(147, 87, 39, 0.45); background: rgba(147, 87, 39, 0.03); }

.branch-item.is-selected {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

.branch-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.5; }
.branch-item.is-selected svg { opacity: 0.7; }

.branch-item-info { flex: 1; min-width: 0; }
.branch-item-name { display: block; font-weight: 600; }
.branch-item-sub {
  display: block;
  font-size: 11px;
  color: rgba(46, 23, 17, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.branch-item.is-selected .branch-item-sub { color: rgba(255, 255, 255, 0.65); }

.branch-distance {
  font-size: 11px;
  opacity: 0.6;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Booking form fields */
.booking-form-full {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-field-full { grid-column: 1 / -1; }

.booking-field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(46, 23, 17, 0.6);
}

.booking-field label .req { color: var(--brown); }

.booking-field input,
.booking-field select,
.booking-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(147, 87, 39, 0.1);
}

.booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.5;
  user-select: none;
}

.booking-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(92, 74, 58, 0.3);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 1px;
}
.booking-checkbox input[type="checkbox"]:hover {
  border-color: var(--brown);
}
.booking-checkbox input[type="checkbox"]:checked {
  background: var(--brown);
  border-color: var(--brown);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3.5 3.5L11.5 3' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.booking-submit-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 2px; }

/* ── Booking wizard ────────────────────────────────────────────────────────── */

.wz-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.wz-step {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  cursor: default;
  font-size: 12px;
  color: var(--taupe);
  font-family: inherit;
  white-space: nowrap;
}
.wz-step.is-done { color: var(--brown); cursor: pointer; }
.wz-step.is-active { color: var(--ink); font-weight: 600; }
.wz-step .wz-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--taupe);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wz-step.is-done .wz-num { background: var(--brown); }
.wz-step.is-active .wz-num { background: var(--ink); }
.wz-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 6px;
  min-width: 8px;
}

.wizard-panel { display: flex; flex-direction: column; gap: 16px; }
.wizard-panel[hidden] { display: none; }

/* Wizard step transitions */
@keyframes wz-step-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wz-step-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
.wz-step-enter { animation: wz-step-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both; }
.wz-step-leave { animation: wz-step-out 0.18s ease forwards; }

/* Help substep transitions */
@keyframes wz-sub-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wz-sub-enter { animation: wz-sub-in 0.22s ease both; }

/* Service mode choice */
.service-mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-mode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.service-mode-card:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.service-mode-card.is-selected { border-color: var(--brown); background: rgba(147,87,39,0.07); }
.service-mode-card svg { color: var(--brown); width: 20px; height: 20px; }
.service-mode-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.service-mode-desc { font-size: 12px; color: var(--brown-2); line-height: 1.4; }

/* Service category grid */
.service-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.catalog-fallback-notice {
  margin: 0 0 14px;
  padding: 9px 11px;
  border-left: 3px solid #b7791f;
  background: #fff7e6;
  color: #704b12;
  font-size: 12px;
}
.service-cat-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.service-cat-btn:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.service-cat-btn.is-active { border-color: var(--brown); background: rgba(147,87,39,0.07); }
.service-cat-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.service-cat-hint { font-size: 11px; color: var(--brown-2); }

/* Duration buttons */
.service-dur-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-dur-btn {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.service-dur-btn:hover { border-color: var(--brown); color: var(--brown); }
.service-dur-btn.is-selected { border-color: var(--brown); background: var(--brown); color: var(--white); }

.service-dur-grid.is-specialist { display: flex; flex-direction: column; gap: 6px; }
.service-dur-btn.service-name-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: left;
  width: 100%;
}
.service-dur-name { font-weight: 500; }
.service-dur-time {
  font-size: 11px;
  opacity: 0.55;
  font-weight: 400;
  white-space: nowrap;
  margin-left: 10px;
}

/* Thinking animation */
.rec-thinking-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 20px 40px;
  gap: 18px;
}
.rec-thinking-text {
  font-size: 13px;
  color: rgba(46,23,17,0.5);
  font-family: "Alimama FangYuan Ti VF", "Noto Sans SC", Arial, sans-serif;
}
.rec-thinking-dots {
  display: flex;
  gap: 7px;
}
.rec-thinking-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
  opacity: 0.3;
  animation: rec-dot-bounce 1.3s ease-in-out infinite;
}
.rec-thinking-dots span:nth-child(2) { animation-delay: 0.18s; }
.rec-thinking-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes rec-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-9px); opacity: 1; }
}

/* Rec item fade-in */
@keyframes rec-fade-up {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* See all services panel */
.see-all-prompt {
  font-size: 12px;
  color: rgba(46,23,17,0.42);
  margin-top: 18px;
  text-align: center;
}
.see-all-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--brown);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.see-all-link:hover { opacity: 0.75; }
#wz2h-see-all {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.see-all-cat-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(46,23,17,0.35);
  margin: 14px 0 6px;
  font-family: "Alimama FangYuan Ti VF", "Noto Sans SC", Arial, sans-serif;
}
.see-all-cat-title:first-child { margin-top: 0; }
.see-all-svc-list { display: flex; flex-direction: column; gap: 5px; }
.see-all-svc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: none;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.see-all-svc-btn:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.see-all-svc-btn.is-selected { border-color: var(--brown); background: var(--brown); color: #fff; }
.see-all-svc-name { font-weight: 500; }
.see-all-svc-meta { font-size: 11px; opacity: 0.55; white-space: nowrap; margin-left: 8px; font-weight: 400; }
.see-all-svc-btn.is-selected .see-all-svc-meta { opacity: 0.78; }

/* Help me choose sub-flow */
.help-binary-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.help-binary-btn {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.help-binary-btn:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.help-binary-btn.help-binary-skip {
  font-weight: 500;
  color: rgba(46,23,17,0.5);
  border-color: transparent;
  background: rgba(92,74,58,0.04);
}
.help-binary-btn.help-binary-skip:hover { border-color: var(--line); color: var(--ink); background: rgba(147,87,39,0.06); }

.zone-grid { grid-template-columns: repeat(3, 1fr); }

.wz2h-zones-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.wz2h-back-btn {
  background: none;
  border: none;
  padding: 6px 0;
  color: rgba(46,23,17,0.42);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
}
.wz2h-back-btn:hover { color: var(--brown); }

/* Recommendation result groups */
.rec-group { margin-top: 16px; }
.rec-group:first-child { margin-top: 0; }
.rec-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(46,23,17,0.38);
  margin: 0 0 7px;
  font-family: "Alimama FangYuan Ti VF", "Noto Sans SC", Arial, sans-serif;
}
.rec-group-label.rec-group-best { color: var(--brown); }
.rec-group-list { display: flex; flex-direction: column; gap: 6px; }
.rec-item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  width: 100%;
  text-align: left;
}
.rec-item-btn:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.rec-item-btn.is-selected { border-color: var(--brown); background: var(--brown); color: #fff; }
.rec-item-name { font-weight: 500; font-size: 13px; }
.rec-item-dur { font-size: 11px; opacity: 0.58; white-space: nowrap; margin-left: 10px; font-weight: 400; }
.rec-item-btn.is-selected .rec-item-dur { opacity: 0.78; }

.service-selected-label {
  font-size: 13px;
  color: var(--brown);
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(147,87,39,0.07);
  border-radius: var(--radius-sm);
}

/* Oil grid */
.oil-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.oil-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 10px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.oil-card:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.oil-card.is-selected { border-color: var(--brown); background: rgba(147,87,39,0.08); }
.oil-card img { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; }
.oil-card-name { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.oil-card-price { font-size: 12px; color: var(--brown); font-weight: 700; }
.oil-card-promo { font-size: 11px; color: #8b7c6a; text-decoration: line-through; }

/* Addon grid */
.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.addon-card:hover { border-color: var(--brown); background: rgba(147,87,39,0.04); }
.addon-card.is-selected { border-color: var(--brown); background: rgba(147,87,39,0.08); }
.addon-card svg { color: var(--brown); width: 18px; height: 18px; flex-shrink: 0; }
.addon-card-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--ink); }
.addon-card-price { font-size: 13px; color: var(--brown); font-weight: 700; }

/* Wizard navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.wizard-nav .btn-ghost {
  background: none;
  border: 1.5px solid var(--line);
  color: rgba(46, 23, 17, 0.5);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.wizard-nav .btn-ghost:hover {
  background: rgba(92, 74, 58, 0.06);
  border-color: rgba(92, 74, 58, 0.35);
  color: var(--brown);
}
.wizard-nav .btn { flex-shrink: 0; }

.wz-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.wz-section-sub {
  font-size: 12px;
  color: var(--brown-2);
  margin: 0;
}

/* Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.booking-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

.booking-info-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink);
  font-family: "Alimama FangYuan Ti VF", "Noto Sans SC", Arial, sans-serif;
  font-variation-settings: "BEVL" 50;
}

.booking-info-card > p {
  font-size: 13px;
  color: rgba(46, 23, 17, 0.55);
  margin: 0 0 12px;
  line-height: 1.55;
}

.info-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-tags li {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  color: rgba(46, 23, 17, 0.75);
}

.oil-recs { display: flex; flex-direction: column; }

.oil-rec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.oil-rec-item:last-child { border-bottom: none; }

.oil-rec-item img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.oil-rec-info { flex: 1; }
.oil-rec-name { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.oil-rec-price { font-size: 13px; font-weight: 700; color: var(--brown); white-space: nowrap; }

@media (max-width: 960px) {
  .booking-layout { grid-template-columns: minmax(0, 1fr); }
  .booking-sidebar { position: static; }
}

@media (max-width: 560px) {
  .booking-field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 20px 16px 24px; }
  .wz-label { display: none; }
  .wz-line { min-width: 4px; }
}

/* ── Sub-page hero ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(22px, 5vw, 76px) 72px;
  overflow: hidden;
  background: linear-gradient(155deg, #231815 0%, #5a2e10 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
}

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

.page-hero-content .eyebrow {
  color: #d7ae73;
  margin-bottom: 10px;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--paper);
}

.page-hero-content p {
  font-size: 15px;
  color: rgba(242, 242, 242, 0.62);
  max-width: 500px;
  margin: 0;
  line-height: 1.68;
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 260px;
    padding: 110px clamp(16px, 4vw, 36px) 52px;
  }
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .nav {
    display: none;
  }

  .services-immersive,
  .booking-band,
  .rituals {
    grid-template-columns: 1fr;
  }

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

  .shop-toolbar {
    display: none; /* density toggle is desktop-only */
  }

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

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

  .booking-form .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    min-height: 64px;
  }

  .brand img {
    width: 138px;
  }

  .header-actions .compact,
  .header-actions .icon-btn:first-of-type {
    display: none;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(24, 15, 10, 0.16), rgba(24, 15, 10, 0.52) 48%, rgba(24, 15, 10, 0.84));
  }

  .hero-content {
    margin: 0 auto;
    padding: 120px 0 68px;
  }

  .hero-dots {
    left: 20px;
    bottom: 28px;
  }

  .quick-links,
  .product-grid,
  .gift {
    grid-template-columns: 1fr;
  }

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

  .product-header-actions,
  .product-detail-actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions a,
  .product-buy button,
  .product-detail-actions .btn,
  .related-grid {
    width: 100%;
  }

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

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

  .quick-links a {
    aspect-ratio: auto;
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .booking-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-immersive {
    min-height: 760px;
    padding: 96px 22px 58px;
  }

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

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .gift {
    margin-bottom: 58px;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
