@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
  --cream: #fff8eb;
  --white: #fffdf8;
  --gold: #bd8b48;
  --gold-light: #dfbf89;
  --gold-deep: #98652f;
  --brown: #2f211a;
  --brown-soft: #5c493e;
  --muted: #7c6a5f;
  --line: rgba(72, 48, 33, 0.14);
  --grid-line: rgba(189, 139, 72, 0.045);
  --font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --col: min(1180px, 92vw);
  --gutter: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--brown);
  background:
    radial-gradient(circle at 8% 8%, rgba(223, 191, 137, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 34%, rgba(189, 139, 72, 0.08), transparent 34rem),
    #fffaf1;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

/* Swiss baseline grid — subtle */
.swiss-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Remove decorative graffiti — plain Swiss minimal */
.graffiti-layer,
.graffiti-stroke::after {
  display: none !important;
}

.site-header,
main,
.site-footer,
.top-bar { position: relative; z-index: 1; }

.graffiti-stroke {
  position: relative;
  display: inline;
}

.section-num {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(197, 157, 95, 0.35);
  margin: 0 0 -1.5rem;
  font-variant-numeric: tabular-nums;
}

.graffiti-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-left: 1rem;
}

.graffiti-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* Top bar — Swiss strip */
.top-bar {
  background: #fffaf1;
  color: var(--brown-soft);
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem var(--gutter);
  max-width: 100%;
  border-bottom: 1px solid var(--line);
}

.top-bar--carousel {
  position: relative;
  overflow: hidden;
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.top-bar-track {
  position: relative;
  width: 100%;
  min-height: 1.2em;
}

.top-bar-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  letter-spacing: 0.16em;
  padding: 0 0.5rem;
}

.top-bar-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .top-bar-slide {
    transition: opacity 0.2s ease;
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled { box-shadow: none; border-bottom-color: var(--brown); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  min-height: var(--header-h);
}

.brand {
  grid-column: 1;
  justify-self: start;
  line-height: 0;
}

.brand img {
  height: clamp(48px, 5.5vw, 62px);
  width: auto;
  max-width: min(240px, 38vw);
  object-fit: contain;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  gap: 1.75rem;
  margin: 0;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brown); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: var(--brown);
  position: relative;
  display: inline-grid;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 0;
}

.icon-btn:hover { color: var(--gold); background: rgba(60, 42, 33, 0.04); }

.icon-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

#search-open {
  font-size: 0;
  line-height: 0;
}

#search-open::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.75'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.75'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 99px;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}

.cart-count.visible { transform: scale(1); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  place-items: center;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--brown);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--brown);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark:hover { background: var(--gold); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.68rem; }
.btn-full { width: 100%; }

/* Hero — Swiss asymmetric */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 3rem;
  padding: 3.5rem var(--gutter) 4rem;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  padding-bottom: 2rem;
  max-width: 38rem;
}

.hero-content h1 {
  font-family: var(--font);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--brown);
  text-transform: uppercase;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero-content p {
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  border: 1px solid var(--brown);
  background: var(--white);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -1rem;
  width: min(140px, 30vw);
  height: 60px;
  background: url("assets/brand/graffiti-tag.svg") center / contain no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: min(520px, 58vh);
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}

/* USP strip */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--brown);
}

.usp-item {
  text-align: left;
  padding: 1.5rem var(--gutter);
  border-right: 1px solid var(--line);
}

.usp-item:last-child { border-right: none; }

.usp-icon {
  width: auto;
  height: auto;
  margin: 0 0 0.6rem;
  border: none;
  border-radius: 0;
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
}

.usp-item h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--brown);
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-head {
  text-align: left;
  margin-bottom: 2.5rem;
  max-width: var(--col);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-head h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.section-head p { color: var(--muted); margin: 0; font-size: 0.88rem; }

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Home carousel */
.product-carousel {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.product-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: carouselScroll 50s linear infinite;
  will-change: transform;
}

.product-carousel:hover .product-carousel-track {
  animation-play-state: paused;
}

.product-carousel .product-card {
  flex: 0 0 min(320px, 78vw);
  width: min(320px, 78vw);
}

@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 0.5rem;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--brown);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: none;
  transform: none;
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  transition: none;
  filter: none;
  display: block;
}

.product-card:hover img {
  transform: none;
  filter: none;
}

.product-card figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: transparent;
  display: block;
  line-height: 0;
}

.product-card-body { padding: 1.2rem 1.25rem 1.35rem; }

.product-card h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-subtitle {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.product-rating { font-size: 0.75rem; margin-bottom: 0.5rem; }
.product-rating .star { color: #ddd; }
.product-rating .star.filled { color: var(--gold); }
.product-rating span { color: var(--muted); margin-left: 0.3rem; }

.product-price {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

/* Promo banner — Swiss split */
.promo-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  max-width: 1280px;
  margin-inline: auto;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: brightness(1.04);
}

.promo-banner-content {
  padding: 3rem var(--gutter);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-banner h3 {
  font-family: var(--font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.promo-banner-content p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  max-width: 38ch;
}

/* About — Swiss asymmetric */
.about-swiss {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 3rem;
  align-items: start;
  text-align: left;
  max-width: 720px;
}

.section--about {
  background: var(--white);
  border-top: 1px solid var(--brown);
}

/* Collection page */
.page-hero {
  text-align: left;
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--brown);
  position: relative;
}

.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
  max-width: 40ch;
}

.collection-toolbar {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.toolbar-btn {
  background: var(--white);
  border: 1px solid var(--brown);
  border-radius: 0;
  padding: 0.55rem 1.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--brown-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.toolbar-btn:hover, .toolbar-btn.active {
  border-color: var(--gold);
  background: var(--brown);
  color: var(--cream);
}

.collection-list { display: flex; flex-direction: column; gap: 1rem; }

/* Collection page grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  padding-bottom: 4rem;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.collection-grid.is-filtering {
  opacity: 0;
  transform: translateY(14px);
}

.collection-grid .product-card {
  position: relative;
  overflow: hidden;
}

.collection-grid .product-card::before {
  display: none;
}

.collection-card-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: collectionCardIn 0.75s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes collectionCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .collection-card-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }

  /* True center logo: equal side columns */
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.55rem 0.85rem;
    gap: 0.35rem;
  }

  .menu-btn {
    width: 28px;
    height: 28px;
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .menu-btn span {
    width: 14px;
    height: 1.5px;
    margin: 2.5px auto;
  }

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

  .brand img {
    height: clamp(36px, 9.5vw, 46px);
    max-width: min(160px, 48vw);
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-card-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.collection-grid .product-card-body {
  position: relative;
  z-index: 2;
}

.collection-grid .product-card .btn-gold {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s ease;
}

.collection-grid .product-card:hover .btn-gold {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .collection-grid .product-card .btn-gold {
    opacity: 1;
    transform: none;
  }
}

.collection-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.collection-row-img {
  line-height: 0;
  background: transparent;
}

.collection-row-img img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

.collection-row h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.2rem;
}

/* Product detail page */
#product-page {
  width: min(1360px, 100%);
  max-width: 100%;
  padding-inline: clamp(0.85rem, 3.5vw, 1.5rem);
  box-sizing: border-box;
}

.breadcrumbs {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 1.35rem 0;
  letter-spacing: 0.03em;
}

.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 0.4rem; }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-self: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
}

.product-gallery-main {
  --gallery-stage-max: min(70vh, 640px);
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-rows: auto auto;
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
  min-height: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(206, 163, 98, 0.16), transparent 34%),
    linear-gradient(145deg, #fffdf8, #f5ecdf);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(0.75rem, 2vw, 1.1rem);
  gap: 0.55rem;
  position: relative;
  top: auto;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(47, 33, 26, 0.06);
  outline: none;
}

.product-gallery-main:focus-visible {
  box-shadow: 0 0 0 3px rgba(189, 139, 72, 0.24), 0 20px 55px rgba(47, 33, 26, 0.08);
}

.gallery-zoom-trigger {
  position: relative;
  inset: auto;
  grid-row: 1;
  grid-column: 1;
  /* True 3:4 stage so portrait product photos show in full without crop */
  width: min(100%, calc(var(--gallery-stage-max) * 3 / 4));
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: var(--gallery-stage-max);
  min-width: 0;
  min-height: 0;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
}

.gallery-zoom-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.gallery-brand-signature {
  position: absolute;
  z-index: 2;
  left: 0.55rem;
  bottom: 0.55rem;
  width: 42px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  padding: 0.35rem;
  border-radius: 10px;
  background: rgba(47, 33, 26, 0.88);
  box-shadow: 0 6px 16px rgba(47, 33, 26, 0.12);
  opacity: 0.9;
  transform: none;
  pointer-events: none;
}

.product-gallery-main #main-image {
  position: absolute;
  inset: 0.4rem;
  width: calc(100% - 0.8rem);
  height: calc(100% - 0.8rem);
  max-width: none;
  max-height: none;
  object-fit: contain !important;
  object-position: center;
  display: block;
  transition: opacity 0.25s ease;
}

.product-gallery-main #main-image.is-switching {
  opacity: 0.28;
}

.gallery-zoom-hint {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(76, 54, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--brown-soft);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.gallery-zoom-hint svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.gallery-status {
  position: relative;
  z-index: 1;
  grid-row: 2;
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 0;
  padding: 0.15rem 0.15rem 0;
  border-top: 1px solid rgba(76, 54, 42, 0.12);
  color: var(--brown-soft);
  pointer-events: none;
}

.gallery-status span:first-child {
  flex: 0 0 auto;
  padding-top: 0.55rem;
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.gallery-status span:last-child {
  overflow: hidden;
  padding-top: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--brown);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: none;
}

.gallery-nav:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--white);
}

.gallery-nav:disabled,
.gallery-nav[hidden] {
  display: none;
}

.gallery-nav--prev { left: 0.85rem; }
.gallery-nav--next { right: 0.85rem; }

.product-thumbs {
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.35rem;
  position: static;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.product-thumbs .gallery-thumb {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  background: var(--white);
  opacity: 0.78;
  overflow: hidden;
  scroll-snap-align: start;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.product-thumbs .gallery-thumb.active,
.product-thumbs .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 157, 95, 0.18);
}

.product-thumbs .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f4ef;
  display: block;
  pointer-events: none;
}

.lightbox-open {
  overflow: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: 52px minmax(0, 760px) 52px;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(24, 18, 14, 0.94);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox.is-open {
  opacity: 1;
}

.lightbox-figure {
  width: 100%;
  height: min(78vh, 760px);
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #f7f1e8;
  transform: translateY(12px) scale(0.985);
  transition: transform 0.35s var(--ease);
}

.product-lightbox.is-open .lightbox-figure {
  transform: translateY(0) scale(1);
}

.lightbox-figure img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(0.5rem, 2vw, 1.25rem);
  object-fit: contain;
  object-position: center;
}

.lightbox-figure figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 54px;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(76, 54, 42, 0.14);
  background: rgba(255, 253, 248, 0.96);
}

.lightbox-figure figcaption span {
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.lightbox-figure figcaption p {
  margin: 0;
  color: var(--brown-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-nav {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid #e6be7a;
  outline-offset: 3px;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-close {
  position: absolute;
  top: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 2vw, 2rem);
}

.lightbox-nav--prev { justify-self: start; }
.lightbox-nav--next { justify-self: end; }

@media (prefers-reduced-motion: reduce) {
  .product-gallery-main img,
  .product-lightbox,
  .lightbox-figure {
    transition: none;
  }
}

/* Product info column — Ajmal-inspired buy box */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 0.25rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  box-shadow: none;
  backdrop-filter: none;
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pdp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(189, 139, 72, 0.12);
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-info-header {
  padding-bottom: 0;
  border-bottom: none;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.05;
  color: var(--brown);
}

.pdp-scent-line {
  margin: 0 0 0.55rem;
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.product-info .product-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  margin: 0;
  color: var(--brown-soft);
}

.product-info .product-rating .star.filled { color: var(--gold); }
.product-info .product-rating .rating-count {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-purchase-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.15rem;
  border-top: none;
}

.price-block { display: grid; gap: 0.2rem; }

.price-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.product-price-lg {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  border: none;
  color: var(--brown);
}

.product-price-compare {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-save {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: #1f7a45;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tax-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}

.pdp-usp {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pdp-usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brown-soft);
  line-height: 1.25;
}

.pdp-usp-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(189, 139, 72, 0.28);
  background: rgba(255, 253, 248, 0.9);
}

.pdp-usp-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-buy-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: stretch;
}

.pdp-buy-row .qty-selector {
  height: 52px;
}

.pdp-buy-row .qty-selector button,
.pdp-buy-row .btn {
  min-height: 52px;
}

.pdp-buy-now {
  min-height: 52px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.pdp-vibes { display: grid; gap: 0.45rem; }

.pdp-vibe-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pdp-vibe-chip {
  min-height: 34px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.85);
  color: var(--brown-soft);
  font-size: 0.72rem;
}

.pdp-notes {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.pdp-notes-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.pdp-notes-tab {
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--brown-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.pdp-notes-tab[aria-selected="true"] {
  background: var(--brown);
  border-color: var(--brown);
  color: #fffdf8;
}

.pdp-note-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-note-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(189, 139, 72, 0.22);
  background: linear-gradient(145deg, #fffdf8, #f6ecdf);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 500;
}

.pdp-note-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pdp-accordion {
  display: grid;
  gap: 0;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

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

.pdp-acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown);
}

.pdp-acc-item summary::-webkit-details-marker { display: none; }

.pdp-acc-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold-deep);
  line-height: 1;
}

.pdp-acc-item[open] summary::after { content: "–"; }

.pdp-acc-body {
  padding: 0 0 1.15rem;
}

.pdp-details-table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-details-table th,
.pdp-details-table td {
  padding: 0.7rem 0.35rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.86rem;
}

.pdp-details-table th {
  width: 34%;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.pdp-details-table td { color: var(--brown-soft); }

.pdp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(47, 33, 26, 0.08);
  backdrop-filter: blur(12px);
}

.pdp-sticky-meta { min-width: 0; }
.pdp-sticky-name {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-price {
  margin: 0.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brown);
}
.pdp-sticky-bar .btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.product-about-section {
  padding: 0.15rem 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0 0 0.45rem;
}

.about-text {
  color: var(--brown-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.option-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.45rem;
}

.size-options {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
}

.size-btn {
  background: var(--cream);
  border: 1px solid var(--line);
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 10px;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.size-btn.active,
.size-btn:hover {
  border-color: var(--gold);
  background: rgba(197, 157, 95, 0.1);
  color: var(--brown);
  box-shadow: inset 0 0 0 1px rgba(189, 139, 72, 0.16);
}

.size-btn.is-oos,
.size-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
  box-shadow: none;
}

.size-btn.is-oos:hover,
.size-btn:disabled:hover {
  border-color: var(--line);
  background: var(--cream);
  color: inherit;
  box-shadow: none;
}

.pdp-stock-hint {
  margin: 0.45rem 0 0;
  min-height: 1.1em;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #8a4b3a;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  margin: 0;
}

.qty-selector button {
  width: 44px;
  height: 100%;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--brown);
}

.qty-selector span {
  width: 36px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}

.trust-row span { display: flex; align-items: center; gap: 0.35rem; }

.trust-row svg,
.product-feature svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-specs-section {
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: 1.25rem;
}

.product-specs-section .section-label {
  font-size: 0.86rem;
  margin-bottom: 0.65rem;
}

.notes-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.notes-three-col:has(.note-col-item:only-child) {
  grid-template-columns: 1fr;
}

.notes-three-col:has(.note-col-item:only-child) .note-col-item {
  max-width: 520px;
}

.note-col-item {
  position: relative;
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 234, 0.88));
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.note-col-index {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
}

@media (hover: hover) {
  .note-col-item:hover {
    border-color: rgba(189, 139, 72, 0.45);
    box-shadow: 0 12px 30px rgba(47, 33, 26, 0.07);
  }
}

.note-col-item h4 {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.note-col-item p {
  font-size: 0.76rem;
  color: var(--brown-soft);
  margin: 0;
  line-height: 1.55;
  text-align: left;
}

.product-specs-ingredients {
  padding-top: 0;
  border-top: 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ingredient-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.86);
}

.ingredient-language {
  margin: 0 0 0.45rem;
  color: var(--gold-deep);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ingredients-text {
  font-size: 0.76rem;
  color: var(--brown-soft);
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

.product-specs-ingredients .ingredients-ar {
  margin: 0;
  font-size: 0.76rem;
  color: var(--brown-soft);
  line-height: 1.65;
  text-align: right;
}

.ingredient-card--ar .ingredient-language {
  text-align: right;
}

.product-visual-story {
  padding: 0.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.product-visual-story[hidden] {
  display: none;
}

.visual-story-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 1rem;
}

.visual-story-kicker {
  margin: 0 0 0.45rem;
  color: var(--gold-deep);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-story-head h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 500;
}

.visual-story-actions {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
}

.visual-story-actions > p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.visual-story-controls {
  display: flex;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.visual-story-controls button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--brown);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.visual-story-controls button:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: #fffaf1;
}

.visual-story-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-story-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.visual-story-grid::-webkit-scrollbar { display: none; }

.visual-story-card {
  flex: 0 0 clamp(220px, 25vw, 290px);
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.visual-story-card--image {
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}

.visual-story-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  padding: 0.75rem;
  background: #f7f4ef;
  overflow: hidden;
}

.visual-story-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

@media (hover: hover) {
  .visual-story-card:hover {
    border-color: rgba(189, 139, 72, 0.42);
    box-shadow: 0 18px 42px rgba(47, 33, 26, 0.08);
  }

  .visual-story-card:hover .visual-story-media img {
    transform: scale(1.025);
  }
}

.visual-story-card--video .visual-story-media {
  padding: 0;
  background: #17130e;
}

.visual-story-card--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-story-card figcaption,
.visual-story-caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 58px;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
}

.visual-story-card figcaption span,
.visual-story-caption > span {
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.visual-story-card figcaption p,
.visual-story-caption p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.7rem;
  line-height: 1.35;
}

.ingredients-section--compact {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.ingredients-section--compact h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

/* Fragrance notes (legacy sections) */
.notes-section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.notes-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  position: relative;
}

.notes-section h2::before,
.notes-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--line);
}

.notes-section h2::before { right: calc(50% + 120px); }
.notes-section h2::after { left: calc(50% + 120px); }

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.note-card { text-align: center; }

.note-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.note-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.note-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* Compact product detail sections */
.notes-section--compact {
  padding: 2rem 0;
}

.notes-section--compact h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.notes-section--compact h2::before,
.notes-section--compact h2::after {
  width: 50px;
}

.notes-section--compact h2::before { right: calc(50% + 90px); }
.notes-section--compact h2::after { left: calc(50% + 90px); }

.notes-grid--compact {
  gap: 0.8rem;
}

.note-card--compact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.note-card--compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60, 42, 33, 0.06);
}

.note-emoji {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: rgba(197, 157, 95, 0.1);
  border-radius: 50%;
}

.note-card-content h4 {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.2rem;
}

.note-card-content p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.about-section--compact {
  gap: 1.5rem;
  padding: 2rem 0;
}

.about-section--compact h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.about-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.about-tags--compact {
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.about-tags--compact .about-tag {
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  background: rgba(197, 157, 95, 0.08);
  border: 1px solid var(--line);
  border-radius: 99px;
}

.ingredient-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ingredient-chip {
  font-size: 0.72rem;
  color: var(--brown-soft);
  padding: 0.35rem 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  line-height: 1.3;
}

.about-section--compact .ingredients-ar {
  margin-top: 0.6rem;
  font-size: 0.78rem;
}

.reviews-section--compact {
  padding: 2rem 0 2.5rem;
}

.reviews-top h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.reviews-mini-summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviews-section--compact .reviews-score {
  font-size: 1.8rem;
}

.reviews-count {
  font-size: 0.78rem;
  color: var(--muted);
}

.reviews-carousel {
  overflow: hidden;
  margin-top: 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews-carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviewsScroll 35s linear infinite;
}

.reviews-carousel:hover .reviews-carousel-track {
  animation-play-state: paused;
}

.review-card--compact {
  flex: 0 0 min(300px, 82vw);
  width: min(300px, 82vw);
  padding: 0.9rem 1rem;
}

.review-card--compact .review-avatar {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
}

.review-card--compact h4 {
  font-size: 0.78rem;
}

.review-card--compact p {
  font-size: 0.78rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card--compact .verified {
  font-size: 0.6rem;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
  }
}

/* About & ingredients */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.about-divider { background: var(--line); }

.about-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.about-tags {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.about-tag svg { color: var(--gold); }

.ingredients-ar {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  direction: rtl;
}

/* Reviews */
.reviews-section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.review-card h4 { font-size: 0.85rem; margin: 0; }
.verified { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.review-card p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Values banner */
.values-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  padding: 0.9rem 4vw;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 1280px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.value-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
  margin: 0;
  color: var(--gold);
}

/* Cart page */
.cart-page {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.cart-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.cart-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.cart-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--brown);
  line-height: 1;
}

.cart-continue {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  border-bottom: 1px solid rgba(189, 139, 72, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cart-continue:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

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

.cart-items-panel {
  border: 1px solid rgba(76, 54, 42, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 157, 95, 0.1), transparent 40%),
    linear-gradient(165deg, #fffdf9 0%, #f8f0e4 100%);
  box-shadow: 0 16px 40px rgba(47, 33, 26, 0.05);
  overflow: hidden;
}

.cart-items-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(76, 54, 42, 0.1);
}

.cart-items-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
}

.cart-items-head p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-items-list {
  display: grid;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid rgba(76, 54, 42, 0.1);
}

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

.cart-item-media {
  width: 108px;
  height: 108px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #fffdf8, #efe3d0);
  border: 1px solid rgba(76, 54, 42, 0.1);
  display: grid;
  place-items: center;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
  display: block;
}

.cart-item-body {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.cart-item-copy h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  color: var(--brown);
}

.cart-item-copy a:hover h4 {
  color: var(--gold-deep);
}

.cart-item-row .item-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.cart-item-unit {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--brown-soft);
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cart-qty {
  border-radius: 999px;
  border-color: rgba(76, 54, 42, 0.16);
  background: #fff;
  overflow: hidden;
}

.cart-qty button {
  min-height: 38px;
  width: 38px;
}

.cart-qty span {
  min-width: 28px;
  font-size: 0.85rem;
}

.remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 54, 45, 0.22);
  background: rgba(255, 253, 248, 0.9);
  color: #8c362d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.remove-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.remove-btn:hover {
  background: #8c362d;
  border-color: #8c362d;
  color: #fffdf8;
  transform: translateY(-1px);
}

.remove-btn:active {
  transform: translateY(0);
}

.cart-item-price-wrap {
  align-self: start;
  padding-top: 0.2rem;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.cart-summary {
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 157, 95, 0.16), transparent 42%),
    linear-gradient(165deg, #fffdf9 0%, #f4ead9 100%);
  border: 1px solid rgba(76, 54, 42, 0.12);
  border-radius: 22px;
  padding: 1.25rem 1.2rem 1.35rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  box-shadow: 0 18px 42px rgba(47, 33, 26, 0.06);
}

.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--brown);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.86rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.summary-row.total {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 600;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(76, 54, 42, 0.12);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.summary-row.total strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.cart-checkout-btn {
  margin-top: 1.1rem;
  border-radius: 999px;
  min-height: 50px;
  letter-spacing: 0.12em;
}

.cart-summary-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.5;
}

.cart-empty-state {
  text-align: center;
  padding: 1rem 0 2rem;
}

.cart-empty-card {
  max-width: 420px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem) 1.5rem;
  border: 1px solid rgba(76, 54, 42, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 157, 95, 0.14), transparent 50%),
    linear-gradient(165deg, #fffdf9 0%, #f8f0e4 100%);
  box-shadow: 0 16px 40px rgba(47, 33, 26, 0.05);
}

.cart-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(189, 139, 72, 0.35);
  background: rgba(255, 253, 248, 0.9);
  color: var(--gold-deep);
}

.cart-empty-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty-card h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
}

.cart-empty-card p {
  color: var(--muted);
  margin: 0 0 1.35rem;
  line-height: 1.55;
}

.cart-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-trust svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
  .cart-page-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .cart-item-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.85rem;
  }
  .cart-item-media {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }
  .cart-item-price-wrap {
    grid-column: 2;
    padding-top: 0;
  }
  .remove-btn span {
    display: none;
  }
  .remove-btn {
    padding: 0.4rem 0.65rem;
  }
}

/* Checkout */
.checkout-page {
  padding: 2rem 0 4rem;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.checkout-step {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.checkout-step.active { color: var(--brown); font-weight: 500; }
.checkout-step.done { color: var(--brown-soft); }

.checkout-step .step-num {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.checkout-step.active .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.checkout-step.done .step-num {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
}

.checkout-main {
  min-width: 0;
}

.checkout-summary {
  width: 100%;
  max-width: 100%;
}

.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.checkout-form label.full,
.checkout-form .payment-options,
.checkout-form .checkout-nav-row,
.checkout-form .checkout-mobile-cta {
  grid-column: 1 / -1;
}

.checkout-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}

.checkout-nav-row .btn {
  min-width: 9rem;
}

.confirm-block {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.confirm-block p {
  margin: 0 0 0.25rem;
}

.checkout-edit-link {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.checkout-mobile-cta {
  display: none;
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: -1;
    position: static;
  }

  .checkout-desktop-cta {
    display: none !important;
  }

  .checkout-mobile-cta {
    display: block;
  }

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

.checkout-panel {
  background: var(--white);
  border: 1px solid var(--brown);
  border-radius: 0;
  padding: 1.8rem;
}

.checkout-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 1.2rem;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.checkout-form label span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-form label span .req {
  color: #8a2f2a;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}

.checkout-form label span .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.72rem;
  opacity: 0.85;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 0.9rem;
  color: var(--brown);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.payment-options { display: flex; flex-direction: column; gap: 0.5rem; }

.checkout-status {
  min-height: 1.5rem;
  margin: -1.5rem auto 1rem;
  max-width: 760px;
  color: var(--brown-soft);
  text-align: center;
  font-size: 0.85rem;
}

.checkout-status.error,
.coupon-message.error {
  color: #9b2c2c;
}

.checkout-item {
  margin: 0.4rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.payment-note {
  margin: 0;
  padding: 0.9rem;
  border: 1px solid #9b2c2c;
  color: #9b2c2c;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-form input:focus-visible,
.checkout-form textarea:focus-visible,
.payment-option:focus-within,
.btn:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  background: #faf8f6;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.payment-option::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--brown);
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}

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

.payment-option span {
  flex: 1;
  line-height: 1.35;
}

.payment-option:has(input:checked)::before {
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: inset 0 0 0 3px #faf8f6;
}

/* Order success */
.success-page {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 520px;
  margin: 0 auto;
}

.success-page h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
}

.order-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.2rem;
  margin: 1.5rem 0;
  text-align: left;
}

.order-box p { margin: 0.3rem 0; font-size: 0.85rem; }
.order-box strong { color: var(--brown); }

.result-icon--fail {
  background: #f3e2e0;
  color: #8a2f2a;
  border: 1px solid #d9a8a3;
}
.result-icon--offline {
  background: #efe8df;
  color: #5c4033;
  border: 1px solid #cbb9a8;
}
.result-page--fail h1,
.result-page--offline h1 {
  letter-spacing: 0.02em;
}

.delivery-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Footer — Swiss grid on brand brown */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  border-top: 1px solid rgba(223, 191, 137, 0.22);
  padding: 3.5rem var(--gutter) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.footer-brand img {
  width: auto;
  height: 64px;
  margin-bottom: 1rem;
  object-fit: contain;
  /* Warm gold wordmark on brown footer */
  filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(780%) hue-rotate(359deg) brightness(96%) contrast(92%);
  opacity: 1;
}

.footer-brand h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.footer-brand p,
.footer-newsletter p {
  max-width: 34ch;
  margin: 0 0 1.2rem;
  color: rgba(255, 248, 235, 0.72);
  font-size: 0.78rem;
  line-height: 1.65;
}

.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(223, 191, 137, 0.35);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(223, 191, 137, 0.08);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--gold-light);
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 0.6rem;
  color: rgba(255, 248, 235, 0.72);
  font-size: 0.78rem;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}

.footer-col a:hover { color: var(--gold-light); }

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(223, 191, 137, 0.4);
}

.newsletter-form input {
  flex: 1;
  border: none;
  min-width: 0;
  padding: 0.7rem 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: 0.78rem;
}

.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: rgba(255, 248, 235, 0.45); }

.newsletter-form button {
  width: 38px;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.55);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(223, 191, 137, 0.18);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.footer-credit {
  letter-spacing: 0.1em;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
}

.toast {
  background: var(--brown);
  color: var(--cream);
  padding: 0.85rem 1.4rem;
  font-size: 0.82rem;
  margin-top: 0.5rem;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

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

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image::before { display: none; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner-content { border-left: none; border-top: 1px solid var(--line); }
  .header-inner {
    grid-template-columns: 40px 1fr 80px;
    padding: 0.65rem 1rem;
    gap: 0.5rem;
  }
  .menu-btn {
    display: grid;
    grid-column: 1;
    justify-self: start;
  }
  .brand {
    grid-column: 2;
  }
  .brand img {
    height: clamp(40px, 11vw, 52px);
    max-width: min(180px, 55vw);
  }
  .header-actions {
    grid-column: 3;
    gap: 0;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  .icon-btn svg {
    width: 20px;
    height: 20px;
  }
  #search-open::before {
    width: 18px;
    height: 18px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: min(78vw, 300px);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #faf8f6;
    padding: 5.25rem 1.35rem 1.75rem;
    border-bottom: none;
    border-right: 1px solid var(--line);
    transform: translateX(-105%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.28s var(--ease, ease);
    z-index: 220;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 10px 0 36px rgba(47, 33, 26, 0.14);
  }
  .nav-links a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(30, 20, 14, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 210;
    cursor: pointer;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header {
    z-index: 230;
  }
  .product-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    align-self: auto;
  }
  .product-gallery-main {
    position: relative;
    top: auto;
    --gallery-stage-max: min(62vh, 520px);
    padding: 0.75rem;
  }
  .product-info { position: static; }
  .pdp-usp { gap: 0; }
  .pdp-usp-icon { width: 36px; height: 36px; }
  .pdp-sticky-bar { display: flex; }
  body:has(.pdp-sticky-bar:not([hidden])) {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
  .gallery-nav { width: 36px; height: 36px; }
  .gallery-nav--prev { left: 0.5rem; }
  .gallery-nav--next { right: 0.5rem; }
  .product-thumbs {
    display: flex;
    flex-direction: row;
    align-items: initial;
    gap: 0.65rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.5rem;
    position: static;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .product-thumbs::-webkit-scrollbar { display: none; }
  .product-thumbs .gallery-thumb { width: 64px; height: 64px; }
  .product-specs-section {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-specs-ingredients {
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }
  .notes-three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .note-col-item { border-right: 1px solid var(--line); }
  .purchase-options { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr; }
  .visual-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid, .notes-grid, .reviews-grid, .usp-strip, .values-banner, .footer-grid { grid-template-columns: 1fr 1fr; }
  .collection-row { grid-template-columns: 80px 1fr; }
  .collection-row .btn { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .collection-grid,
  .product-grid, .notes-grid, .reviews-grid, .usp-strip, .values-banner, .footer-grid { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-divider { display: none; }
  .site-footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2.25rem; }
  .footer-brand img { height: 56px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    line-height: 1.6;
    text-align: center;
  }
  .ingredients-grid { grid-template-columns: 1fr; }
  .notes-three-col { grid-template-columns: 1fr; }
  .visual-story-grid {
    gap: 0.65rem;
  }
  .visual-story-head { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .visual-story-actions {
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .visual-story-actions > p { max-width: 25ch; }
  .visual-story-card { flex-basis: min(76vw, 280px); }
  .product-gallery { max-width: 100%; }
  .product-info {
    padding: 0;
    border-radius: 16px;
    backdrop-filter: none;
  }
  .product-info h1 { font-size: clamp(1.65rem, 9vw, 2.2rem); }
  .product-gallery-main {
    --gallery-stage-max: min(58vh, 480px);
    padding: 0.55rem;
    border-radius: 16px;
  }
  .gallery-zoom-hint {
    top: 0.55rem;
    right: 0.55rem;
    min-height: 32px;
    padding: 0.35rem 0.55rem;
  }
  .gallery-zoom-trigger {
    inset: auto;
    width: 100%;
    max-width: 100%;
  }
  .gallery-brand-signature {
    left: 0.45rem;
    bottom: 0.45rem;
    top: auto;
    width: 36px !important;
    padding: 0.28rem;
  }
  .gallery-status {
    left: auto;
    right: auto;
    bottom: auto;
  }
  .product-thumbs .gallery-thumb {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    scroll-snap-align: start;
  }
  .product-features { gap: 0.45rem; }
  .product-feature { font-size: 0.64rem; }
  .trust-row { justify-content: space-between; gap: 0.75rem; }
  .values-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.75rem 1rem;
  }
  .value-item {
    justify-content: flex-start;
    min-height: 32px;
  }

  .product-lightbox {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 4.5rem 0.75rem 1rem;
  }
  .lightbox-figure {
    width: 100%;
    height: min(82vh, calc((100vw - 1.5rem) * 1.333 + 62px));
    border-radius: 14px;
  }
  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24, 18, 14, 0.68);
  }
  .lightbox-nav--prev { left: 1rem; }
  .lightbox-nav--next { right: 1rem; }
  .lightbox-figure figcaption {
    align-items: flex-start;
    min-height: 62px;
  }
  .lightbox-figure figcaption p {
    font-size: 0.78rem;
    line-height: 1.3;
  }
}

/* ========== PDP redesign — carousel + buy UI ========== */
.pdp-layout {
  gap: clamp(1.75rem, 4vw, 4rem);
}

.product-gallery-main {
  --gallery-stage-max: min(78vh, 720px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 70% 12%, rgba(189, 139, 72, 0.22), transparent 42%),
    linear-gradient(160deg, #1a120e 0%, #3a2a20 48%, #2a1d16 100%);
  border: 1px solid rgba(189, 139, 72, 0.28);
  box-shadow: 0 28px 60px rgba(47, 33, 26, 0.18);
  overflow: hidden;
}

.gallery-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: var(--gallery-stage-max);
  overflow: hidden;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(1rem, 3vw, 1.75rem);
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: grid;
  place-items: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
  user-select: none;
  pointer-events: none;
}

.gallery-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.gallery-nav:hover {
  background: rgba(255, 253, 248, 0.22);
  border-color: rgba(230, 190, 122, 0.7);
  color: #f5e6c8;
}

.gallery-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}

.gallery-status {
  border-top: 0;
  padding: 0;
  color: rgba(255, 253, 248, 0.82);
  min-width: 0;
}

.gallery-status span:first-child {
  padding-top: 0;
  color: #e6be7a;
  letter-spacing: 0.16em;
}

.gallery-status span:last-child {
  padding-top: 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.82rem;
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.35);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.25s ease;
}

.gallery-dot.active {
  width: 22px;
  background: #e6be7a;
}

.gallery-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 253, 248, 0.12);
  overflow: hidden;
  z-index: 3;
}

.gallery-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c59d5f, #f0d29a);
}

.product-thumbs .gallery-thumb {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
  border-radius: 14px;
  border-width: 1px;
  background: linear-gradient(145deg, #fffdf8, #f3e8d6);
}

.product-thumbs .gallery-thumb.active {
  border-color: var(--gold-deep);
  box-shadow: 0 8px 20px rgba(152, 101, 47, 0.2);
}


.product-info {
  gap: 0;
  padding: 0;
  height: var(--pdp-gallery-height, auto);
  max-height: var(--pdp-gallery-height, none);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.pdp-buy-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(76, 54, 42, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 157, 95, 0.14), transparent 42%),
    linear-gradient(165deg, #fffdf9 0%, #f8f0e4 100%);
  box-shadow: 0 18px 42px rgba(47, 33, 26, 0.06);
}

.pdp-buy-panel .pdp-vibes,
.pdp-buy-panel .pdp-notes {
  margin: 0;
  flex: 0 0 auto;
}

.pdp-buy-panel .product-purchase-section {
  gap: 0.85rem;
  padding-top: 0.85rem;
}

.pdp-buy-panel .pdp-usp {
  padding: 0.2rem 0;
}

.pdp-buy-panel .pdp-vibes {
  padding: 0.75rem 0 0;
  border: 0;
  border-top: 1px solid rgba(76, 54, 42, 0.1);
  border-radius: 0;
  background: transparent;
}

.pdp-buy-panel .pdp-notes {
  padding: 0.85rem 0 0;
  border: 0;
  border-top: 1px solid rgba(76, 54, 42, 0.1);
  border-radius: 0;
  background: transparent;
  margin-top: auto;
}

.pdp-badge {
  min-height: 28px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(189, 139, 72, 0.35);
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-info h1 {
  font-size: clamp(2.05rem, 3.8vw, 2.95rem);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  line-height: 0.98;
}

.pdp-scent-line {
  color: var(--brown-soft);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.product-purchase-section {
  gap: 1.1rem;
  padding: 1.05rem 0 0;
  border-top: 1px solid rgba(76, 54, 42, 0.12);
}

.product-price-lg {
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  letter-spacing: 0.02em;
}

.price-save {
  border-radius: 999px;
  background: rgba(31, 122, 69, 0.12);
  color: #1f7a45;
  border: 1px solid rgba(31, 122, 69, 0.28);
  font-weight: 700;
}

.pdp-usp {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0.35rem 0;
  border-top: 0;
  border-bottom: 0;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(76, 54, 42, 0.1);
  border-radius: 16px;
  overflow: visible;
}

.pdp-usp-item {
  gap: 0.45rem;
  padding: 0.85rem 0.55rem;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
}

.pdp-usp-item + .pdp-usp-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(76, 54, 42, 0.12);
}

.pdp-usp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border-color: rgba(189, 139, 72, 0.35);
  background: linear-gradient(160deg, #fffdf8, #ead9b8);
}

.size-options {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 0;
  padding: 3px;
  border: 1px solid rgba(76, 54, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
}

.size-btn {
  min-height: 40px;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  letter-spacing: 0.12em;
  box-shadow: none;
  font-weight: 600;
}

.size-btn.active,
.size-btn:hover {
  background: var(--brown);
  color: #fffdf8;
  border-color: transparent;
  box-shadow: none;
}

.size-btn.is-oos,
.size-btn:disabled {
  opacity: 0.42;
  text-decoration: line-through;
  background: transparent;
  color: inherit;
}

.size-btn.is-oos:hover,
.size-btn:disabled:hover {
  background: transparent;
  color: inherit;
}

.pdp-buy-row {
  gap: 0.7rem;
}

.qty-selector {
  border-radius: 999px;
  border-color: rgba(47, 33, 26, 0.16);
  background: #fff;
  overflow: hidden;
}

.pdp-buy-row .btn,
.pdp-buy-now {
  border-radius: 999px;
  letter-spacing: 0.14em;
}

.pdp-buy-row .btn-dark {
  background: var(--brown);
  border-color: var(--brown);
}

.pdp-buy-now {
  background: linear-gradient(120deg, #d4b06f, #a67835);
  border: 0;
  color: #1a120e;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(166, 120, 53, 0.22);
}

.pdp-buy-now:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.trust-row {
  gap: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(76, 54, 42, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.pdp-vibes {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(76, 54, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.55);
}

.pdp-vibe-chip {
  border-radius: 999px;
  border-color: rgba(189, 139, 72, 0.3);
  background: linear-gradient(145deg, #fffdf8, #f3e7d4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--brown);
}

.pdp-notes {
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid rgba(76, 54, 42, 0.1);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 253, 248, 0.95), rgba(245, 234, 216, 0.88));
}

.pdp-notes-tabs {
  gap: 0.25rem;
  padding: 3px;
  border: 1px solid rgba(76, 54, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  width: fit-content;
  max-width: 100%;
}

.pdp-notes-tab {
  border: 0;
  border-radius: 999px;
  min-height: 34px;
}

.pdp-notes-panel {
  min-height: 56px;
}

.pdp-note-chip {
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
}

.pdp-accordion {
  margin-top: 0.35rem;
  border: 1px solid rgba(76, 54, 42, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.7);
}

.pdp-acc-item {
  border-bottom: 1px solid rgba(76, 54, 42, 0.1);
  padding-inline: 1.05rem;
}

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

.pdp-acc-item summary {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.product-visual-story {
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.visual-story-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.visual-story-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.02em;
}

.visual-story-viewport {
  position: relative;
  margin-inline: -0.15rem;
}

.visual-story-grid {
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 0.25rem 0.15rem 0.85rem;
}

.visual-story-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(76, 54, 42, 0.12);
  background: #fff;
  box-shadow: 0 14px 32px rgba(47, 33, 26, 0.06);
  flex-basis: min(72vw, 320px);
}

.visual-story-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding-top: 0.15rem;
}

.visual-story-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(76, 54, 42, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.visual-story-dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, #c59d5f, #a67835);
}

.pdp-sticky-bar {
  background: rgba(26, 18, 14, 0.94);
  border-top: 1px solid rgba(189, 139, 72, 0.28);
}

.pdp-sticky-name,
.pdp-sticky-price {
  color: #fffdf8;
}

.pdp-sticky-bar .btn {
  background: linear-gradient(120deg, #c59d5f, #a67835);
  color: #1a120e;
  border: 0;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-gallery,
  .product-gallery-main,
  .gallery-zoom-trigger,
  .gallery-viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .gallery-zoom-trigger {
    width: 100%;
    max-height: min(62vh, 520px);
  }
  .product-gallery-main {
    border-radius: 16px;
    --gallery-stage-max: min(62vh, 520px);
  }
  .gallery-chrome {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .gallery-status {
    width: 100%;
    min-width: 0;
    gap: 0.5rem;
    padding-inline: 0.75rem 0.85rem;
  }
  .gallery-status span:last-child {
    min-width: 0;
  }
  .product-info h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    overflow-wrap: anywhere;
  }
  .product-info {
    height: auto;
    max-height: none;
    position: static;
  }
  .pdp-buy-panel {
    padding: 0.95rem;
    border-radius: 18px;
    height: auto;
    overflow: visible;
  }
  .pdp-usp {
    overflow: visible;
    gap: 0;
  }
  .pdp-usp-item {
    padding: 0.7rem 0.35rem;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .pdp-usp-icon {
    width: 36px;
    height: 36px;
  }
  .pdp-usp-icon svg {
    width: 18px;
    height: 18px;
  }
  .pdp-buy-row {
    grid-template-columns: 1fr;
  }
  .pdp-buy-row .qty-selector {
    width: 100%;
    max-width: 11rem;
  }
  .trust-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem 0.85rem;
  }
  .product-price-row,
  .price-row {
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
  }
  .visual-story-card {
    flex-basis: min(78vw, 280px);
  }
  .product-visual-story,
  .visual-story-viewport,
  .visual-story-grid {
    max-width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    transition: none;
  }
  .gallery-progress {
    display: none;
  }
  .visual-story-grid {
    scroll-behavior: auto;
  }
}

/* Lock page scroll while mobile nav is open (iOS-safe) */
html.nav-open,
body.nav-open {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}

body.nav-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

body.nav-open .nav-links,
body.nav-open .nav-backdrop {
  touch-action: auto;
}
