/* =========================================================
   Petit Lune — Premium Baby & Kids Clothing
   style.css  |  Light default (LTR), dark mode + RTL support
   ========================================================= */


:root {
  --sand: #f7f2ec;
  --cream: #fffdfa;
  --ink: #1d1a17;
  --ink-soft: #5d564e;
  --line: #e7ded3;
  --gold: #b98b52;
  --gold-soft: #e8d5b8;
  --plum: #5c3d55;
  --blush: #f3d9d5;
  --mint: #cfe3d8;

  --bg: var(--sand);
  --surface: var(--cream);
  --surface-2: #f1e9e0;
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--line);
  --accent: var(--gold);
  --accent-ink: #fffdfa;
  --deep: var(--plum);
  --deep-ink: #fdf7f3;

  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --r-xl: 40px;
  --shadow-s: 0 2px 10px rgba(29, 26, 23, .06);
  --shadow-m: 0 18px 40px -22px rgba(29, 26, 23, .28);
  --shadow-l: 0 40px 80px -40px rgba(29, 26, 23, .4);
  --head: "Fraunces", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 74px;
}

/* Dark mode variables → see darkmode.css */

*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* overflow-x on html prevents clipping position:fixed children (nav drawer) */
  transition: background .4s var(--ease), color .4s var(--ease);
}

html {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  color: inherit;
  text-decoration: none
}

button,
input {
  font: inherit;
  color: inherit
}

button {
  background: none;
  border: 0;
  cursor: pointer
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap
}

.wrap {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto
}

.section {
  padding: clamp(40px, 5.2vw, 68px) 0;
}

/* Increased top and bottom gap between consecutive sections */
.section + .section {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

/* Eliminate excessive gap when section directly follows a hero banner */
.hero + .section,
.blog-hero + .section,
.page-hero + .section,
.chero + .section,
.sale-hero + .section,
.h2-hero + .section {
  padding-top: clamp(24px, 3.5vw, 42px);
}

/* Type */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .9rem;
}

.sec-title {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: break-word;
}

.sec-title em,
.hero__title em {
  font-style: italic;
  color: var(--accent)
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.sec-head--center {
  justify-content: center;
  text-align: center
}

.sec-note {
  max-width: 34ch;
  color: var(--text-soft)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, .35), transparent 60%);
  opacity: 0;
  transition: opacity .4s
}

.btn:hover {
  transform: translateY(-3px)
}

.btn:hover::after {
  opacity: 1
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow-m)
}

.btn--ghost {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 70%, transparent)
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.btn--light {
  background: var(--deep-ink);
  color: var(--deep)
}

/* Announcement bar */
.announce {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--deep);
  color: var(--deep-ink);
  padding: .55rem 0;
  font-size: .8rem;
  position: relative;
  z-index: 60;
  overflow: hidden;
}

.announce.is-hidden {
  display: none;
}

.announce__marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.announce__track--marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 2.5rem;
  padding-inline-start: 1rem;
  animation: announceMarqueeScroll 35s linear infinite;
  flex-shrink: 0;
}

.announce:hover .announce__track--marquee {
  animation-play-state: paused;
}

.announce__item {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: .02em;
}

.announce__sep {
  color: var(--accent);
  font-size: .7rem;
  opacity: .95;
  transform: translateY(-1px);
}

@keyframes announceMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RTL marquee → see rtl.css */

.announce__track {
  flex: 1;
  height: 1.3em;
  overflow: hidden;
  position: relative;
  padding: 0 clamp(1rem, 4vw, 2.2rem);
}

.announce__slides {
  position: relative;
  height: 100%;
}

.announce__slide {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  white-space: nowrap;
}

.announce__slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.announce__tools {
  display: flex;
  align-items: center;
  gap: .5rem
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid color-mix(in oklab, var(--deep-ink) 35%, transparent);
  border-radius: 999px;
  padding: .25rem .7rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
}

.chip:hover {
  background: var(--deep-ink);
  color: var(--deep)
}

.announce__close {
  font-size: 1.15rem;
  line-height: 1;
  opacity: .7
}

.announce__close:hover {
  opacity: 1
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s, border-color .4s, background .4s;
}

.header.is-stuck {
  border-color: var(--border);
  box-shadow: var(--shadow-s);
  background: color-mix(in oklab, var(--bg) 92%, transparent)
}

body.nav-lock .header {
  z-index: 100;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h)
}

.header__progress {
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width .1s linear
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem
}

.brand__mark {
  color: var(--accent);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 14%, transparent)
}

.brand__mark svg {
  width: 20px;
  height: 20px;
  stroke: none
}

.brand__text {
  font-family: var(--head);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.01em
}

.brand__text em {
  font-style: italic;
  color: var(--accent)
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem
}

.nav__link {
  position: relative;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .3s, background .3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: .28rem;
  inset-inline: .85rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform .35s var(--ease);
}

.nav__link:hover {
  color: var(--text)
}

.nav__link:hover::after {
  transform: scaleX(1)
}

.nav__link.is-active {
  color: var(--text);
  font-weight: 600
}

.nav__link.is-active::after {
  transform: scaleX(1)
}

.nav__mobileFoot {
  display: none
}

.header__actions {
  display: flex;
  align-items: center;
  gap: .3rem
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: background .3s, transform .3s var(--ease)
}

.icon-btn:hover {
  background: var(--surface-2);
  transform: translateY(-2px)
}

.icon-btn__badge {
  position: absolute;
  top: 2px;
  inset-inline-end: 2px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  transition: background .3s, border-color .3s, transform .2s var(--ease);
  position: relative;
  z-index: 52;
}

.burger:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 12, .55);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Prevent body scroll when nav is open — allow touch-scroll inside the drawer */
body.nav-lock {
  overflow: hidden !important;
  /* do NOT use touch-action:none — it blocks the nav drawer scroll on iOS */
}

/* Drawer head/foot are hidden on desktop (they only exist inside the off-canvas panel) */
.nav__drawer-head,
.nav__drawer-foot {
  display: none;
}

/* ==========================================================================
   Base Styles & Reset Variables
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, rgba(12, 10, 9, 0.55) 0%, rgba(12, 10, 9, 0.85) 100%),
    url("../images/hero\ 1\ home.jpg") center 35% / cover no-repeat;
  color: #ffffff;
}

.hero__glow {
  position: absolute;
  inset-inline-start: -10%;
  top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 211, 162, 0.18) 0%, transparent 65%);
  filter: blur(60px);
  animation: drift 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  pointer-events: none;
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(6%, 8%, 0) scale(1.15); }
}

.hero__grid {
  display: grid;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Eyebrow Label */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #e5c992;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Typography */
.hero__title {
  font-family: var(--head, serif);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #ffffff 30%, #e2d2b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* CTA Buttons */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
}

.hero .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #0c0a09;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  justify-content: center;
}

.hero .btn--primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero .btn--ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  justify-content: center;
}

.hero .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Stats Section */
.hero__stats {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: var(--head, serif);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.hero__stats span {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Media & Cards */
.hero__media {
  position: relative;
  display: flex;
}

.hero__card--main {
  position: relative;
  width: 100%;
  border-radius: var(--r-xl, 16px);
}

.hero__card--float {
  position: relative;
  width: 100%;
  background: rgba(20, 18, 16, 0.45);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--r-xl, 16px) + 4px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  background: rgba(229, 201, 146, 0.12);
  border: 1px solid rgba(229, 201, 146, 0.3);
  color: #e5c992;
  border-radius: 999px;
}

.hero__card--float h3 {
  font-family: var(--head, serif);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 0.5em;
}

.hero__card--float p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-weight: 300;
}

/* Floating Pill */
.hero__pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.hero__pill span {
  color: #e5c992;
  margin-inline-end: 0.3rem;
}

.float {
  animation: float 7s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Marquee / Ticker */
.marquee {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(12, 10, 9, 0.3);
  backdrop-filter: blur(10px);
}

.marquee__row {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

/* RTL marquee row → see rtl.css */


/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. MOBILE (320px - 767px)
   -------------------------------------------------------------------------- */
@media (min-width: 320px) and (max-width: 767px) {
  .hero {
    padding-top: 25px;
    padding-bottom: 20px;
    padding-inline: 1rem; /* Edge padding fix */
  }

  .hero__glow {
    width: 80vw;
    height: 80vw;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.25rem;
  }

  .hero__title {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
    line-height: 1.08;
  }

  .hero__lead {
    margin-top: 0.6rem;
    font-size: 0.82rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .hero__cta {
    margin-top: 1rem;
    gap: 0.6rem;
    flex-direction: column;
  }

  .hero .btn--primary,
  .hero .btn--ghost {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
  }

  .hero__stats {
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 0.8rem;
  }

  .hero__stats strong {
    font-size: 1.25rem;
  }

  .hero__stats span {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .hero__media {
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.5rem;
    padding-block: 0;
    position: relative;
  }

  .hero__card--main {
    max-width: 100%;
  }

  .hero__card--float {
    padding: 1.1rem 1.1rem;
  }

  .hero__card-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
    margin-bottom: 0.5rem;
  }

  .hero__card--float h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .hero__card--float p {
    font-size: 0.78rem;
  }

  /* Fixed Floating Pill Badge (Complimentary Gift Wrap) */
  .hero__pill {
    position: relative;
    inset-inline-start: auto;
    inset-inline-end: 0;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    max-width: fit-content;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
    line-height: 1.25;
    margin-left: auto;
    white-space: normal;
    text-align: right;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .hero__pill span {
    font-size: 0.7rem;
    margin-inline-end: 0.25rem;
  }

  .marquee {
    margin-top: 20px;
    padding: 0.5rem 0;
  }

  .marquee__row {
    gap: 1.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
}

/* --------------------------------------------------------------------------
   2. TABLET (768px - 1023px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding-top: 55px;
    padding-bottom: 35px;
  }

  .hero__glow {
    width: 60vw;
    height: 60vw;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__lead {
    margin-top: 0.9rem;
    font-size: 0.95rem;
  }

  .hero__cta {
    margin-top: 1.4rem;
    gap: 1rem;
  }

  .hero .btn--primary,
  .hero .btn--ghost {
    padding: 0.7rem 1.6rem;
    font-size: 0.82rem;
  }

  .hero__stats {
    gap: 2rem;
    margin-top: 1.8rem;
    padding-top: 1.1rem;
  }

  .hero__stats strong {
    font-size: 1.6rem;
  }

  .hero__stats span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .hero__media {
    justify-content: flex-start;
    padding-block: 0.5rem;
  }

  .hero__card--main {
    max-width: 320px;
  }

  .hero__card--float {
    padding: 1.4rem 1.5rem;
  }

  .hero__card-badge {
    font-size: 0.6rem;
    padding: 0.22rem 0.65rem;
  }

  .hero__card--float h3 {
    font-size: 1.15rem;
  }

  .hero__card--float p {
    font-size: 0.8rem;
  }

  .hero__pill {
    inset-inline-start: -5%;
    top: -15px;
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
  }

  .marquee {
    margin-top: 30px;
    padding: 0.65rem 0;
  }

  .marquee__row {
    gap: 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }
}

/* --------------------------------------------------------------------------
   3. DESKTOP (1024px - 1280px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .hero {
    padding-top: 65px;
    padding-bottom: 40px;
  }

  .hero__glow {
    width: 48vw;
    height: 48vw;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.8rem;
  }

  .hero .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .hero__title {
    font-size: 3.6rem;
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 0.98rem;
  }

  .hero__cta {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .hero .btn--primary,
  .hero .btn--ghost {
    padding: 0.72rem 1.7rem;
    font-size: 0.84rem;
  }

  .hero__stats {
    gap: 2.2rem;
    margin-top: 1.9rem;
    padding-top: 1.15rem;
  }

  .hero__stats strong {
    font-size: 1.7rem;
  }

  .hero__stats span {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero__media {
    justify-content: flex-end;
    padding-block: 0.5rem;
  }

  .hero__card--main {
    max-width: 330px;
  }

  .hero__card--float {
    padding: 1.45rem 1.55rem;
  }

  .hero__card-badge {
    font-size: 0.62rem;
    padding: 0.25rem 0.68rem;
  }

  .hero__card--float h3 {
    font-size: 1.18rem;
  }

  .hero__card--float p {
    font-size: 0.82rem;
  }

  .hero__pill {
    inset-inline-start: -8%;
    top: 2%;
    padding: 0.48rem 1.05rem;
    font-size: 0.74rem;
  }

  .marquee {
    margin-top: 35px;
    padding: 0.7rem 0;
  }

  .marquee__row {
    gap: 2.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
  }
}

/* --------------------------------------------------------------------------
   4. LARGE DESKTOP (1281px and above)
   -------------------------------------------------------------------------- */
@media (min-width: 1281px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .hero__glow {
    width: 45vw;
    height: 45vw;
  }

  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
  }

  .hero__title {
    font-size: 4.2rem;
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero__cta {
    margin-top: 1.6rem;
    gap: 1rem;
  }

  .hero .btn--primary,
  .hero .btn--ghost {
    padding: 0.75rem 1.8rem;
    font-size: 0.85rem;
  }

  .hero__stats {
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
  }

  .hero__stats strong {
    font-size: 1.8rem;
  }

  .hero__stats span {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero__media {
    justify-content: flex-end;
    padding-block: 0.5rem;
  }

  .hero__card--main {
    max-width: 340px;
  }

  .hero__card--float {
    padding: 1.5rem 1.6rem;
  }

  .hero__card-badge {
    font-size: 0.62rem;
    padding: 0.25rem 0.7rem;
    margin-bottom: 1em;
  }

  .hero__card--float h3 {
    font-size: 1.2rem;
  }

  .hero__card--float p {
    font-size: 0.82rem;
  }

  .hero__pill {
    inset-inline-start: -10%;
    top: -6%;
    padding: 0.5rem 1.1rem;
    font-size: 0.75rem;
  }

  .marquee {
    margin-top: 45px;
    padding: 0.75rem 0;
  }

  .marquee__row {
    gap: 2.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }
}
/* ==========================================================================
   Shop by Age - Dual Mode Adaptive Luxury Style
   ========================================================================== */

.age-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.age {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(140px, 16vw, 180px);
  padding: clamp(1.4rem, 2vw, 2.2rem) clamp(1.2rem, 1.8vw, 1.8rem);
  
  /* Adaptive Surface with Fallbacks for Light/Dark Mode */
  background: var(--surface, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border, rgba(150, 150, 150, 0.2));
  border-radius: var(--r-l, 22px);
  overflow: hidden;
  text-decoration: none;
  
  /* High-end Glass Blur to enhance text contrast on any background */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  
  transition: 
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Gold Ambient Reflection Overlay */
.age::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Hover States */
.age:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent, #d4af37);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.15),
    0 0 25px rgba(212, 175, 55, 0.25);
}

.age:hover::before {
  opacity: 1;
}

/* Adaptive Typography for Perfect Contrast */
.age__no {
  font-family: var(--head, serif);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  
  /* Dynamic Text Color (Fallback to High Contrast Color) */
  color: var(--text-main, var(--text, #111111));
  line-height: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}

.age:hover .age__no {
  color: var(--accent, #b8860b);
  transform: translateX(2px);
}

.age__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  
  /* Soft Adaptive Color */
  color: var(--text-soft, rgba(100, 100, 100, 0.85));
  margin-top: 0.35rem;
  transition: color 0.4s ease;
}

.age:hover .age__label {
  color: var(--text-main, var(--text, #000000));
}

/* Floating Art / Emoji */
.age__art {
  position: absolute;
  inset-inline-end: clamp(1rem, 1.5vw, 1.5rem);
  bottom: clamp(1rem, 1.5vw, 1.4rem);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  color: var(--accent, #c5a059);
  opacity: 0.85;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, color 0.4s ease;
  transform-origin: bottom right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age:hover .age__art {
  opacity: 1;
  transform: translateY(-6px) rotate(-12deg) scale(1.2);
}

/* ==========================================================================
   Explicit Light Mode & Dark Mode Fallbacks (Option / Theme Support)
   ========================================================================== */

/* Dark Mode explicit fixes (Root class / Media query fallback) */
@media (prefers-color-scheme: dark) {
  .age__no {
    color: var(--text-main, #ffffff);
  }
  .age__label {
    color: var(--text-soft, rgba(255, 255, 255, 0.65));
  }
  .age:hover .age__no {
    color: var(--accent, #e5c992);
  }
}

/* Responsive Media Queries */
@media (max-width: 1023px) {
  .age-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .age-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .age {
    min-height: 125px;
    padding: 1.2rem 1rem;
    border-radius: 16px;
  }

  .age__no {
    font-size: 1.35rem;
  }

  .age__label {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }

  .age__art {
    font-size: 1.8rem;
    inset-inline-end: 0.8rem;
    bottom: 0.8rem;
  }
}

@media (max-width: 380px) {
  .age-grid {
    grid-template-columns: 1fr;
  }
}
/* Seasonal collection */
.season {
  background: var(--surface)
}

.season__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center
}

.season__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-l)
}

.season__media img {
  aspect-ratio: 5/4.4;
  object-fit: cover;
  width: 100%;
  transition: transform 1.3s var(--ease)
}

.season__media:hover img {
  transform: scale(1.06)
}

.season__tag {
  position: absolute;
  top: 1.2rem;
  inset-inline-start: 1.2rem;
  background: var(--bg);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.season__copy p {
  color: var(--text-soft);
  margin-top: 1.2rem;
  max-width: 48ch
}

.ticks {
  list-style: none;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: .6rem
}

.ticks li {
  position: relative;
  padding-inline-start: 1.7rem;
  font-size: .95rem
}

.ticks li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ==========================================================================
   Shop by Category - Ultra Luxury Editorial Bento Layout
   ========================================================================== */

/* Grid Layout */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

/* Individual Category Card Structure */
.cat {
  position: relative;
  border-radius: var(--r-l, 22px);
  overflow: hidden;
  min-height: clamp(280px, 30vw, 360px);
  text-decoration: none;
  background: var(--surface, #141210);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.12));
  
  /* Multi-layered Soft Shadows & Glass Effect */
  box-shadow: 
    0 15px 35px -10px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  transition: 
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat--wide {
  grid-column: span 2;
}

/* Background Image & Motion Effects */
.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease;
}

/* Multi-layered Dynamic Overlay for Perfect Text Contrast */
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      to top, 
      rgba(10, 8, 7, 0.85) 0%, 
      rgba(10, 8, 7, 0.3) 45%, 
      rgba(10, 8, 7, 0.05) 100%
    );
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Gold Highlight Outer Glow on Hover */
.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(229, 201, 146, 0.25) 0%, transparent 70%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Hover States */
.cat:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--accent, #e5c992);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(229, 201, 146, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.cat:hover img {
  transform: scale(1.08);
}

.cat:hover::before {
  opacity: 1;
}

/* Typography & Text Card Body */
.cat__body {
  position: absolute;
  inset-inline: clamp(1.2rem, 2vw, 1.8rem);
  bottom: clamp(1.2rem, 2vw, 1.8rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cat__body strong {
  font-family: var(--head, serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  transition: color 0.4s ease, transform 0.4s ease;
}

.cat:hover .cat__body strong {
  color: var(--accent, #e5c992);
  transform: translateX(4px);
}

.cat__body em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.4s ease, transform 0.4s ease;
}

.cat:hover .cat__body em {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Adaptability Across Viewports
   ========================================================================== */

/* Tablet Screens (768px - 1023px) */
@media (max-width: 1023px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat--wide {
    grid-column: span 2;
  }
}

/* Mobile Screens (< 767px) */
@media (max-width: 767px) {
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cat, .cat--wide {
    grid-column: span 1;
    min-height: 240px;
    border-radius: 18px;
  }

  .cat__body strong {
    font-size: 1.3rem;
  }

  .cat__body em {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
}

/* Featured products */
.featured {
  background: var(--surface)
}

.tabs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .3rem;
  border-radius: 999px
}

.tab {
  padding: .5rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .3s, color .3s
}

.tab.is-active {
  background: var(--text);
  color: var(--bg)
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem
}

.prod {
  transition: opacity .4s var(--ease), transform .4s var(--ease)
}

.prod.is-hidden {
  display: none
}

.prod__media {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--surface-2)
}

.prod__media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transition: transform 1s var(--ease)
}

.prod:hover .prod__media img {
  transform: scale(1.06)
}

.prod__flag {
  position: absolute;
  top: .9rem;
  inset-inline-start: .9rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-weight: 700;
}

.prod__flag--alt {
  background: var(--deep);
  color: var(--deep-ink)
}

.prod__quick {
  position: absolute;
  inset-inline: .9rem;
  bottom: .9rem;
  padding: .75rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  font-size: .82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s;
}

.prod:hover .prod__quick,
.prod__quick:focus-visible {
  opacity: 1;
  transform: translateY(0)
}

.prod__quick:hover {
  background: var(--text);
  color: var(--bg)
}

.prod__name {
  font-family: var(--head);
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 1rem
}

.prod__meta {
  font-size: .82rem;
  color: var(--text-soft)
}

.prod__price {
  font-weight: 700;
  margin-top: .35rem
}

.prod__price s {
  color: var(--text-soft);
  font-weight: 400;
  margin-inline-start: .4rem
}

/* Gifting banner */
.gift {
  padding: clamp(36px, 4.5vw, 56px) 0;
}

.gift__inner {
  background: var(--deep);
  color: var(--deep-ink);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.gift__inner p {
  margin: 1rem 0 2rem;
  max-width: 44ch;
  opacity: .85
}

.gift__inner .eyebrow {
  color: var(--gold-soft)
}

.gift__inner .sec-title em {
  color: var(--gold-soft)
}

.gift__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 200px
}

.gift__ring {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid color-mix(in oklab, var(--gold-soft) 45%, transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite
}

.gift__ring:nth-child(2) {
  width: 290px;
  height: 290px;
  animation-delay: 1.2s
}

@keyframes pulse {
  50% {
    transform: scale(1.08);
    opacity: .45
  }
}

.gift__box {
  font-size: 4.4rem;
  color: var(--accent, #c5a059);
  animation: float 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.why {
  padding: 2rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.why:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-m)
}

.why__ico {
  font-size: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
  line-height: 1;
}

.why__ico i {
  line-height: 1;
}

.why__ico--leaf,
.why__ico--organic {
  color: #4f8a54;
}

.why__ico--scissors,
.why__ico--craft {
  color: #a04e8b;
}

.why__ico--infinity,
.why__ico--heirloom {
  color: #3b78b8;
}

.why__ico--truck,
.why__ico--returns {
  color: #df7a28;
}

.why__ico--gift {
  color: #c49b66;
}

.why__ico--heart {
  color: #d85d72;
}

.why h3 {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .4rem
}

.why p {
  font-size: .92rem;
  color: var(--text-soft)
}

/* Instagram */
.insta {
  background: var(--surface)
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem
}

.insta__item {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden
}

.insta__item img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform .8s var(--ease), filter .5s
}

.insta__item span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  background: rgba(20, 16, 14, .35);
  opacity: 0;
  transition: opacity .35s
}

.insta__item:hover img {
  transform: scale(1.1)
}

.insta__item:hover span {
  opacity: 1
}

/* Newsletter */
.news {
  padding: clamp(36px, 4.5vw, 56px) 0;
}

.news__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 16%, var(--surface)), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.6rem);
}

.news__copy p {
  color: var(--text-soft);
  margin-top: .9rem
}

.news__form {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  position: relative
}

.news__form input {
  flex: 1;
  min-width: 200px;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color .3s, box-shadow .3s;
}

.news__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent)
}

.news__msg {
  flex-basis: 100%;
  font-size: .85rem;
  min-height: 1.2em;
  color: var(--accent);
  font-weight: 600
}

.news__msg.is-error {
  color: #c2554a
}

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 6vw, 80px)
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.4rem;
  padding-bottom: 2.6rem
}

.footer__brand p {
  color: var(--text-soft);
  margin: 1rem 0 1.4rem;
  max-width: 34ch;
  font-size: .93rem
}

.socials {
  display: flex;
  gap: .5rem
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .3s, color .3s, transform .3s
}

.socials a:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-3px)
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .93rem
}

.footer__col h3 {
  font-family: var(--head);
  font-size: 1.02rem;
  margin-bottom: .5rem;
  font-weight: 600
}

.footer__col a,
.footer__col p {
  color: var(--text-soft)
}

.footer__col a {
  transition: color .3s, padding-inline-start .3s
}

.footer__col a:hover {
  color: var(--accent);
  padding-inline-start: .3rem
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding: 1.3rem 0;
  font-size: .82rem;
  color: var(--text-soft)
}

/* To top */
.to-top {
  position: fixed;
  inset-inline-end: 1.3rem;
  bottom: 1.3rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  z-index: 45;
  box-shadow: var(--shadow-m);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .35s, transform .35s var(--ease);
}

.to-top.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.is-in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ================= Contact Page ================= */

/* Contact Hero */
.chero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
  overflow: hidden;
}

.chero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crumbs {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.crumbs a {
  transition: color 0.3s;
}

.crumbs a:hover {
  color: var(--accent);
}

.chero .eyebrow {
  margin-bottom: 1.2rem;
}

.chero__title {
  font-family: var(--head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.chero__lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 auto;
}

.chero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

/* Contact Info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 2rem 1.6rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.info:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-s);
}

.info__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.info h3 {
  font-family: var(--head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.info p,
.info a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.info a {
  transition: color 0.3s;
}

.info a:hover {
  color: var(--accent);
}

.info a:not([href^="mailto"]):not([href^="tel"]) {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 1rem;
  display: inline-block;
}

/* Form Split Section */
.form-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.form-split--alt {
  grid-template-columns: 1.1fr 1fr;
}

.form-split--alt .form-split__copy {
  order: 2;
}

.form-split__copy p {
  color: var(--text-soft);
  margin: 1.2rem 0;
  font-size: 1.05rem;
}

/* Mini Stats */
.mini-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.mini-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mini-stats strong {
  font-family: var(--head);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.mini-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Forms */
.cform {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-s);
}

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.field label span {
  color: var(--text-soft);
  font-weight: 400;
  font-size: 0.8rem;
  margin-inline-start: 0.4rem;
}

.field input,
.field select,
.field textarea {
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-s);
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 15%, transparent);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
  cursor: pointer;
}

.check input {
  margin-top: 0.3rem;
  accent-color: var(--accent);
}

.cform .btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 1rem;
}

.form__msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  min-height: 1.3em;
}

#contactForm {
  max-width: 760px;
  margin: 0 auto;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq__item:hover {
  box-shadow: var(--shadow-s);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.3s;
}

/* RTL FAQ → see rtl.css */

.faq__q:hover {
  color: var(--accent);
}

.faq__sign {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}

.faq__sign::before {
  top: 6px;
  inset-inline: 0;
  height: 2px;
}

.faq__sign::after {
  top: 0;
  bottom: 0;
  inset-inline-start: 6px;
  width: 2px;
}

.faq__q[aria-expanded="true"] .faq__sign::after {
  transform: rotate(90deg) scale(0);
}

.faq__a {
  padding: 0 1.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__q[aria-expanded="true"]+.faq__a {
  padding-bottom: 1.4rem;
  max-height: 400px;
}

.faq__a p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Map */
.map-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.map__frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 440px;
  background: var(--border);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-m);
}

.map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.5s;
}

/* RTL dark map iframe → see darkmode.css */

.map__side h3 {
  font-family: var(--head);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.map__side p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hours {
  margin: 1.6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 0.4rem 0;
}

.hours dt {
  font-weight: 600;
}

.hours dd {
  color: var(--text-soft);
}

.map__note {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
  font-style: italic;
}

/* ================= Responsive ================= */
@media (max-width:1080px) {
  .age-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }
}

/* =========================================
   RESPONSIVE NAV DRAWER + PAGE LAYOUT
   mob:  320px – 767px
   tab:  768px – 1024px
   desk: 1024px – 1280px
   ========================================= */

/* --- Tablet & Mobile: off-canvas nav drawer (≤ 1024px) --- */
@media (max-width:1024px) {
  .wrap {
    width: min(1240px, 100% - 2rem);
  }

  /* Show hamburger button */
  .burger {
    display: flex;
  }

  /* Nav becomes a full-height right-side drawer */
  .nav {
    display: flex;               /* must re-declare — needed on mobile too */
    position: fixed;
    top: 0;
    right: 0;                    /* explicit fallback for older browsers */
    inset-inline-end: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    width: min(320px, 88vw);    /* slightly narrower so it never bleeds off edge */
    background: var(--surface);
    border-left: 1px solid var(--border);  /* explicit fallback */
    border-inline-start: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    padding: 0 0 2.2rem;         /* top padding handled by drawer-head */
    transform: translateX(100%); /* use 100% not 105% to avoid clipping */
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;                /* above header (50), overlay (95), everything */
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.22);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    will-change: transform;
  }

  /* RTL nav drawer → see rtl.css */

  /* Slide into view */
  .nav.is-open {
    transform: translateX(0);
  }

  /* ---- Drawer header (brand + close button) ---- */
  .nav__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.35rem 1rem;
    margin-bottom: .4rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 2;
  }

  /* ---- Close button inside the drawer ---- */
  .nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    background: var(--surface-2);
    flex-shrink: 0;
    transition: background .25s, transform .25s var(--ease), color .25s, border-color .25s;
  }

  .nav__close:hover,
  .nav__close:focus-visible {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
    transform: rotate(90deg);
  }

  .nav__close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
  }

  /* ---- Nav link rows ---- */
  .nav__link {
    display: block;
    padding: .85rem 1.35rem;
    font-size: 1rem;
    border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
    border-radius: 0;
    color: var(--text);
  }

  .nav__link::after {
    display: none; /* no underline animation in drawer */
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--accent);
    background: color-mix(in oklab, var(--accent) 7%, transparent);
  }

  /* ---- Dropdown becomes accordion ---- */
  .nav__item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
    border-radius: 0;
  }

  .nav__item .nav__link--parent {
    flex: 1;
    border-bottom: none;
    padding: .85rem 0 .85rem 1.35rem;
  }

  .nav__caret {
    width: 44px;
    height: 44px;
    margin-inline-end: .5rem;
    flex-shrink: 0;
  }

  .nav__dropdown {
    position: static;
    flex-basis: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: color-mix(in oklab, var(--surface-2) 50%, transparent);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
    z-index: auto;
  }

  .nav__item.is-open .nav__dropdown {
    max-height: 400px;
    padding: .3rem 0 .6rem 0;
  }

  .nav__dropdown-link {
    display: block;
    padding: .65rem 1.35rem .65rem 2.2rem;
    font-size: .95rem;
    white-space: normal;
    color: var(--text-soft);
    border-radius: 0;
  }

  .nav__dropdown-link:hover,
  .nav__dropdown-link.is-active {
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    color: var(--accent);
  }

  /* RTL nav dropdown → see rtl.css */

  .header__divider {
    display: none;
  }

  /* ---- Drawer footer (theme/dir tools + sign-in) ---- */
  .nav__drawer-foot {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: auto;
    padding: 1.2rem 1.35rem 0;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
  }

  .nav__drawer-tools {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: space-between;
  }

  .nav__drawer-tools .chip {
    flex: 1;
    justify-content: center;
    padding: .5rem .6rem;
    font-size: .78rem;
    border-color: var(--border);
    color: var(--text-soft);
    cursor: pointer;
  }

  .nav__drawer-tools .chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--surface-2);
  }

  .nav__drawer-login {
    width: 100%;
    padding: .75rem 1rem;
    font-size: .9rem;
    justify-content: center;
    text-align: center;
  }

  /* ---- Mobile-only footer inside nav ---- */
  .nav__mobileFoot {
    display: block;
    padding: .75rem 1.35rem 0;
    flex-shrink: 0;
  }

  .nav__mobileFoot .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Hide desktop-only header items ---- */
  .header__ltr,
  .header__login {
    display: none;
  }

  .header__inner {
    gap: .75rem;
  }

  /* ---- Page layout adjustments ---- */
  .hero__grid,
  .season__grid,
  .gift__inner,
  .news__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
    max-width: 520px;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cat--wide {
    grid-column: span 2;
  }

  .gift__art {
    min-height: 240px;
  }
}

/* Overlay z-index must match nav */
@media (max-width:1024px) {
  .overlay {
    z-index: 199; /* just below the nav drawer (200) */
  }
}

/* --- Tablet specific (768px – 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav {
    width: min(360px, 55vw); /* wider panel on tablets */
  }

  .hero__title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
  }

  .hero__stats {
    gap: 2rem;
  }

  .age-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Mobile (320px – 767px) --- */
@media (max-width: 767px) {
  .nav {
    width: min(300px, 90vw); /* nearly full-width on small phones */
  }

  .header__inner {
    height: 60px;
    gap: .4rem;
  }

  /* Hide wishlist icon on very small screens to save space */
  .header__actions .icon-btn:nth-child(2) {
    display: none;
  }

  .hero {
    padding-top: clamp(16px, 4vw, 28px);
  }

  .hero__title {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
  }

  .hero__lead {
    font-size: .97rem;
    margin-top: 1rem;
  }

  .hero__cta {
    gap: .65rem;
  }

  .hero__stats {
    gap: 1.2rem;
    margin-top: 1.8rem;
  }

  .hero__card--float {
    display: none; /* floating card overflows on phones */
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .age-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .sec-title {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }

  .announce {
    font-size: .73rem;
    gap: .5rem;
  }

  .announce__tools .chip {
    padding: .2rem .5rem;
    font-size: .63rem;
  }
}

/* --- Small phones (320px – 479px) --- */
@media (max-width: 479px) {
  .brand__text {
    font-size: 1.15rem;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
  }

  .header__actions {
    gap: .15rem;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .burger {
    width: 38px;
    height: 38px;
  }

  .cat--wide,
  .cat {
    grid-column: span 2;
  }

  .cat {
    min-height: 200px;
  }
}

/* RTL fine-tuning → see rtl.css */

/* ==========================================================================
   Full Bleed Reset (Eliminates Side Gaps and Horizontal Scroll)
   ========================================================================== */
/* Force parent containers to expand full width */
main, .site-main, .page-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* ==========================================================================
   Full Background Image Hero Section (Original Height & Full-Bleed)
   ========================================================================== */

.h2-hero--bg {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  /* Reduced height range */
  min-height: clamp(450px, 65vh, 650px); 
  display: flex;
  align-items: center;
  /* Reduced top and bottom padding */
  padding-block: clamp(50px, 8vw, 90px); 
  overflow: hidden;
  color: #ffffff;
  margin: 0 !important;
  box-sizing: border-box;
}

/* Background Image Container */
.h2-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.h2-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* Multi-layered Vignette Overlay for Text Readability */
.h2-hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      90deg, 
      rgba(18, 16, 14, 0.88) 0%, 
      rgba(18, 16, 14, 0.6) 50%, 
      rgba(18, 16, 14, 0.25) 100%
    ),
    linear-gradient(
      0deg, 
      rgba(18, 16, 14, 0.7) 0%, 
      transparent 40%
    );
}

/* Content Container Grid */
.h2-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100% !important;
  max-width: 1240px !important;
  padding-inline: 1.5rem;
  margin-inline: auto !important;
  box-sizing: border-box;
}

/* Main Heading Typography */
.h2-hero__title {
  font-family: var(--head, serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 0.6rem;
}

.h2-hero__title em {
  font-style: italic;
  color: var(--accent, #e5c992);
  font-weight: 400;
}

.h2-hero__lead {
  margin-top: 1.2rem;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  font-weight: 300;
}

/* Action Buttons */
.h2-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Right-Side Floating Glassmorphism Card */
.h2-hero__card {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: rgba(20, 18, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-l, 20px);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.h2-hero__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #e5c992);
}

.h2-hero__badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #e5c992);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.h2-hero__card h3 {
  font-family: var(--head, serif);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.h2-hero__card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-weight: 300;
}

.h2-hero__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--accent, #e5c992);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.h2-hero__link:hover {
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Adaptability & Gap Fixes
   ========================================================================== */

@media (max-width: 991px) {
  .h2-hero--bg {
    min-height: clamp(500px, 80vh, 700px);
    padding-block: clamp(60px, 10vw, 100px);
  }

  .h2-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-inline: 1.25rem;
  }

  .h2-hero__card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .h2-hero--bg {
    min-height: auto;
    padding-block: 60px 40px;
  }

  .h2-hero__inner {
    padding-inline: 1rem;
  }

  .h2-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn--outline {
    text-align: center;
  }
}
/* 02 · Horizontal lookbook rail */
.h2-rail {
  padding: clamp(36px, 4.5vw, 60px) 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
  overflow: hidden
}

.h2-rail__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3.4vw, 44px)
}

.h2-rail__tools {
  display: flex;
  align-items: center;
  gap: .6rem
}

.h2-rail__hint {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-inline-end: .4rem
}

.h2-rail__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: background .3s, color .3s, transform .3s var(--ease);
}

.h2-rail__arrow:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px)
}

.h2-rail__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: max(1.5rem, calc((100vw - 1240px)/2));
  padding-block: .6rem 1.4rem;
  scrollbar-width: none;
  cursor: grab;
}

.h2-rail__track::-webkit-scrollbar {
  display: none
}

.h2-rail__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none
}

.h2-look {
  position: relative;
  flex: 0 0 clamp(230px, 26vw, 320px);
  scroll-snap-align: start;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.h2-look:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-m)
}

.h2-look img {
  width: 100%;
  aspect-ratio: 4/4.7;
  object-fit: cover
}

.h2-look--tall {
  align-self: flex-end
}

.h2-look--tall img {
  aspect-ratio: 4/5.6
}

.h2-look__no {
  position: absolute;
  top: .9rem;
  inset-inline-start: 1rem;
  z-index: 2;
  font-family: var(--head);
  font-style: italic;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: .15rem .7rem;
  font-size: .82rem;
}

.h2-look__body {
  padding: 1.1rem 1.2rem 1.4rem
}

.h2-look__body h3 {
  font-family: var(--head);
  font-size: 1.08rem;
  font-weight: 600
}

.h2-look__body p {
  font-size: .82rem;
  color: var(--text-soft)
}

.h2-look--end {
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--surface-2)
}

.h2-look--end .h2-look__body {
  display: grid;
  gap: .8rem;
  justify-items: center
}

/* 03 · Asymmetric atelier story */
.h2-atelier__grid {
  display: grid;
  grid-template-columns: .56fr .44fr;
  grid-template-rows: auto auto;
  gap: clamp(1.4rem, 3vw, 2.6rem) clamp(2rem, 5vw, 4rem);
  align-items: end
}

.h2-atelier__big {
  grid-row: span 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-l)
}

.h2-atelier__big img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover
}

.h2-atelier__copy {
  align-self: center
}

.h2-atelier__copy p {
  color: var(--text-soft);
  margin-top: 1.2rem;
  max-width: 44ch
}

.h2-atelier__small {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  transform: rotate(-2deg)
}

/* RTL atelier small → see rtl.css */

.h2-atelier__small img {
  width: 100%;
  aspect-ratio: 5/3.4;
  object-fit: cover
}

.h2-atelier__small figcaption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: .7rem 1rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--surface) 86%, transparent);
  color: var(--text-soft);
}

.h2-atelier__stats {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.6rem
}

.h2-atelier__stats div {
  display: flex;
  flex-direction: column;
  gap: .2rem
}

.h2-atelier__stats strong {
  font-family: var(--head);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1
}

.h2-atelier__stats span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft)
}

.h2-atelier__sign {
  font-family: var(--head);
  font-style: italic;
  color: var(--accent)
}

/* 04 · Sticky fabric dossier */
.h2-dossier {
  background: var(--surface)
}

.h2-dossier__grid {
  display: grid;
  grid-template-columns: .38fr .62fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start
}

.h2-dossier__aside {
  position: sticky;
  top: calc(var(--header-h) + 2rem)
}

.h2-dossier__list {
  list-style: none;
  display: grid
}

.h2-dossier__row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: start;
  padding: clamp(1.4rem, 2.4vw, 2rem) 0;
  border-top: 1px solid var(--border);
  transition: padding-inline-start .4s var(--ease);
}

.h2-dossier__row:last-child {
  border-bottom: 1px solid var(--border)
}

.h2-dossier__row:hover {
  padding-inline-start: .8rem
}

.h2-dossier__no {
  font-family: var(--head);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem
}

.h2-dossier__row h3 {
  font-family: var(--head);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  transition: color .3s
}

.h2-dossier__row:hover h3 {
  color: var(--accent)
}

.h2-dossier__row p {
  color: var(--text-soft);
  font-size: .94rem;
  margin-top: .35rem;
  max-width: 52ch
}

.h2-dossier__weight {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap
}

.h2-dossier__row img {
  position: absolute;
  inset-inline-end: 5.5rem;
  top: 50%;
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-m);
  box-shadow: var(--shadow-m);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-40%) scale(.9) rotate(-4deg);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.h2-dossier__row:hover img {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(-2deg)
}

/* ==========================================================================
   05 · Manifesto (Compact & Reduced Height)
   ========================================================================== */

.h2-manifesto--premium {
  position: relative;
  /* Reduced top and bottom section height */
  padding: clamp(36px, 4vw, 56px) 1.5rem; 
  background: var(--deep, #141210);
  color: var(--deep-ink, #f5f2eb);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Reduced Ambient Glow Dimensions */
.h2-manifesto__ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 85vw);
  height: 180px;
  background: radial-gradient(
    circle, 
    rgba(229, 201, 146, 0.08) 0%, 
    rgba(20, 18, 16, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* Compact Inner Container */
.h2-manifesto__inner {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.2rem); /* Reduced vertical gap between elements */
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2rem); /* Reduced inner padding */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(229, 201, 146, 0.15);
  border-radius: var(--r-xl, 18px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.h2-manifesto__inner:hover {
  border-color: rgba(229, 201, 146, 0.35);
  box-shadow: 0 20px 50px -8px rgba(0, 0, 0, 0.6);
}

/* Reduced Quote Icon Badge */
.h2-manifesto__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(229, 201, 146, 0.06);
  border: 1px solid rgba(229, 201, 146, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -0.2rem;
}

.h2-manifesto__mark {
  font-family: var(--head, serif);
  font-size: 2rem; /* Reduced font size */
  line-height: 0.8;
  color: var(--gold-soft, #e5c992);
  transform: translateY(2px);
}

/* Reduced Main Quote Typography */
.h2-manifesto blockquote {
  font-family: var(--head, serif);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem); /* Reduced quote size */
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  max-width: 30ch;
}

.h2-manifesto blockquote em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft, #e5c992);
  background: linear-gradient(135deg, #f5e4c3 0%, #e5c992 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider Line */
.h2-manifesto__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(180px, 70%);
  margin-block: 0.2rem;
}

.h2-manifesto__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(229, 201, 146, 0.4), 
    transparent
  );
}

.h2-manifesto__diamond {
  width: 5px;
  height: 5px;
  background: var(--gold-soft, #e5c992);
  transform: rotate(45deg);
  box-shadow: 0 0 6px rgba(229, 201, 146, 0.6);
}

/* Reduced Subtext & Details */
.h2-manifesto__lead {
  font-size: clamp(0.72rem, 0.9vw, 0.82rem); /* Reduced lead size */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft, #e5c992);
  font-weight: 500;
  margin: 0;
}

.h2-manifesto__subtext {
  font-size: 0.78rem; /* Reduced subtext size */
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Mobile Overrides */
@media (max-width: 600px) {
  .h2-manifesto--premium {
    padding-block: 30px;
  }

  .h2-manifesto__inner {
    padding: 1.2rem 1rem;
    gap: 0.75rem;
    border-radius: 14px;
  }

  .h2-manifesto__lead {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}
/* 06 · Spotlight */
.h2-spotlight__grid {
  margin-top: 2em;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center
}

.h2-spotlight__stage {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-l)
}

.h2-spotlight__stage img {
  width: 100%;
  aspect-ratio: 5/4.4;
  object-fit: cover;
  transition: opacity .45s var(--ease), transform 1.2s var(--ease)
}

.h2-spotlight__stage.is-swapping img {
  opacity: 0;
  transform: scale(1.03)
}

.h2-spotlight__badge {
  position: absolute;
  top: 1.1rem;
  inset-inline-end: 1.1rem;
  background: var(--bg);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.h2-spotlight__copy p {
  color: var(--text-soft);
  margin-top: 1.2rem;
  max-width: 46ch
}

.h2-spotlight__swatches {
  display: flex;
  gap: .7rem;
  margin-top: 1.8rem
}

.h2-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sw);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  transition: transform .3s var(--ease), box-shadow .3s, outline-color .3s;
  outline: 2px solid transparent;
  outline-offset: 3px;
}

.h2-swatch:hover {
  transform: translateY(-3px)
}

.h2-swatch.is-active {
  outline-color: var(--accent)
}

.h2-spotlight__specs {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin: 1.9rem 0 1.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem
}

.h2-spotlight__specs dt {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .3rem
}

.h2-spotlight__specs dd {
  font-family: var(--head);
  font-size: 1.25rem;
  font-weight: 600
}

.h2-spotlight__add {
  position: static;
  opacity: 1;
  transform: none;
  inset: auto
}

/* 07 · Age ladder */
.h2-ladder__line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2.4rem
}

.h2-ladder__line::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  inset-inline: 6%;
  height: 1px;
  background: var(--border)
}

.h2-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .35rem;
  flex: 1;
  min-width: 110px
}

.h2-step__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  position: relative;
  z-index: 2;
  transition: transform .35s var(--ease), background .35s;
}

.h2-step:hover .h2-step__dot {
  background: var(--accent);
  transform: scale(1.5)
}

.h2-step strong {
  font-family: var(--head);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: .9rem;
  transition: color .3s
}

.h2-step:hover strong {
  color: var(--accent)
}

.h2-step em {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft)
}

/* 08 · Dual vertical scroll band */
.h2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--surface);
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding: clamp(36px, 4.5vw, 60px) max(1.5rem, calc((100vw - 1240px)/2));
}

.h2-columns__copy p {
  color: var(--text-soft);
  margin: 1.1rem 0 2rem;
  max-width: 40ch
}

.h2-columns__scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: min(520px, 70vh);
  position: relative;
  mask-image: linear-gradient(transparent, #000 14%, #000 86%, transparent)
}

.h2-columns__col {
  display: grid;
  gap: 1rem;
  animation: h2Up 28s linear infinite
}

.h2-columns__col--down {
  animation-direction: reverse
}

.h2-columns__col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-m)
}

@keyframes h2Up {
  to {
    transform: translateY(-50%)
  }
}

/* 09 · Expanding panels */
.h2-panels__row {
  display: flex;
  gap: 0.7rem;
  height: min(460px, 62vh);
  width: 100%;
}

.h2-panel {
  position: relative;
  flex: 1;
  border-radius: var(--r-l, 16px);
  overflow: hidden;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.15));
  
  /* Background Custom Variable Handling */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--deep, #141210); /* Fallback color if image path is broken */
  
  /* Reset Default Button Styles */
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1.3rem;
  color: #fffdfa;
  text-align: start;
  transition: flex 0.6s var(--ease, cubic-bezier(0.25, 1, 0.5, 1)), box-shadow 0.5s var(--ease, cubic-bezier(0.25, 1, 0.5, 1));
  isolation: isolate;
}

.h2-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 14, 0.85), rgba(20, 16, 14, 0.05) 65%);
  transition: opacity 0.5s;
  z-index: 1;
}

.h2-panel.is-open {
  flex: 2.6;
  box-shadow: var(--shadow-m, 0 20px 40px rgba(0, 0, 0, 0.3));
}

.h2-panel__label {
  position: relative;
  z-index: 2;
  font-family: var(--head, serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.h2-panel__meta {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease, ease), transform 0.5s var(--ease, ease);
}

.h2-panel.is-open .h2-panel__meta {
  opacity: 0.85;
  transform: none;
}
/* 10 · Journal */
.h2-journal__all {
  font-size: .9rem;
  font-weight: 600;
  transition: color .3s
}

.h2-journal__all:hover {
  color: var(--accent)
}

.h2-journal__list {
  display: grid
}

.h2-note {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: clamp(1.2rem, 2.2vw, 1.8rem) 0;
  border-top: 1px solid var(--border);
  transition: padding-inline-start .4s var(--ease);
}

.h2-note:last-child {
  border-bottom: 1px solid var(--border)
}

.h2-note:hover {
  padding-inline-start: .7rem
}

.h2-note__date {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  min-width: 64px
}

.h2-note h3 {
  font-family: var(--head);
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 600;
  transition: color .3s
}

.h2-note:hover h3 {
  color: var(--accent)
}

.h2-note__tag {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .25rem .8rem
}

.h2-note img {
  position: absolute;
  inset-inline-end: 9rem;
  top: 50%;
  width: 110px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-s);
  box-shadow: var(--shadow-m);
  opacity: 0;
  transform: translateY(-40%) rotate(3deg);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.h2-note:hover img {
  opacity: 1;
  transform: translateY(-50%) rotate(0)
}

/* 11 · Appointment */
.h2-appoint {
  padding: clamp(36px, 4.5vw, 60px) 0;
}

.h2-appoint__inner {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 14%, var(--surface)), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-m);
}

.h2-appoint__copy p {
  color: var(--text-soft);
  margin-top: 1rem;
  max-width: 44ch
}

.h2-appoint__form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: clamp(1.4rem, 3vw, 2.2rem)
}

.h2-appoint__form .btn {
  width: 100%;
  justify-content: center
}

/* Home 2 · responsive */
@media (max-width:1080px) {

  .h2-dossier__row img,
  .h2-note img {
    display: none
  }

  .h2-atelier__grid {
    grid-template-columns: 1fr 1fr
  }

  .h2-atelier__big {
    grid-row: auto
  }

  .h2-atelier__copy {
    grid-column: span 2
  }
}

@media (max-width:1024px) {
  .h2-hero {
    width: min(1240px, 100% - 2rem);
    grid-template-columns: 1fr
  }

  .h2-hero__rail {
    display: none
  }

  .h2-hero__frame {
    order: -1;
    max-width: 560px
  }

  .h2-dossier__grid,
  .h2-spotlight__grid,
  .h2-columns,
  .h2-appoint__inner {
    grid-template-columns: 1fr
  }

  .h2-dossier__aside {
    position: static
  }

  .h2-columns__scroll {
    height: 340px
  }

  .h2-panels__row {
    height: 380px
  }
}

@media (max-width:640px) {
  .h2-hero__index {
    grid-template-columns: 1fr
  }

  .h2-atelier__grid {
    grid-template-columns: 1fr
  }

  .h2-atelier__copy {
    grid-column: auto
  }

  .h2-dossier__row {
    grid-template-columns: auto 1fr;
    gap: .8rem
  }

  .h2-dossier__weight {
    grid-column: 2
  }

  .h2-note {
    grid-template-columns: 1fr;
    gap: .5rem
  }

  .h2-note__tag {
    justify-self: start
  }

  .h2-panels__row {
    flex-direction: column;
    height: auto
  }

  .h2-panel {
    min-height: 110px
  }

  .h2-panel.is-open {
    min-height: 250px
  }

  .h2-columns__scroll {
    grid-template-columns: 1fr;
    height: 300px
  }

  .h2-columns__col--down {
    display: none
  }
}

/* =========================================================
   HEADER UPDATE — nav dropdowns, Sale highlight, and new
   right-side controls (theme / direction / login).
   Scoped entirely to .header / .nav — no global rules touched.
   ========================================================= */

/* --- Nav items with dropdowns (Home, Shop) --- */
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link--parent {
  padding-inline-end: .55rem;
}

.nav__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-inline-start: -.4rem;
  border-radius: 50%;
  color: var(--text-soft);
  transition: transform .3s var(--ease), background .3s, color .3s;
}

.nav__caret svg {
  width: 11px;
  height: 11px;
  stroke-width: 2;
}

.nav__caret:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav__item.is-open .nav__caret,
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-start: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-m);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 65;
}

.nav__item.is-open .nav__dropdown,
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: .58rem .75rem;
  border-radius: var(--r-s);
  font-size: .86rem;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
  transition: background .25s, color .25s;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-active {
  background: var(--surface-2);
  color: var(--text);
}

/* --- Sale link highlight --- */
.nav__link--sale {
  color: var(--accent-ink);
  background: var(--accent);
  font-weight: 700;
}

.nav__link--sale::after {
  display: none;
}

.nav__link--sale:hover {
  color: var(--accent-ink);
  filter: brightness(1.06);
}

.nav__link--sale.is-active {
  color: var(--accent-ink);
}

/* --- New header right-side controls --- */
.header__divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 .3rem;
}

.header__theme {
  position: relative;
}

.header__theme-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  opacity: 1;
  transform: rotate(0) scale(1);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.header__theme-icon--sun {
  opacity: 0;
  transform: rotate(-60deg) scale(.6);
}

/* Dark mode theme icon states → see darkmode.css */

.header__ltr {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .42rem .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: border-color .3s, color .3s, background .3s;
}

.header__ltr:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.header__login {
  background: var(--accent);
  color: var(--accent-ink);
  padding: .62rem 1.35rem;
  font-size: .82rem;
  box-shadow: 0 14px 28px -16px color-mix(in oklab, var(--accent) 65%, transparent);
}

.header__login:hover {
  filter: brightness(1.05);
}

/* =========================================================
   ABOUT & SIZE GUIDE PAGES
   Shared page-hero/breadcrumb + About-specific and
   Size-Guide-specific sections. Reuses existing tokens
   (colors, radii, shadows, fonts) — no globals overridden.
   ========================================================= */

/* --- Shared inner-page hero / breadcrumb --- */
.page-hero {
  position: relative;
  padding: clamp(52px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.page-hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 320px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 20%, transparent), transparent 65%);
  pointer-events: none;
}

.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}

.page-hero__crumb a {
  color: var(--text-soft);
  transition: color .25s;
}

.page-hero__crumb a:hover {
  color: var(--accent);
}

.page-hero__crumb span {
  opacity: .6;
}

.page-hero__crumb em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.page-hero__title {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 18ch;
}

.page-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.page-hero__lead {
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-top: 1rem;
}

/* --- About: story split --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-story__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4/5;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__copy p {
  color: var(--text-soft);
  margin-top: 1rem;
}

.about-story__copy p:first-of-type {
  margin-top: 1.4rem;
}

/* --- About: stat counters --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.about-stats li {
  text-align: center;
}

.about-stats strong {
  display: block;
  font-family: var(--head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
}

.about-stats span {
  display: block;
  font-size: .8rem;
  color: var(--text-soft);
  margin-top: .3rem;
}

/* --- About: team grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.team {
  text-align: center;
}

.team__media {
  border-radius: var(--r-l);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-s);
  margin-bottom: 1rem;
}

.team__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s var(--ease);
}

.team:hover .team__media img {
  transform: scale(1.06);
}

.team__name {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
}

.team__role {
  font-size: .82rem;
  color: var(--accent);
  margin-top: .2rem;
}

/* --- About: CTA banner --- */
.about-cta {
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 14%, var(--surface)), var(--surface));
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}

.about-cta .sec-title {
  max-width: 26ch;
  margin-inline: auto;
}

.about-cta p {
  color: var(--text-soft);
  max-width: 46ch;
  margin: 1rem auto 1.8rem;
}

/* --- Size Guide: unit toggle --- */
.szg-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.szg-unit {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .25rem;
  gap: .2rem;
  background: var(--surface);
}

.szg-unit button {
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .3s, color .3s;
}

.szg-unit button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}

/* --- Size Guide: category tabs --- */
.szg-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.szg-tab {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: border-color .3s, color .3s, background .3s;
}

.szg-tab.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* --- Size Guide: chart table --- */
.szg-panel {
  display: none;
}

.szg-panel.is-active {
  display: block;
}

.szg-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  background: var(--surface);
}

.szg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: .88rem;
}

.szg-table caption {
  caption-side: top;
  text-align: left;
  padding: 1.1rem 1.3rem 0;
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
}

.szg-table th,
.szg-table td {
  padding: .8rem 1.3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.szg-table th:first-child,
.szg-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.szg-table thead th {
  color: var(--text-soft);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--surface-2);
}

.szg-table tbody tr:last-child th,
.szg-table tbody tr:last-child td {
  border-bottom: 0;
}

.szg-table tbody tr:hover {
  background: color-mix(in oklab, var(--accent) 7%, transparent);
}

/* --- Size Guide: how-to-measure steps --- */
.szg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.szg-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.6rem;
}

.szg-step__no {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 16%, transparent);
  color: var(--accent);
  font-family: var(--head);
  font-weight: 600;
  margin-bottom: .9rem;
}

.szg-step h3 {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.szg-step p {
  color: var(--text-soft);
  font-size: .9rem;
}

/* --- Size Guide: tip note --- */
.szg-note {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: color-mix(in oklab, var(--mint) 40%, var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.2rem 1.4rem;
  margin-top: 1.8rem;
}

.szg-note__ico {
  font-size: 1.2rem;
  line-height: 1;
}

.szg-note p {
  font-size: .88rem;
  color: var(--text-soft);
}

.szg-note strong {
  color: var(--text);
}

/* --- Responsive: tablet --- */
@media (max-width:960px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    aspect-ratio: 16/10;
    order: -1;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .szg-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Responsive: mobile --- */
@media (max-width:640px) {
  .page-hero__crumb {
    flex-wrap: wrap;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }

  .szg-steps {
    grid-template-columns: 1fr;
  }

  .szg-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .szg-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .3rem;
  }

  .szg-tab {
    flex: none;
  }
}

/* =========================================================
   Petit Lune — Shop, Shop Detail & Wishlist Styles
   Unified Parisian luxury aesthetic, dark mode & RTL ready
   ========================================================= */

/* --- Toast notification --- */
.pl-toast {
  position: fixed;
  bottom: 2rem;
  inset-inline-end: 2rem;
  z-index: 1000;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-l);
  border-radius: var(--r-m);
  padding: .9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.pl-toast.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pl-toast__icon {
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Common Hero / Crumb Additions --- */
.page-hero--shop {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.shop-badge-count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  border-radius: 999px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .6rem;
}

/* --- Shop Page: Toolbar & Filters --- */
.shop-toolbar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.2rem 1.6rem;
  margin-bottom: 2.2rem;
  margin-top: 5em;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.shop-toolbar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.shop-filters-cat {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.shop-filter-btn {
  padding: .48rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all .25s var(--ease);
}

.shop-filter-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.shop-filter-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.shop-sort-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .84rem;
  color: var(--text-soft);
}

.shop-select {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem 1.2rem .45rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color .3s;
}

.shop-select:focus {
  border-color: var(--accent);
}

.shop-toolbar__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.shop-filters-age {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.shop-age-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.shop-age-btn {
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-soft);
  background: transparent;
  border: 1px dashed var(--border);
  transition: all .25s var(--ease);
}

.shop-age-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.shop-age-btn.is-active {
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  border-color: var(--accent);
  border-style: solid;
  color: var(--accent);
}

.shop-count-note {
  font-size: .82rem;
  color: var(--text-soft);
}

/* --- Shop Product Grid --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.shop-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-s);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
  border-color: color-mix(in oklab, var(--accent) 40%, var(--border));
}

.shop-card.is-hidden {
  display: none;
}

.shop-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
}

.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}

.shop-card:hover .shop-card__img {
  transform: scale(1.07);
}

.shop-card__flags {
  position: absolute;
  top: .85rem;
  inset-inline-start: .85rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  z-index: 3;
}

.shop-flag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}

.shop-flag--alt {
  background: var(--deep);
  color: var(--deep-ink);
}

.shop-flag--sale {
  background: #c2554a;
  color: #fff;
}

.shop-card__fav {
  position: absolute;
  top: .85rem;
  inset-inline-end: .85rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--surface) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  transition: all .25s var(--ease);
  cursor: pointer;
}

.shop-card__fav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  transition: fill .25s, stroke .25s, transform .25s;
}

.shop-card__fav:hover {
  color: #d1495b;
  transform: scale(1.12);
}

.shop-card__fav.is-saved {
  color: #d1495b;
  background: var(--surface);
}

.shop-card__fav.is-saved svg {
  fill: #d1495b;
  stroke: #d1495b;
}

.shop-card__quick {
  position: absolute;
  inset-inline: .9rem;
  bottom: .9rem;
  z-index: 3;
  padding: .75rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all .35s var(--ease);
  cursor: pointer;
}

.shop-card:hover .shop-card__quick,
.shop-card__quick:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.shop-card__quick:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.shop-card__body {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card__meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .35rem;
}

.shop-card__category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.shop-card__rating {
  font-size: .75rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: .25rem;
}

.shop-card__rating span {
  color: #e09f3e;
}

.shop-card__title {
  font-family: var(--head);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: .35rem;
  color: var(--text);
  transition: color .25s;
}

.shop-card__title a:hover {
  color: var(--accent);
}

.shop-card__specs {
  font-size: .82rem;
  color: var(--text-soft);
  margin-bottom: .8rem;
}

.shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

.shop-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.shop-card__price s {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-inline-start: .35rem;
}

.shop-card__swatches {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.shop-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

/* --- Pagination --- */
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 4rem;
}

.shop-page-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s var(--ease);
}

.shop-page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.shop-page-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* --- Value Proposition Banner --- */
.shop-values {
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-s);
  margin-bottom: 4rem;
}

.shop-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.shop-val {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.shop-val__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.shop-val h3 {
  font-family: var(--head);
  font-size: 1.12rem;
  font-weight: 600;
}

.shop-val p {
  font-size: .86rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* =========================================================
   SHOP DETAIL PAGE STYLES
   ========================================================= */

.detail-section {
  padding-top: 1rem;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.detail-crumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.detail-crumb a:hover {
  color: var(--accent);
}

.detail-crumb span {
  opacity: .5;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 4em;
}

/* --- Gallery --- */
.detail-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-m);
}

.detail-stage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity .35s var(--ease), transform .6s var(--ease);
}

.detail-stage.is-swapping .detail-stage__img {
  opacity: .4;
  transform: scale(.98);
}

.detail-stage__badge {
  position: absolute;
  top: 1.2rem;
  inset-inline-start: 1.2rem;
  z-index: 3;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detail-stage__fav {
  position: absolute;
  top: 1.2rem;
  inset-inline-end: 1.2rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--surface) 90%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: all .25s var(--ease);
  cursor: pointer;
}

.detail-stage__fav:hover {
  color: #d1495b;
  transform: scale(1.08);
}

.detail-stage__fav.is-saved {
  color: #d1495b;
}

.detail-stage__fav.is-saved svg {
  fill: #d1495b;
  stroke: #d1495b;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.detail-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-m);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .3s, transform .3s;
  padding: 0;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-thumb:hover {
  transform: translateY(-2px);
}

.detail-thumb.is-active {
  border-color: var(--accent);
}

/* --- Product Info Column --- */
.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .6rem;
}

.detail-sku {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  color: var(--text-soft);
}

.detail-rating__stars {
  color: #e09f3e;
}

.detail-rating__link {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.detail-title {
  font-family: var(--head);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: .9rem;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.detail-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}

.detail-price-old {
  font-size: 1.2rem;
  color: var(--text-soft);
  text-decoration: line-through;
}

.detail-discount {
  background: color-mix(in oklab, #c2554a 16%, transparent);
  color: #c2554a;
  border-radius: 999px;
  padding: .2rem .65rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.detail-desc {
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

/* --- Form Options: Colorway, Sizes, Quantity --- */
.detail-option {
  margin-bottom: 1.6rem;
}

.detail-option__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .7rem;
  font-size: .86rem;
}

.detail-option__title {
  font-weight: 600;
}

.detail-option__title span {
  color: var(--accent);
  font-weight: 700;
}

.detail-sizeguide-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: .82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.detail-swatches {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.detail-swatch-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 3px;
  background: var(--surface);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.detail-swatch-btn span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.detail-swatch-btn:hover {
  transform: scale(1.1);
}

.detail-swatch-btn.is-active {
  border-color: var(--text);
}

.detail-sizes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .6rem;
}

.detail-size-btn {
  padding: .7rem .4rem;
  border-radius: var(--r-s);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.detail-size-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.detail-size-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* --- Add to cart row --- */
.detail-cta-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.8rem;
}

.detail-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: .35rem .6rem;
}

.detail-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  transition: background .2s;
}

.detail-qty-btn:hover {
  background: var(--bg);
}

.detail-qty-val {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
}

.detail-btn-cart {
  flex: 1;
  padding: 1rem 1.8rem;
  font-size: .96rem;
}

.detail-btn-wish {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.detail-btn-wish:hover {
  border-color: #d1495b;
  color: #d1495b;
}

.detail-btn-wish.is-saved {
  color: #d1495b;
  border-color: #d1495b;
  background: color-mix(in oklab, #d1495b 10%, var(--surface));
}

.detail-btn-wish.is-saved svg {
  fill: #d1495b;
}

/* --- Stock indicator --- */
.detail-stock {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  font-weight: 600;
  color: #2b7a4b;
  margin-bottom: 2rem;
}

.detail-stock__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2b7a4b;
  box-shadow: 0 0 0 4px rgba(43, 122, 75, .2);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 122, 75, .4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(43, 122, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 122, 75, 0);
  }
}

/* --- Product Accordions --- */
.detail-accordions {
  border-top: 1px solid var(--border);
}

.detail-acc {
  border-bottom: 1px solid var(--border);
}

.detail-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: start;
  cursor: pointer;
}

.detail-acc__icon {
  font-size: 1.2rem;
  transition: transform .3s var(--ease);
}

.detail-acc.is-open .detail-acc__icon {
  transform: rotate(45deg);
}

.detail-acc__body {
  display: none;
  padding-bottom: 1.3rem;
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.detail-acc.is-open .detail-acc__body {
  display: block;
}

.detail-acc__body ul {
  padding-inline-start: 1.2rem;
  margin-top: .5rem;
}

.detail-acc__body li {
  margin-bottom: .35rem;
}

/* --- Complete The Look / Related Section --- */
.complete-look {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(36px, 4.5vw, 56px) 0;
}

/* =========================================================
   WISHLIST PAGE STYLES
   ========================================================= */

.wishlist-hero {
  padding-bottom: 2rem;
}

.wishlist-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.2rem 1.6rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-s);
  flex-wrap: wrap;
}

.wishlist-bar__info {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.wishlist-bar__actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.wishlist-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-s);
  transition: all .35s var(--ease);
}

.wishlist-card.is-removing {
  opacity: 0;
  transform: scale(.92);
}

.wishlist-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
}

.wishlist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}

.wishlist-card:hover .wishlist-card__media img {
  transform: scale(1.06);
}

.wishlist-card__del {
  position: absolute;
  top: .85rem;
  inset-inline-end: .85rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--surface) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.wishlist-card__del:hover {
  background: #c2554a;
  color: #fff;
  border-color: #c2554a;
  transform: scale(1.1);
}

.wishlist-card__body {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wishlist-card__badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2b7a4b;
  margin-bottom: .3rem;
}

.wishlist-card__title {
  font-family: var(--head);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: .35rem;
}

.wishlist-card__title a:hover {
  color: var(--accent);
}

.wishlist-card__spec {
  font-size: .82rem;
  color: var(--text-soft);
  margin-bottom: .8rem;
}

.wishlist-card__foot {
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.wishlist-card__price {
  font-size: 1.05rem;
  font-weight: 700;
}

.wishlist-card__btn-cart {
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  cursor: pointer;
  transition: all .25s var(--ease);
}

.wishlist-card__btn-cart:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

/* --- Wishlist Empty State --- */
.wishlist-empty {
  display: none;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--r-xl);
  margin-bottom: 2.5rem;
}

.wishlist-empty.is-show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wishlist-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}

.wishlist-empty__icon svg {
  width: 32px;
  height: 32px;
}

.wishlist-empty h2 {
  font-family: var(--head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: .6rem;
}

.wishlist-empty p {
  color: var(--text-soft);
  max-width: 42ch;
  margin-bottom: 1.8rem;
  font-size: .95rem;
}

/* =========================================================
   RESPONSIVE ENHANCEMENTS (TABLET & MOBILE)
   ========================================================= */

@media (max-width: 960px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .shop-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .detail-gallery {
    position: static;
  }

  .detail-stage {
    aspect-ratio: 4/3.5;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .shop-toolbar {
    padding: 1rem;
  }

  .shop-toolbar__top,
  .shop-toolbar__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: .9rem;
  }

  .shop-filters-cat {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .3rem;
  }

  .shop-filter-btn {
    flex: none;
  }

  .shop-filters-age {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .3rem;
  }

  .shop-age-btn {
    flex: none;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .shop-values__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-stage {
    aspect-ratio: 1;
  }

  .detail-thumbs {
    gap: .6rem;
  }

  .detail-sizes {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-cta-row {
    flex-wrap: wrap;
  }

  .detail-btn-cart {
    width: 100%;
    order: 2;
  }

  .detail-qty {
    order: 1;
  }

  .detail-btn-wish {
    order: 1;
  }

  .wishlist-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Petit Lune — Sale, Cart & Checkout Page Styles
   Parisian Atelier Luxury Aesthetic, Responsive, Dark Mode Ready
   ========================================================= */

/* --- SALE PAGE STYLES --- */

/* 1. Sale Hero Banner */
.sale-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 50%),
              color-mix(in oklab, var(--surface) 90%, var(--bg));
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 4.5vw, 4rem) 0;
}

.sale-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sale-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: color-mix(in oklab, #c2554a 14%, transparent);
  color: #c2554a;
  border: 1px solid color-mix(in oklab, #c2554a 30%, transparent);
  border-radius: 999px;
  padding: .35rem .95rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sale-hero__title {
  font-family: var(--head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.sale-hero__lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 48ch;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.sale-hero__cta {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}

.sale-hero__timer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sale-hero__timer-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}

.sale-timer-digits {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .9rem;
}

.timer-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-slot__num {
  font-family: var(--head);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  min-width: 54px;
  padding: .35rem .2rem;
  line-height: 1.1;
}

.timer-slot__lbl {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  margin-top: .3rem;
}

.timer-sep {
  font-family: var(--head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  align-self: flex-start;
  margin-top: .4rem;
}

.sale-hero__timer-note {
  font-size: .8rem;
  color: var(--text-soft);
}

/* 2. Shop Sale by Category */
.sale-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.sale-cat-card {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.sale-cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.sale-cat-card:hover .sale-cat-card__img {
  transform: scale(1.08);
}

.sale-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 19, 17, .85) 0%, rgba(23, 19, 17, .2) 60%, transparent 100%);
  z-index: 1;
}

.sale-cat-card__content {
  position: relative;
  z-index: 2;
  color: #fffdfa;
}

.sale-cat-card__tag {
  display: inline-block;
  background: #c2554a;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}

.sale-cat-card__title {
  font-family: var(--head);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.sale-cat-card__count {
  font-size: .8rem;
  opacity: .85;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* 3. Flash Sale / Limited-Time Offers */
.flash-sale-wrap {
  background: color-mix(in oklab, var(--deep) 92%, black);
  color: var(--deep-ink);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-l);
  position: relative;
  overflow: hidden;
}

.flash-sale__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.flash-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #c2554a;
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: .8rem;
}

.flash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.flash-card {
  background: color-mix(in oklab, var(--deep) 75%, transparent);
  border: 1px solid color-mix(in oklab, var(--border) 25%, transparent);
  border-radius: var(--r-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.flash-card__media {
  position: relative;
  aspect-ratio: 4/3.8;
  overflow: hidden;
}

.flash-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.flash-card:hover .flash-card__media img {
  transform: scale(1.06);
}

.flash-card__discount {
  position: absolute;
  top: .9rem;
  inset-inline-start: .9rem;
  background: #c2554a;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .75rem;
  border-radius: 999px;
}

.flash-card__body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.flash-card__title {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.flash-card__title a {
  color: var(--deep-ink);
}

.flash-card__meta {
  font-size: .82rem;
  opacity: .8;
  margin-bottom: .8rem;
}

.flash-card__price-row {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: .9rem;
}

.flash-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.flash-card__price s {
  font-size: .92rem;
  opacity: .6;
}

.flash-meter {
  margin-bottom: 1.1rem;
}

.flash-meter__text {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .35rem;
  opacity: .9;
}

.flash-meter__bar {
  height: 6px;
  background: color-mix(in oklab, var(--deep-ink) 20%, transparent);
  border-radius: 999px;
  overflow: hidden;
}

.flash-meter__fill {
  height: 100%;
  background: linear-gradient(to right, #c2554a, #e09f3e);
  border-radius: 999px;
}

.flash-card__btn {
  width: 100%;
  padding: .75rem;
  border-radius: 999px;
  background: var(--deep-ink);
  color: var(--deep);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.flash-card__btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

/* 4. Best Sale Picks / Clearance Section */
.clearance-section {
  background: color-mix(in oklab, #c2554a 4%, var(--surface));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clearance-badge {
  background: #c2554a;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: .8rem;
}

/* 5. Exclusive Sale Banner */
.sale-exclusive-banner {
  background: var(--surface);
  border: 2px dashed var(--accent);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-s);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.exclusive-code-box {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4rem .5rem .4rem 1.4rem;
}

.exclusive-code {
  font-family: var(--head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
}

.btn-copy-code {
  padding: .6rem 1.2rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}

.btn-copy-code:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

/* =========================================
   CART PAGE STYLES
   ========================================= */

.cart-section {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  overflow: visible;
  margin-top: 4em;
}

.cart-items-wrap {
  min-width: 0;
  overflow: visible;
}

/* =========================================
   FREE SHIPPING METER
   ========================================= */

.cart-ship-meter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.3rem 1.6rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-s);
}

.cart-ship-meter__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .65rem;
}

.cart-ship-meter__bar {
  height: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.cart-ship-meter__fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), #2b7a4b);
  border-radius: 999px;
  transition: width .4s var(--ease);
}

/* =========================================
   CART TABLE
   ========================================= */

.cart-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  margin-bottom: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto auto auto auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
  transition: opacity .3s, transform .3s;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item.is-removing {
  opacity: 0;
  transform: translateX(-15px);
}

.cart-item__thumb {
  width: 90px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--surface-2);
}

.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__title {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.cart-item__specs {
  font-size: .82rem;
  color: var(--text-soft);
}

.cart-item__price {
  font-weight: 700;
  font-size: 1rem;
}

.cart-item__total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  min-width: 65px;
  text-align: end;
}

.cart-item__del {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s;
}

.cart-item__del:hover {
  background: #c2554a;
  color: #fff;
}

/* =========================================
   ORDER SUMMARY - STICKY
   ========================================= */

.cart-summary-wrap {
  align-self: start;
  min-width: 0;
  overflow: visible;
}

.cart-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;

  align-self: start;

  width: 100%;
  box-sizing: border-box;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.8rem;
  box-shadow: var(--shadow-m);

  z-index: 20;
}

.cart-summary__title {
  font-family: var(--head);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--border);
}

.cart-promo-form {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.cart-promo-input {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .65rem 1.1rem;
  font-size: .84rem;
  outline: none;
  text-transform: uppercase;
}

.cart-promo-input:focus {
  border-color: var(--accent);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
  color: var(--text-soft);
  margin-bottom: .85rem;
}

.cart-summary__row strong {
  color: var(--text);
}

.cart-summary__row--discount {
  color: #2b7a4b;
  font-weight: 600;
}

.cart-summary__row--total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-checkout {
  width: 100%;
  padding: 1.05rem;
  font-size: .96rem;
  margin-bottom: 1.2rem;
}

.cart-trust-badges {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .8rem;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.cart-trust-badges span {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* =========================================
   CART EMPTY STATE
   ========================================= */

.cart-empty {
  display: none;
  text-align: center;
  padding: clamp(2rem, 4.5vw, 3.8rem) 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--r-xl);
}

.cart-empty.is-show {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================
   MOBILE / TABLET
   ========================================= */

@media (max-width: 900px) {

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-wrap {
    width: 100%;
  }

  .cart-summary {
    position: static;
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .cart-item__price,
  .cart-item__qty,
  .cart-item__total {
    grid-column: 2;
  }

  .cart-item__del {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 600px) {

  .cart-ship-meter {
    padding: 1rem;
  }

  .cart-ship-meter__text {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
  }

  .cart-item {
    grid-template-columns: 70px 1fr auto;
    gap: .8rem;
    padding: 1rem;
  }

  .cart-item__thumb {
    width: 70px;
  }

  .cart-item__title {
    font-size: .95rem;
  }

  .cart-summary {
    padding: 1.3rem;
  }
}

/* --- CHECKOUT PAGE STYLES --- */

/* Fix Sticky Positioning by preventing unwanted scroll clipping */
html, body {
  overflow-x: clip;
}

main {
  overflow: clip;
}

.checkout-section {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.checkout-steps-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.checkout-steps-bar .is-active {
  color: var(--accent);
  font-weight: 700;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.8rem);
  align-items: start; /* Crucial for CSS sticky functionality */
}

.checkout-forms {
  display: flex;
  flex-direction: column;
}

.checkout-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.8rem clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-s);
  margin-bottom: 2rem;
}

.checkout-box__title {
  font-family: var(--head);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form-input,
.form-select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .25s;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
}

/* Shipping Options Radio Cards */
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.delivery-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  background: var(--bg);
  cursor: pointer;
  transition: all .25s;
}

.delivery-option.is-selected {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, var(--surface));
}

.delivery-option__info {
  display: flex;
  align-items: center;
  gap: .8rem;
}

/* Payment Method Tabs */
.payment-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.4rem;
}

.payment-tab {
  flex: 1;
  padding: .7rem;
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  background: var(--bg);
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
}

.payment-tab.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* --- STICKY ORDER REVIEW FIXES --- */

.checkout-review-wrap {
  height: 100%;
  position: relative;
}

.checkout-review {
  position: -webkit-sticky; /* Legacy Safari support */
  position: sticky;
  top: clamp(1rem, 3vw, 2rem); /* Dynamic top offset */
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.8rem;
  box-shadow: var(--shadow-m);
}

/* Adjust sticky top offset if fixed header is present */
.header--fixed ~ main .checkout-review,
body:has(.header) .checkout-review {
  top: calc(var(--header-h, 80px) + 1.5rem);
}

.review-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 290px;
  overflow-y: auto;
  padding-inline-end: .4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-item__thumb {
  position: relative;
  width: 58px;
  aspect-ratio: 4/5;
  border-radius: var(--r-s);
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}

.review-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-item__qty-badge {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: .7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.review-item__info {
  flex: 1;
}

.review-item__title {
  font-family: var(--head);
  font-size: .95rem;
  font-weight: 600;
}

.review-item__specs {
  font-size: .78rem;
  color: var(--text-soft);
}

.review-item__price {
  font-weight: 700;
  font-size: .95rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  margin-bottom: .75rem;
  color: var(--text-soft);
}

.cart-summary__row strong {
  color: var(--text);
}

.cart-summary__row--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.btn-checkout {
  width: 100%;
  margin-top: 1.2rem;
  padding: .95rem;
  font-weight: 700;
}

.cart-trust-badges {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.2rem;
  font-size: .76rem;
  color: var(--text-soft);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-review-wrap {
    order: -1; /* Shows summary first on mobile */
  }

  .checkout-review {
    position: static; /* Disable sticky on tablet/mobile views */
  }
}

@media (max-width: 576px) {
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   RESPONSIVE ENHANCEMENTS: SALE, CART & CHECKOUT
   ========================================================= */

@media (max-width: 960px) {
  .sale-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sale-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flash-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-review {
    position: static;
  }
}

@media (max-width: 640px) {
  .sale-cats-grid {
    grid-template-columns: 1fr;
  }

  .sale-hero__timer-box {
    padding: 1.4rem 1rem;
  }

  .timer-slot__num {
    min-width: 44px;
    padding: .25rem .15rem;
  }

  .sale-exclusive-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .exclusive-code-box {
    justify-content: center;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    grid-template-areas:
      "thumb title"
      "thumb price"
      "qty total"
      "del del";
    gap: .8rem;
    padding: 1.2rem;
  }

  .cart-item__thumb {
    grid-area: thumb;
    width: 70px;
  }

  .cart-item__title-wrap {
    grid-area: title;
  }

  .cart-item__price {
    grid-area: price;
  }

  .cart-item__qty {
    grid-area: qty;
  }

  .cart-item__total {
    grid-area: total;
    text-align: end;
  }

  .cart-item__del {
    grid-area: del;
    width: 100%;
    border-radius: var(--r-s);
    background: color-mix(in oklab, #c2554a 10%, transparent);
    color: #c2554a;
    font-size: .82rem;
    font-weight: 600;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   AUTH PAGES (LOGIN & SIGNUP)
   Styling for authentication pages with consistent design
   ========================================================= */

/* --- Auth Hero Section --- */
.auth-hero {
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 12%, var(--bg)), var(--bg));
  position: relative;
}

.auth-hero .page-hero__title {
  max-width: 25ch;
}

/* --- Auth Container Layout --- */
.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Auth Form Styling --- */
.auth-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-m);
}

.auth-form__header {
  margin-bottom: 2rem;
  text-align: center;
}

.auth-form__title {
  font-family: var(--head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-top: 0.5rem;
  line-height: 1.15;
}

.auth-form__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.auth-form__forgot {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.auth-form__forgot:hover {
  color: var(--text);
  text-decoration: underline;
}

.auth-form__btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.auth-form__msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  min-height: 1.3em;
}

.auth-form__msg.is-error {
  color: #c2554a;
}

.auth-form__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.auth-form__divider::before,
.auth-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* --- Social Login Buttons --- */
.auth-form__social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.auth-form__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.auth-form__social-btn svg {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: currentColor;
}

.auth-form__social-btn:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-2px);
}

.auth-form__footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 1.5rem;
}

.auth-form__footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.auth-form__footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* --- Field Hint --- */
.field__hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.4rem;
  font-style: italic;
}

/* --- Auth Benefits Section --- */
.auth-benefits {
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 14%, var(--surface)), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-m);
}

.auth-benefits h3 {
  font-family: var(--head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.auth-benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-benefits__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.auth-benefits__icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.auth-benefits__list strong {
  display: block;
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.auth-benefits__list p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* --- Responsive: Tablet --- */
@media (max-width: 960px) {
  .auth-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .auth-form {
    order: 1;
  }

  .auth-benefits {
    order: 2;
  }

  .auth-form__social {
    grid-template-columns: 1fr;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 640px) {
  .auth-form {
    padding: 1.5rem;
  }

  .auth-form__title {
    font-size: 1.5rem;
  }

  .auth-benefits {
    padding: 1.5rem;
  }

  .auth-benefits h3 {
    font-size: 1.3rem;
  }

  .auth-benefits__list {
    gap: 1.2rem;
  }

  .auth-benefits__icon {
    font-size: 1.5rem;
  }

  .cform__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ================= Login Page (no header) ================= */

/* Full-viewport centered layout */
.login-page-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.login-page-center {
  width: 100%;
  max-width: 480px;
}

/* Override auth-container: single column, no grid split */
.login-page-center .auth-container {
  display: block;
  max-width: 100%;
}

/* Logo centered at the top of the form card */
.auth-form__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.auth-form__brand .brand__text {
  font-size: 1.5rem;
}

/* Top-right floating controls */
.login-page-controls {
  position: fixed;
  top: 1rem;
  inset-inline-end: 1.2rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  z-index: 100;
}

/* Give the controls a subtle backdrop so they read over any bg */
.login-page-controls .icon-btn,
.login-page-controls .header__ltr {
  background: color-mix(in oklab, var(--surface) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.login-page-controls .icon-btn:hover,
.login-page-controls .header__ltr:hover {
  background: var(--surface-2);
}

@media (max-width: 480px) {
  .login-page-center {
    max-width: 100%;
  }
}

/* Signup page: wider center container to accommodate benefits panel */
.login-page-center--wide {
  max-width: 680px;
}

@media (max-width: 680px) {
  .login-page-center--wide {
    max-width: 100%;
  }
}

/* =========================================================
   Coming Soon Page
   ========================================================= */

.cs {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cs__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
}

.cs__right {
  position: relative;
  background: var(--deep);
  overflow: hidden;
}

.cs__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.cs__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--gold-soft) 30%, transparent);
  animation: csRingPulse 5s ease-in-out infinite;
}

.cs__ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.cs__ring:nth-child(2) { width: 340px; height: 340px; animation-delay: .9s; }
.cs__ring:nth-child(3) { width: 480px; height: 480px; animation-delay: 1.8s; }
.cs__ring:nth-child(4) { width: 620px; height: 620px; animation-delay: 2.7s; }

@keyframes csRingPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: .18; transform: scale(1.06); }
}

.cs__moon {
  font-size: 5rem;
  animation: float 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px color-mix(in oklab, var(--gold-soft) 60%, transparent));
}

.cs__right-label {
  position: absolute;
  bottom: 2.2rem;
  inset-inline: 0;
  text-align: center;
  color: color-mix(in oklab, var(--gold-soft) 55%, transparent);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
}

.cs__glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 16%, transparent), transparent 65%);
  filter: blur(32px);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.cs__brand {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.cs__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cs__title {
  font-family: var(--head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}

.cs__title em {
  font-style: italic;
  color: var(--accent);
}

.cs__lead {
  color: var(--text-soft);
  font-size: 1.02rem;
  max-width: 44ch;
  line-height: 1.7;
  margin: 0 auto 2.4rem;
}

.cs__countdown {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cs__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 1rem 1.3rem .8rem;
  min-width: 72px;
  box-shadow: var(--shadow-s);
}

.cs__unit-val {
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.cs__unit-lbl {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: .35rem;
  font-weight: 600;
}

.cs__form-label {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .6rem;
  display: block;
  text-align: center;
}

.cs__form {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  max-width: 440px;
  justify-content: center;
  margin: 0 auto;
}

.cs__form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .3s, box-shadow .3s;
}

.cs__form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
}

.cs__form-msg {
  flex-basis: 100%;
  font-size: .85rem;
  min-height: 1.2em;
  color: var(--accent);
  font-weight: 600;
  padding-inline-start: .4rem;
}

.cs__form-msg.is-error {
  color: #c2554a;
}

.cs__social {
  display: flex;
  gap: .5rem;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  justify-content: center;
}

.cs__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-soft);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
}

.cs__social a:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-3px);
}

.cs__controls {
  position: fixed;
  top: 1rem;
  inset-inline-end: 1.2rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  z-index: 100;
}

.cs__controls .icon-btn,
.cs__controls .header__ltr {
  background: color-mix(in oklab, var(--surface) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.cs__controls .icon-btn:hover,
.cs__controls .header__ltr:hover {
  background: var(--surface-2);
}

@media (max-width: 768px) {
  .cs__lead {
    margin-inline: auto;
  }

  .cs__countdown {
    justify-content: center;
  }

  .cs__form {
    justify-content: center;
    max-width: 100%;
  }

  .cs__social {
    justify-content: center;
  }
}

/* =========================================================
   Blog Page
   ========================================================= */

/* Hero */
.blog-hero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
  text-align: center;
  overflow: hidden;
}

.blog-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%);
}

.blog-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.blog-hero__crumb {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
}

.blog-hero__crumb a:hover { color: var(--accent); transition: color .3s; }

.blog-hero__title {
  font-family: var(--head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.06;
  margin-bottom: 1rem;
}

.blog-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.blog-hero__lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Category filter strip */
.blog-cats {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0 0;
}

.blog-cat-btn {
  padding: .5rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}

.blog-cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.blog-cat-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Featured post */
.blog-featured {
  background: var(--surface);
}

.blog-featured__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.blog-featured__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.blog-featured__media img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.blog-featured__media:hover img {
  transform: scale(1.04);
}

.blog-featured__tag {
  position: absolute;
  top: 1.1rem;
  inset-inline-start: 1.1rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
}

.blog-featured__copy .eyebrow { margin-bottom: .8rem; }

.blog-featured__title {
  font-family: var(--head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.blog-featured__title a {
  transition: color .3s;
}

.blog-featured__title a:hover {
  color: var(--accent);
}

.blog-featured__excerpt {
  color: var(--text-soft);
  font-size: .98rem;
  line-height: 1.72;
  margin-bottom: 1.6rem;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.blog-featured__meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* Post grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
}

.blog-card.is-hidden {
  display: none;
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__media img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__tag {
  position: absolute;
  top: .9rem;
  inset-inline-start: .9rem;
  background: var(--surface);
  color: var(--text);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.blog-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  font-size: .78rem;
  color: var(--text-soft);
  margin-bottom: .6rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.blog-card__title {
  font-family: var(--head);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.28;
  margin-bottom: .6rem;
}

.blog-card__title a {
  transition: color .3s;
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}

.blog-card__read {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .3s var(--ease);
}

.blog-card__read:hover {
  gap: .6rem;
}

/* Load more */
.blog-more {
  text-align: center;
  margin-top: 3rem;
}

/* Sidebar newsletter */
.blog-news {
  background: var(--deep);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--deep-ink);
  text-align: center;
}

.blog-news .eyebrow {
  color: var(--gold-soft);
}

.blog-news__title {
  font-family: var(--head);
  font-size: 1.5rem;
  font-weight: 600;
  margin: .5rem 0 .8rem;
}

.blog-news__title em {
  font-style: italic;
  color: var(--gold-soft);
}

.blog-news p {
  opacity: .8;
  font-size: .95rem;
  margin-bottom: 1.6rem;
}

.blog-news__form {
  display: flex;
  gap: .5rem;
  flex-direction: column;
  align-items: center;
}

.blog-news__form input {
  width: 100%;
  max-width: 320px;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--deep-ink) 30%, transparent);
  background: color-mix(in oklab, var(--deep-ink) 10%, transparent);
  color: var(--deep-ink);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
}

.blog-news__form input::placeholder {
  color: color-mix(in oklab, var(--deep-ink) 50%, transparent);
}

.blog-news__form input:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold-soft) 25%, transparent);
}

.blog-news__msg {
  font-size: .82rem;
  min-height: 1.2em;
  color: var(--gold-soft);
  font-weight: 600;
}

.blog-news__msg.is-error {
  color: #f28a82;
}

/* Popular tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.blog-tag {
  padding: .35rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--surface);
  transition: background .3s, color .3s, border-color .3s;
  cursor: pointer;
}

.blog-tag:hover,
.blog-tag.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 1080px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .blog-featured__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-cats {
    gap: .4rem;
  }
}

/* =========================================================
   Blog Detail Page
   ========================================================= */

.bdet {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* Article */
.bdet__article {}

.bdet__hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-l);
  margin-bottom: 2.2rem;
}

.bdet__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.bdet__meta a:hover { color: var(--accent); }

.bdet__tag {
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 999px;
}

.bdet__title {
  font-family: var(--head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.bdet__title em {
  font-style: italic;
  color: var(--accent);
}

.bdet__author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  margin-bottom: 2.2rem;
}

.bdet__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bdet__author-name {
  font-weight: 600;
  font-size: .9rem;
}

.bdet__author-role {
  font-size: .78rem;
  color: var(--text-soft);
}

/* Article body typography */
.bdet__body {
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--text);
}

.bdet__body h2 {
  font-family: var(--head);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 2.4rem 0 .9rem;
  line-height: 1.2;
}

.bdet__body h3 {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.8rem 0 .6rem;
}

.bdet__body p {
  margin-bottom: 1.2rem;
  color: var(--text-soft);
}

.bdet__body p:last-child {
  margin-bottom: 0;
}

.bdet__body strong {
  color: var(--text);
  font-weight: 600;
}

.bdet__body ul,
.bdet__body ol {
  padding-inline-start: 1.4rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.bdet__body li {
  color: var(--text-soft);
  padding-inline-start: .3rem;
}

.bdet__body blockquote {
  border-inline-start: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.8rem 0;
  background: color-mix(in oklab, var(--accent) 7%, transparent);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  font-family: var(--head);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--text);
}

.bdet__body img {
  width: 100%;
  border-radius: var(--r-l);
  margin: 1.8rem 0;
  box-shadow: var(--shadow-m);
}

/* Share strip */
.bdet__share {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.4rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.bdet__share span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-inline-end: .2rem;
}

.bdet__share-btn {
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .3s, color .3s, border-color .3s;
}

.bdet__share-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Sidebar */
.bdet__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.bdet__widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.6rem;
}

.bdet__widget-title {
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}

/* Related posts in sidebar */
.bdet__related {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bdet__rel-post {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.bdet__rel-post img {
  width: 68px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--r-s);
  flex-shrink: 0;
}

.bdet__rel-post-title {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .25rem;
  transition: color .3s;
}

.bdet__rel-post-title:hover {
  color: var(--accent);
}

.bdet__rel-post-date {
  font-size: .75rem;
  color: var(--text-soft);
}

/* TOC widget */
.bdet__toc {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.bdet__toc a {
  font-size: .85rem;
  color: var(--text-soft);
  padding: .3rem .5rem;
  border-radius: var(--r-s);
  transition: background .25s, color .25s, padding-inline-start .25s;
  border-inline-start: 2px solid transparent;
}

.bdet__toc a:hover,
.bdet__toc a.is-active {
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--accent);
  border-inline-start-color: var(--accent);
  padding-inline-start: .85rem;
}

/* Related posts section at bottom */
.bdet-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .bdet {
    grid-template-columns: 1fr;
  }

  .bdet__sidebar {
    position: static;
  }

  .bdet-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bdet-related__grid {
    grid-template-columns: 1fr;
  }

  .bdet__hero-img {
    aspect-ratio: 4/3;
  }
}

/* =========================================================
   Social icon SVGs in footer .socials and .cs__social
   ========================================================= */

/* Make the footer social links render SVG icons correctly */
.socials a svg,
.cs__social a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Filled icons (Facebook path, Pinterest path, YouTube polygon) */
.socials a[aria-label="Facebook"] svg path,
.socials a[aria-label="Pinterest"] svg path,
.cs__social a[aria-label="Facebook"] svg path,
.cs__social a[aria-label="Pinterest"] svg path {
  fill: currentColor;
  stroke: none;
}

/* YouTube: stroke the background rect, fill the play triangle */
.socials a[aria-label="YouTube"] svg path {
  fill: none;
  stroke: currentColor;
}
.socials a[aria-label="YouTube"] svg polygon,
.cs__social a[aria-label="YouTube"] svg polygon {
  fill: currentColor;
  stroke: none;
}

/* =========================================================
   Order Confirmation Page
   ========================================================= */

.oconf {
  background: var(--bg);
}

.oconf__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Animated success checkmark */
.oconf__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.6rem;
  color: var(--accent);
}

.oconf__icon svg {
  width: 80px;
  height: 80px;
  stroke: currentColor;
  fill: none;
  stroke-width: 0;
}

.oconf__circle-anim {
  stroke-width: 2;
  stroke: var(--accent);
  animation: oconfCircle .7s var(--ease) forwards;
}

.oconf__check-anim {
  stroke: var(--accent);
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: oconfCheck .4s .6s var(--ease) forwards;
}

@keyframes oconfCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes oconfCheck {
  to { stroke-dashoffset: 0; }
}

.oconf__title {
  font-family: var(--head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: .5rem 0 1rem;
}

.oconf__title em {
  font-style: italic;
  color: var(--accent);
}

.oconf__lead {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 52ch;
  margin: 0 auto 1.8rem;
}

/* Order reference pill */
.oconf__ref {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .55rem 1.3rem;
  margin-bottom: 2.4rem;
  font-size: .88rem;
}

.oconf__ref-label {
  color: var(--text-soft);
}

.oconf__ref-num {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
}

/* Summary card */
.oconf__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  text-align: start;
  margin-bottom: 2.8rem;
  box-shadow: var(--shadow-s);
}

.oconf__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.oconf__card-title {
  font-family: var(--head);
  font-size: 1.1rem;
  font-weight: 600;
}

.oconf__card-date {
  font-size: .82rem;
  color: var(--text-soft);
}

/* Items */
.oconf__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.oconf__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oconf__item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--r-s);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-2);
}

.oconf__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oconf__item-body {
  flex: 1;
}

.oconf__item-name {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.oconf__item-meta {
  font-size: .8rem;
  color: var(--text-soft);
}

.oconf__item-price {
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
}

/* Totals */
.oconf__totals {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.oconf__total-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--text-soft);
}

.oconf__total-row--grand {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  margin-top: .4rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}

.oconf__free {
  color: var(--accent);
  font-weight: 600;
}

/* Delivery info */
.oconf__delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.oconf__delivery-label {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .4rem;
}

.oconf__delivery p {
  font-size: .9rem;
  line-height: 1.6;
}

.oconf__delivery-note {
  color: var(--text-soft);
  font-size: .82rem !important;
  margin-top: .3rem;
}

/* What happens next */
.oconf__next {
  margin-bottom: 2.4rem;
  text-align: start;
}

.oconf__next-title {
  font-family: var(--head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.oconf__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.oconf__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.oconf__step-no {
  font-family: var(--head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 2rem;
  line-height: 1.3;
}

.oconf__step strong {
  display: block;
  font-weight: 600;
  margin-bottom: .2rem;
  font-size: .95rem;
}

.oconf__step p {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* CTAs */
.oconf__actions {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Trust badges */
.oconf__trust {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text-soft);
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 640px) {
  .oconf__delivery {
    grid-template-columns: 1fr;
  }

  .oconf__trust {
    gap: .8rem;
    font-size: .75rem;
  }
}

/* =========================================================
   TESTIMONIAL INFINITE-LOOP CAROUSEL  (shop-detail.html)
   ========================================================= */
.testi-carousel {
  width: 100%;
  overflow: hidden;
  padding: 0rem 0 0rem;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testi-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: testiScroll 22s linear infinite;
}

.testi-carousel:hover .testi-track {
  animation-play-state: paused;
}

@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* moves exactly one full set (3 cards) */
}

.testi-card {
  flex: 0 0 360px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e0d8);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  transition: box-shadow .3s;
}

.testi-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
}

.testi-card__stars {
  color: #e09f3e;
  font-size: 1.05rem;
  letter-spacing: .05em;
}

.testi-card__title {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.testi-card__body {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-soft, #6b6460);
  flex: 1;
  margin: 0;
}

.testi-card__author {
  font-size: .8rem;
  color: var(--text-soft, #6b6460);
  margin: .4rem 0 0;
}

/* Reduce card width on small screens */
@media (max-width: 600px) {
  .testi-card { flex: 0 0 280px; }
}

/* =========================================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS (TABLET & MOBILE)
   Ensures every page and section is perfectly proportioned,
   balanced, and touch-friendly across 320px – 1024px.
   ========================================================= */

/* Typography & Word-Wrap Safety */
.blog-hero__title,
.hero__title,
.chero__title,
.sale-hero__title,
.bdet__title,
.sec-title,
.detail-title {
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Base input safety for iOS (prevents auto-zoom) */
input, select, textarea {
  font-size: 16px !important;
}

/* --- Tablet Optimizations (768px – 1024px) --- */
@media (max-width: 1024px) {
  .wrap {
    width: min(100% - 2.5rem, 1240px);
  }

  .detail-grid {
    gap: 2.5rem;
  }

  .shop-grid,
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bdet {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bdet__sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cart-summary,
  .checkout-summary {
    position: static !important;
    top: auto !important;
  }
}

/* --- Medium Tablet & Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .wrap {
    width: min(100% - 2rem, 1240px);
  }

  /* Section Spacing on Tablet & Mobile */
  .section {
    padding: clamp(36px, 4.8vw, 54px) 0;
  }

  .section + .section {
    padding-top: clamp(20px, 3.2vw, 32px);
  }

  .hero + .section,
  .blog-hero + .section,
  .page-hero + .section,
  .chero + .section,
  .sale-hero + .section,
  .h2-hero + .section {
    padding-top: clamp(20px, 3.2vw, 32px);
  }

  /* Header adjustments */
  .header__inner {
    height: 64px;
  }

  /* Hero Section */
  .hero {
    padding-top: clamp(20px, 4vw, 36px);
  }

  .hero__title {
    font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  }

  .hero__stats {
    gap: 1.5rem;
    margin-top: 1.8rem;
  }

  .hero__card--float {
    display: none;
  }

  .hero__pill {

    inset-inline-start: 12px;
  }

  /* Shop detail page */
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-stage {
    aspect-ratio: 4/4.5;
  }

  .detail-cta-row {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .detail-btn-cart {
    flex: 1 1 200px;
  }

  /* Shop toolbar & filters */
  .shop-toolbar__top,
  .shop-toolbar__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .shop-filters-cat,
  .shop-filters-age {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: .4rem;
    scrollbar-width: none;
  }

  .shop-filters-cat::-webkit-scrollbar,
  .shop-filters-age::-webkit-scrollbar {
    display: none;
  }

  .shop-filter-btn,
  .shop-age-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Size guide table */
  .szg-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--r-m);
    box-shadow: inset -10px 0 10px -10px rgba(0,0,0,0.1);
  }

  .szg-table {
    min-width: 540px;
  }

  .szg-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .szg-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: .2rem;
  }

  .szg-tabs::-webkit-scrollbar {
    display: none;
  }

  .szg-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Contact page */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cform__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Blog detail sidebar */
  .bdet__sidebar {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bar {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  /* Sale page */
  .sale-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sale-cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* --- Mobile Small Screens (max-width: 480px) --- */
@media (max-width: 480px) {
  .wrap {
    width: min(100% - 1.5rem, 1240px);
  }

  .section {
    padding: clamp(30px, 4.5vw, 44px) 0;
  }

  .sec-title {
    font-size: clamp(1.75rem, 5.2vw, 2.3rem);
  }

  .blog-hero__title {
    font-size: clamp(1.85rem, 5.8vw, 2.6rem);
  }

  /* Grids to single column where beneficial */
  .age-grid,
  .why-grid,
  .team-grid,
  .sale-cats-grid,
  .shop-grid,
  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: span 1;
  }

  /* Cart & Checkout compact elements */
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cart-item__media {
    width: 100%;
    max-width: 140px;
  }

  .cart-item__details {
    width: 100%;
  }

  .cart-item__actions {
    width: 100%;
    justify-content: space-between;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr !important;
  }

  /* Wishlist bar */
  .wishlist-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .wishlist-bar__actions {
    flex-direction: column;
    width: 100%;
  }

  .wishlist-bar__actions .btn {
    width: 100%;
  }

  /* Sale timer on small phones */
  .sale-timer-digits {
    gap: .4rem;
  }

  .timer-slot {
    min-width: 52px;
    padding: .5rem .3rem;
  }

  .timer-slot__num {
    font-size: 1.3rem;
  }

  /* Touch buttons */
  .btn {
    padding: .85rem 1.35rem;
  }
}

