/** Shopify CDN: Minification failed

Line 1008:0 Unexpected "}"

**/
/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  /* ── White palette ── */
  --cream:       #ffffff;
  --linen:       #f6f6f6;
  --sand:        #e8e8e8;
  --sand-dark:   #c0bdb8;
  --indigo:      #1f3a5f;
  --indigo-deep: #1A2644;
  --indigo-mid:  #3D5280;
  --indigo-pale: #8896B8;
  --charcoal:    #1C1A17;
  --charcoal-2:  #4B4642;
  --grey:        #7B7671;
  --grey-light:  #B5B0AA;
  --silver:      #D0CCC6;

  /* ── Aliases used by Collection Interactive ── */
  --ivory:   #ffffff;
  --ivory-2: #f6f6f6;
  --ivory-3: #e8e8e8;
  --ink:     #1C1A17;
  --ink-2:   #4B4642;
  --ink-3:   #7B7671;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', -apple-system, sans-serif;
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: #fff;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.js .fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--d, 0s);
}
.js .fade-up.in { opacity: 1; transform: translateY(0); }
.js .fade-in {
  opacity: 0;
  transition: opacity 0.75s ease;
  transition-delay: var(--d, 0s);
}
.js .fade-in.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .js .fade-up,
  .js .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 104px;
  background: #fff;
  transition: background .4s, color .4s, transform .8s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav.scrolled { border-color: transparent; }
.nav.nav--hidden { transform: translateY(-100%); }
.nav.scrolled .nav-links a { color: var(--charcoal-2) !important; }
.nav.scrolled .nav-cart-link { color: var(--charcoal-2) !important; }
.nav.scrolled .nav-brand { color: var(--charcoal-2) !important; }

.nav-links a { color: var(--charcoal-2) !important; }
.nav-cart-link { color: var(--charcoal-2) !important; }
.nav-brand { color: var(--charcoal-2) !important; }


/* 首页透明导航 */
.nav--transparent:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav--transparent:not(.scrolled) .nav-brand,
.nav--transparent:not(.scrolled) .nav-links a,
.nav--transparent:not(.scrolled) .nav-cart-link { color: rgba(255,255,255,.88); }
.nav--transparent:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,.88); }
.nav--transparent:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav--transparent:not(.scrolled) .nav-burger span { background: #fff; }
.nav-brand {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.nav-brand em { font-style: normal; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--indigo);
  transition: width .3s;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a:hover::after { width: 100%; }
.nav-cart-link {
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color .2s;
}
.nav-cart-link:hover { color: var(--indigo); }
.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: var(--indigo);
  color: var(--cream);
  border-radius: 50%;
  font-size: .55rem;
  margin-left: 5px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer;
}
.nav-burger span { display: block; width: 100%; height: 1px; background: var(--charcoal); transition: all .3s; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color .3s;
}
.nav-overlay a:hover { color: var(--indigo); }
.nav-close {
  position: absolute;
  top: 26px; right: 52px;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--charcoal);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--indigo-deep);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,16,30,.25) 0%,
    rgba(10,16,30,.10) 55%,
    rgba(10,16,30,.02) 100%
  );
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.hero-visual { display: none; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  margin-top: 0rem;
}
.hero-bar { width: 28px; height: 1px; background: rgba(255,255,255,.55); flex-shrink: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero .eyebrow { color: rgba(255,255,255,.6); }
.hero-title {
  font-family: var(--sans);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0px;
}
.hero-title em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(4rem, 9vw, 8rem);
  color: rgba(255,255,255,.92);
  display: block;
  line-height: 1;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 52px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.hero-caption {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  z-index: 1;
}
.hero .btn--fill {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.hero .btn--fill:hover {
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.8);
}
.link-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--indigo);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .3s;
  cursor: pointer;
}
.link-text:hover { border-color: var(--indigo); }
.hero .link-text { color: rgba(255,255,255,.82); }
.hero .link-text:hover { border-color: rgba(255,255,255,.82); }
.link-text .arr { transition: transform .3s; }
.link-text:hover .arr { transform: translateX(4px); }

.hero-title-svg {
  display: block;
  height: clamp(15rem, 30vw, 25rem);
  width: auto;
  max-width: 70%;
  margin: -6rem auto -6rem;
  filter: invert(1);
}
/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .6875rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--indigo); color: var(--indigo); background: transparent;
  cursor: pointer; font-family: var(--sans);
  transition: background .35s, color .35s, border-color .35s;
}
.btn:hover { background: var(--indigo); color: var(--ivory); }
.btn--fill { background: var(--indigo); color: var(--ivory); }
.btn--fill:hover { background: var(--ink); border-color: var(--ink); }
.btn--light { border-color: rgba(246,243,238,.45); color: var(--ivory); background: transparent; }
.btn--light:hover { background: var(--ivory); color: var(--indigo); border-color: var(--ivory); }
.btn-solid {
  color: var(--cream); background: var(--indigo);
  padding: 16px 38px; border: 1px solid var(--indigo);
  position: relative; overflow: hidden;
}
.btn-solid::before {
  content: ''; position: absolute; inset: 0;
  background: var(--indigo-deep); transform: translateX(-101%); transition: transform .4s ease;
}
.btn-solid:hover::before { transform: translateX(0); }
.btn-solid span { position: relative; z-index: 1; }
.btn-ghost {
  color: var(--indigo); background: transparent;
  padding: 14px 34px; border: 1px solid rgba(31,58,95,.35);
}
.btn-ghost:hover { background: var(--indigo); color: var(--cream); border-color: var(--indigo); }

/* ================================================================
   SHARED SECTION STYLES
================================================================ */
.section { padding: 130px 0; }
.section-linen { background: transparent; }
.section-dark  { background: var(--indigo-deep); color: var(--cream); }
.label { font-size: .62rem; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.label-pale { color: var(--indigo-pale); }
.heading { font-family: var(--sans); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; letter-spacing: .02em; line-height: 1.14; color: var(--charcoal); }
.heading-accent { color: var(--indigo); }
.heading em { font-style: italic; color: var(--indigo-mid); }
.heading-light { color: var(--cream); }
.heading-light em { color: var(--indigo-pale); }
.sub { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--grey); line-height: 1.7; }
.divider-h { width: 48px; height: 1px; background: var(--indigo-pale); margin: 22px 0; }

/* ================================================================
   CULTURE
================================================================ */
.culture-v2 { background: var(--indigo); padding: 120px 0; }
.culture-v2-inner { display: flex; flex-direction: column; gap: 60px; }
.culture-v2-eyebrow { color: rgba(246,243,238,.45); margin-bottom: 20px; }
.culture-v2-heading {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; color: var(--ivory); margin-bottom: 24px;
}
.culture-v2-body { font-size: .9375rem; line-height: 1.9; color: rgba(246,243,238,.68); margin-bottom: 40px; white-space: pre-line; }
.culture-v2-stats { display: flex; flex-direction: row; }
.culture-v2-stat-item { flex: 1; padding: 40px 24px; border-right: 1px solid rgba(246,243,238,.1); display: flex; flex-direction: column; align-items: center; text-align: center; }
.culture-v2-stat-item:first-child { padding-left: 0; }
.culture-v2-stat-item:last-child { border-right: none; }
.culture-v2-stat-num { font-family: var(--sans); font-weight: 300; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--ivory); margin-bottom: 8px; }
.culture-v2-stat-logo { height: clamp(2.5rem, 5vw, 4rem); width: auto; object-fit: contain; margin-bottom: 8px; filter: brightness(0) invert(1); }
.culture-v2-stat-lbl { font-size: .8125rem; color: rgba(246,243,238,.5); letter-spacing: .04em; }

/* ================================================================
   BRAND INTRO (manifesto)
================================================================ */
.manifesto { padding: 100px 0; background: transparent; }
.brand-intro-grid { display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start; border-top: 1px solid var(--sand); padding-top: 72px; }
.brand-intro-left { padding-top: 4px; }
.brand-intro-rule { width: 1px; height: 56px; background: var(--indigo-pale); margin-top: 22px; }
.brand-intro-quote { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 300; font-style: italic; line-height: 1.44; color: var(--charcoal); letter-spacing: .02em; margin-bottom: 30px; }
.brand-intro-body { font-size: .9rem; color: var(--charcoal-2); line-height: 1.9; max-width: 560px; margin-bottom: 16px; }
.brand-intro-attr { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--grey); }

/* ================================================================
   CRAFT (Accordion)
================================================================ */
.craft-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }
.craft-header-title { font-family: var(--sans); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; letter-spacing: .02em; line-height: 1.08; color: var(--charcoal); margin-top: 8px; }
.craft-header-subtitle { display: block; font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 300; letter-spacing: .04em; color: var(--indigo); margin-top: 10px; }

.craft-rule { border: none; border-top: 1px solid var(--sand); margin: 0; }

.craft-step { border-bottom: 1px solid var(--sand); }
.craft-step:first-child { border-top: 1px solid var(--sand); }
.craft-step-header {
  display: grid; grid-template-columns: 64px 1fr 44px; align-items: center;
  width: 100%; padding: 28px 0; background: transparent; border: none;
  text-align: left; cursor: pointer; font-family: var(--sans);
  transition: opacity .2s;
}
.craft-step-header:hover { opacity: .7; }
.craft-step-num { font-family: var(--serif); font-size: .75rem; letter-spacing: .08em; color: var(--indigo); }
.craft-step-name { font-family: var(--sans); font-size: .9375rem; font-weight: 400; color: var(--charcoal); line-height: 1.3; }
.craft-step-toggle { font-size: 1.375rem; font-weight: 300; color: var(--indigo); text-align: right; line-height: 1; user-select: none; }

.craft-step-body { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.craft-step.open .craft-step-body { max-height: 900px; }
.craft-step-body-inner { padding: 0 44px 44px 64px; }
.craft-step-desc { font-size: .9375rem; color: var(--charcoal-2); line-height: 1.9; max-width: 640px; margin-bottom: 32px; }
  .craft-step-img-wrap { max-width: 480px; aspect-ratio: 1/1; overflow: hidden; }
  .craft-step-img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .craft-step-img-placeholder {
    width: 100%; max-width: 480px; aspect-ratio: 1/1;
  background: var(--linen); display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--sand-dark); opacity: .45;
}

/* ================================================================
   SYMBOLS
================================================================ */
.symbols-section { background: transparent; }
.symbols-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--ivory-2); margin-top: 72px; }
.sym-card { background: var(--ivory); padding: 44px 36px; position: relative; overflow: hidden; transition: background .3s; }
.sym-card::before { content: none; }
.sym-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--indigo);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.sym-card:hover { background: var(--ivory-2); }
.sym-card:hover::after { transform: scaleX(1); }
.sym-icon {
  width: 52px;
  height: 52px;
  color: var(--indigo);
  margin-bottom: 28px;
}
.sym-icon--phoenix {
  transform: scale(1.38);
  transform-origin: center;
}
.sym-icon--dragon {
  transform: scale(1.58);
  transform-origin: center;
}
.sym-icon:not(.sym-icon--phoenix):not(.sym-icon--dragon) [stroke] {
  stroke-width: 0.9;
}
.sym-zh { font-size: .6875rem; letter-spacing: .08em; color: var(--indigo); margin-bottom: 8px; font-weight: 400; }
.sym-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 16px; }
.sym-desc { font-size: .875rem; color: var(--ink-3); line-height: 1.85; }

/* ================================================================
   COLLECTION SHOWCASE (homepage)
================================================================ */
.collection-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; gap: 40px; }
.collection-header-right { max-width: 360px; }
.collection-header-right .sub { margin-top: 8px; margin-bottom: 24px; }
.series { margin-bottom: 84px; }
.series-bar { display: flex; align-items: baseline; gap: 18px; padding-bottom: 20px; margin-bottom: 36px; border-bottom: 1px solid var(--sand); }
.series-n { font-family: var(--serif); font-size: 3.6rem; font-weight: 300; color: var(--sand-dark); line-height: 1; }
.series-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--charcoal); }
.series-tag { margin-left: auto; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }

/* Product grid (shared) */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { cursor: pointer; }
.product-img-wrap { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 18px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s ease; }
.product-img-bg { width: 100%; height: 100%; transition: transform .65s ease, filter .4s ease; }
.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-bg { transform: scale(1.04); filter: brightness(1.06); }
.product-img-placeholder { width: 100%; height: 100%; }
.product-mat { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.product-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.product-price-tag { font-size: .9rem; color: var(--charcoal-2); }

/* Placeholder gradients */
.p1 { background: radial-gradient(ellipse at 38% 35%,rgba(224,219,210,.9) 0%,transparent 54%), linear-gradient(150deg,#C8C4BA 0%,#B8B4A8 44%,#A8A49C 100%); }
.p2 { background: radial-gradient(ellipse at 58% 40%,rgba(218,213,204,.9) 0%,transparent 54%), linear-gradient(158deg,#D0CBC0 0%,#C0BBB0 44%,#B0ABA4 100%); }
.p3 { background: radial-gradient(ellipse at 34% 54%,rgba(229,224,215,.9) 0%,transparent 50%), linear-gradient(145deg,#C4C0B5 0%,#B4B0A5 44%,#A4A09C 100%); }

/* ================================================================
   ABOUT
================================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-accent { position: absolute; top: -36px; right: -36px; width: 42%; aspect-ratio: 1; background: var(--indigo); opacity: .07; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  background: radial-gradient(ellipse at 38% 34%,rgba(210,205,196,.85) 0%,transparent 54%), linear-gradient(154deg,#C0BDB6 0%,#B0ADA6 44%,#A0A09A 100%);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-box { position: absolute; bottom: -26px; left: 28px; right: 28px; background: var(--cream); padding: 26px 30px; border-left: 2px solid var(--indigo); }
.about-quote-box p { font-family: var(--serif); font-size: .98rem; font-style: italic; color: var(--indigo); line-height: 1.68; }
.about-body { font-size: .975rem; color: var(--charcoal-2); line-height: 1.92; margin-top: 28px; }
.about-body p + p { margin-top: 22px; }
.about-values { margin-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.about-val { display: flex; gap: 18px; align-items: flex-start; }
.about-val-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--indigo); margin-top: 2px; }
.about-val-title { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.about-val-desc { font-size: .84rem; color: var(--grey); line-height: 1.72; }

/* ================================================================
   NEWSLETTER
================================================================ */
.newsletter { padding: 100px 0; border-top: 1px solid var(--ivory-3); background: transparent; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nl-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.25; color: var(--ink); margin-bottom: 12px; }
.nl-sub { font-size: .9rem; color: var(--ink-3); }
.nl-form { display: flex; }
.nl-input {
  flex: 1; font-family: var(--sans); font-size: .875rem; font-weight: 300;
  padding: 15px 20px;
  border: 1px solid var(--ivory-3); border-right: none;
  background: transparent; color: var(--ink); outline: none;
  transition: border-color .2s;
}
.nl-input::placeholder { color: var(--ink-3); }
.nl-input:focus { border-color: var(--indigo); }
.nl-btn {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 26px;
  background: var(--indigo); color: var(--ivory);
  border: 1px solid var(--indigo); cursor: pointer; font-family: var(--sans);
  transition: background .25s; white-space: nowrap;
}
.nl-btn:hover { background: var(--ink); border-color: var(--ink); }
.nl-note { margin-top: 14px; font-size: .75rem; color: var(--ink-3); }

/* ================================================================
   JOURNAL
================================================================ */
.journal-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.journal-header .heading { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.journal-controls { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.journal-arrow { background: none; border: 1px solid var(--sand); padding: 8px 12px; cursor: pointer; color: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.journal-arrow:hover { border-color: var(--charcoal); }
.journal-counter { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; color: var(--grey); min-width: 36px; text-align: center; }
.journal-carousel-wrap { margin-top: 48px; }
.journal-grid { display: flex; gap: 24px; align-items: flex-start; }
.journal-card { display: flex; flex-direction: column; cursor: pointer; flex-shrink: 0; overflow: hidden; }
.journal-card:first-child { width: calc(50% - 24px); }
.journal-card:not(:first-child) { width: calc(25% - 12px); }
.journal-img { overflow: hidden; margin-bottom: 22px; }
.journal-card:first-child .journal-img { aspect-ratio: 16/10; }
.journal-card:not(:first-child) .journal-img { aspect-ratio: 4/3; }
.journal-img img { transition: aspect-ratio 0.55s cubic-bezier(0.4,0,0.2,1), transform .65s ease; }
.journal-img img,
.journal-img-bg { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s; }
.journal-card:hover .journal-img img,
.journal-card:hover .journal-img-bg { transform: scale(1.04); filter: brightness(.93); }
.j1 { background: radial-gradient(ellipse at 28% 48%,rgba(31,58,95,.28) 0%,transparent 58%), linear-gradient(152deg,#3A4E7A 0%,#2C3E6B 44%,#1E3060 100%); }
.j2 { background: radial-gradient(ellipse at 58% 35%,rgba(210,205,196,.85) 0%,transparent 54%), linear-gradient(158deg,#C4C0B8 0%,#B4B0A6 44%,#A4A09C 100%); }
.j3 { background: radial-gradient(ellipse at 42% 48%,rgba(31,58,95,.14) 0%,transparent 54%), linear-gradient(146deg,#D4D0C6 0%,#C4C0B4 44%,#B4B0A4 100%); }
.journal-cat { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--indigo); margin-bottom: 9px; }
.journal-title { font-family: var(--serif); font-weight: 400; color: var(--charcoal); margin-bottom: 12px; transition: color .3s; }
.journal-card:first-child .journal-title { font-size: 1.52rem; }
.journal-card:not(:first-child) .journal-title { font-size: 1.1rem; }
.journal-card:hover .journal-title { color: var(--indigo); }
.journal-excerpt { font-size: .84rem; color: var(--grey); line-height: 1.82; flex: 1; }
.journal-meta { margin-top: 18px; font-size: .68rem; letter-spacing: .1em; color: var(--grey-light); text-transform: uppercase; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #fff; }
.footer-box { background: var(--indigo); color: var(--cream); margin: 0 40px; padding: 72px 64px; }
.footer-box-inner { display: flex; gap: 80px; align-items: flex-start; max-width: 1360px; margin: 0 auto; }
.footer-nl { flex: 0 0 340px; }
.footer-nl-title { font-family: var(--sans); font-size: 1.5rem; font-weight: 300; letter-spacing: .01em; color: var(--cream); margin-bottom: 16px; }
.footer-nl-sub { font-family: var(--sans); font-size: .8125rem; color: rgba(246,243,238,.7); line-height: 1.75; margin-bottom: 28px; }
.footer-nl-form { display: flex; flex-direction: column; }
.footer-nl-row { display: flex; align-items: center; border-bottom: 1px solid rgba(246,243,238,.3); margin-bottom: 16px; }
.footer-nl-input { flex: 1; background: none; border: none; outline: none; font-family: var(--sans); font-size: .8125rem; color: var(--cream); padding: 10px 0; letter-spacing: .02em; }
.footer-nl-input::placeholder { color: rgba(246,243,238,.35); }
.footer-nl-btn { background: none; border: none; cursor: pointer; color: var(--cream); padding: 10px 0 10px 16px; display: flex; align-items: center; transition: opacity .2s; }
.footer-nl-btn:hover { opacity: .55; }
.footer-nl-privacy { font-family: var(--sans); font-size: .6875rem; color: rgba(246,243,238,.35); line-height: 1.65; }
.footer-cols { flex: 1; display: flex; gap: 52px; justify-content: flex-end; }
.footer-col { min-width: 90px; }
.footer-col-title { font-family: var(--sans); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(246,243,238,.6); margin-bottom: 20px; font-weight: 400; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-family: var(--sans); font-size: .8125rem; color: rgba(246,243,238,.65); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bar { background: #fff; padding: 24px 40px; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1440px; margin: 0 auto; }
.footer-locale { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .75rem; color: rgba(0,0,0,.45); letter-spacing: .03em; cursor: pointer; transition: color .2s; }
.footer-locale:hover { color: var(--charcoal); }
.footer-bar-center { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.footer-bar-brand { font-family: var(--sans); font-size: .9rem; font-weight: 400; letter-spacing: .08em; color: var(--charcoal); }
.footer-bar-brand em { font-style: normal; }
.footer-logo-img { height: 36px; width: auto; }
.footer-bar-copy { font-family: var(--sans); font-size: .7rem; color: rgba(0,0,0,.35); letter-spacing: .02em; }
.footer-bar-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-social-icons { display: flex; gap: 18px; align-items: center; }
.footer-social-icons a { color: rgba(0,0,0,.45); transition: color .2s; display: flex; }
.footer-social-icons a:hover { color: var(--charcoal); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-family: var(--sans); font-size: .7rem; color: rgba(0,0,0,.35); letter-spacing: .04em; transition: color .2s; }
.footer-legal-links a:hover { color: var(--charcoal); }

/* ================================================================
   BREADCRUMB & FLASH
================================================================ */
.breadcrumb { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 40px; }
.breadcrumb a { transition: color .3s; }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb .sep { margin: 0 10px; }
.flash { padding: 14px 24px; margin-bottom: 24px; font-size: .85rem; }
.flash-success { background: rgba(31,58,95,.08); color: var(--indigo); border-left: 2px solid var(--indigo); }
.flash-error   { background: rgba(200,100,80,.08); color: #c86450;      border-left: 2px solid #c86450; }

/* ================================================================
   PRODUCT PAGE
================================================================ */
.product-page { padding: 120px 0; }
.product-layout { display: grid; grid-template-columns: 55% 1fr; gap: 80px; align-items: start; }
.product-gallery-main { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 12px; background: linear-gradient(150deg,#D0CCC4 0%,#C0BCB4 60%,#B0ACA6 100%); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb-btn { width: 80px; height: 80px; overflow: hidden; border: 1px solid transparent; background: none; padding: 0; transition: border-color .3s; }
.thumb-btn.active, .thumb-btn:hover { border-color: var(--indigo); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.product-type { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; }
.product-title { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--charcoal); line-height: 1.2; margin-bottom: 16px; }
.product-price-display { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal-2); margin-bottom: 28px; }
.product-divider { width: 40px; height: 1px; background: var(--sand); margin-bottom: 28px; }
.product-desc { font-size: .9rem; color: var(--charcoal-2); line-height: 1.9; margin-bottom: 32px; }
.variant-section { margin-bottom: 24px; }
.variant-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.variant-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn { padding: 9px 16px; border: 1px solid var(--sand); background: transparent; font-family: var(--sans); font-size: .8rem; color: var(--charcoal-2); cursor: pointer; transition: all .25s; }
.variant-btn:hover, .variant-btn.selected { border-color: var(--indigo); color: var(--indigo); background: rgba(31,58,95,.04); }
.variant-btn.unavailable { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.qty-wrap { display: flex; align-items: center; border: 1px solid var(--sand); }
.qty-btn { width: 40px; height: 44px; background: none; border: none; font-size: 1.1rem; color: var(--charcoal-2); transition: background .2s; }
.qty-btn:hover { background: var(--linen); }
.qty-input { width: 50px; height: 44px; border: none; text-align: center; font-family: var(--sans); font-size: .9rem; color: var(--charcoal); background: transparent; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.atc-btn { width: 100%; justify-content: center; padding: 17px; margin-top: 16px; }
.atc-btn:disabled { opacity: .5; cursor: not-allowed; }
.product-meta { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--sand); display: flex; flex-direction: column; gap: 10px; }
.product-meta-row { display: flex; gap: 12px; }
.product-meta-key { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); min-width: 90px; }
.product-meta-val { font-size: .85rem; color: var(--charcoal-2); }

/* ================================================================
   COLLECTION PAGE
================================================================ */
.collection-page { padding: 95px 0 100px; }

/* ── Compact header ── */
.collection-page-header { margin-top: 25px; margin-bottom: 44px; }
.collection-heading {
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: .03em;
  line-height: 1.18;
  color: var(--charcoal);
}
.collection-page-desc { font-size: .9rem; color: var(--charcoal-2); line-height: 1.85; max-width: 520px; margin-top: 10px; }

/* ── Row 1: Category filter tabs (horizontally scrollable) ── */
.collection-filter-nav {
  display: flex;
  align-items: flex-end;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0;
  /* left-align flush with content: first tag has no left padding */
}
.collection-filter-nav::-webkit-scrollbar { display: none; }

.filter-tag {
  display: inline-block;
  flex-shrink: 0;
  padding: 0 20px 11px 0;
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #B0AAA4;
  text-decoration: none;
  border-bottom: none;
  transition: color .2s;
  white-space: nowrap;
}
.filter-tag:first-child { padding-left: 0; }
.filter-tag:hover { color: #1F3A5F; }
.filter-tag.active {
  color: #1F3A5F;
  border-bottom: none;
}

.collection-filter-nav--primary .filter-tag.active::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transform-origin: center;
  transition: transform .34s cubic-bezier(.22, .61, .36, 1);
}

.collection-filter-nav--primary.is-category-open .filter-tag.active::after {
  transform: translateY(1px) rotate(225deg);
}

/* Separator line below filter nav */
.collection-filter-nav {
  border-bottom: none;
  margin-bottom: 12px;
}

.collection-filter-nav--types {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  margin-bottom: 0;
  will-change: max-height, opacity, transform, margin-bottom;
  transition:
    max-height .58s cubic-bezier(.22, .61, .36, 1),
    opacity .34s ease,
    transform .58s cubic-bezier(.22, .61, .36, 1),
    margin-bottom .58s cubic-bezier(.22, .61, .36, 1);
}

.collection-filter-nav--types .filter-tag {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    color .2s,
    opacity .34s ease,
    transform .48s cubic-bezier(.22, .61, .36, 1);
}

.collection-filter-nav--types.is-visible {
  max-height: 72px;
  opacity: 1;
  overflow-x: auto;
  overflow-y: hidden;
  pointer-events: auto;
  transform: translateY(0);
  margin-bottom: 12px;
}

.collection-filter-nav--types.is-visible .filter-tag {
  opacity: 1;
  transform: translateY(0);
}

.collection-filter-nav--types.is-visible .filter-tag:nth-child(2) { transition-delay: .03s; }
.collection-filter-nav--types.is-visible .filter-tag:nth-child(3) { transition-delay: .06s; }
.collection-filter-nav--types.is-visible .filter-tag:nth-child(4) { transition-delay: .09s; }

@media (prefers-reduced-motion: reduce) {
  .collection-filter-nav--types,
  .collection-filter-nav--types .filter-tag {
    transition: none;
    transform: none;
  }
}

/* ── Row 2: count + sort ── */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: none;
}
.collection-count { font-size: .72rem; color: var(--grey); letter-spacing: .08em; white-space: nowrap; }

.collection-page .product-img-wrap {
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}

.collection-empty {
  max-width: 520px;
  padding: 56px 0 80px;
  color: var(--grey);
  font-size: .85rem;
  letter-spacing: .04em;
}

.sort-select {
  font-family: var(--sans); font-size: .75rem; color: var(--charcoal-2);
  background: transparent; border: 1px solid #E8DFD0; padding: 7px 32px 7px 12px; cursor: pointer; outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0L5 6L10 0' stroke='%238A837C' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color .22s;
}
.sort-select:hover, .sort-select:focus { border-color: #1F3A5F; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 80px; }
.page-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: .8rem; color: var(--charcoal-2); border: 1px solid transparent; transition: all .25s; }
.page-link:hover, .page-link.current { border-color: var(--indigo); color: var(--indigo); }

/* ================================================================
   CART PAGE
================================================================ */
.cart-page { padding: 120px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.cart-heading { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 40px; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--sand); align-items: start; }
.cart-item:first-child { border-top: 1px solid var(--sand); }
.cart-item-img { aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(150deg,#D0CCC4 0%,#C0BCB4 100%); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; }
.cart-item-variant { font-size: .75rem; color: var(--grey); margin-bottom: 14px; }
.cart-item-qty { display: flex; align-items: center; }
.cart-item-remove { background: none; border: none; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-light); cursor: pointer; padding: 0; margin-top: 8px; display: block; transition: color .3s; }
.cart-item-remove:hover { color: var(--charcoal); }
.cart-item-price { font-family: var(--serif); font-size: 1rem; color: var(--charcoal); text-align: right; }
.cart-summary { background: var(--linen); padding: 36px 32px; position: sticky; top: 100px; }
.cart-summary-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 28px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: .9rem; color: var(--charcoal-2); }
.cart-summary-total { display: flex; justify-content: space-between; padding-top: 20px; margin-top: 8px; border-top: 1px solid var(--sand); font-family: var(--serif); font-size: 1.1rem; color: var(--charcoal); }
.cart-checkout-btn { width: 100%; justify-content: center; margin-top: 24px; padding: 17px; }
.cart-note { font-size: .72rem; color: var(--grey); text-align: center; margin-top: 14px; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty-heading { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: 16px; }
.cart-empty p { color: var(--grey); margin-bottom: 32px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav-inner { padding: 0 40px; }
  .section { padding: 100px 0; }
  .craft-step-header { grid-template-columns: 48px 1fr 36px; }
  .craft-step-body-inner { padding: 0 24px 36px 48px; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .hero { min-height: 100svh; }
  .hero-text { padding: 100px 24px 60px; max-width: none; }
  .culture-v2-inner { grid-template-columns: 1fr; gap: 60px; }
  .culture-v2-stats { padding-left: 28px; }
  .brand-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .brand-intro-rule { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .craft-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .craft-header-body { padding-top: 0; }
  .symbols-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .journal-card:first-child { width: calc(60% - 12px); }
  .journal-card:not(:first-child) { width: calc(40% - 12px); }
  .footer-box { margin: 0 24px; padding: 56px 40px; }
  .footer-box-inner { gap: 48px; }
  .footer-nl { flex: 0 0 260px; }
  .footer-cols { gap: 32px; }
  .footer-bar { padding: 20px 24px; }
  .collection-header { flex-direction: column; align-items: flex-start; }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 768px) {
  /* ── Collection: filter nav bleeds to screen edges on mobile ── */
  .collection-filter-nav {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% + 48px);
  }
  .collection-toolbar { margin-bottom: 0; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: 3rem; }
  .brand-intro-quote { font-size: 1.4rem; }
  .symbols-grid, .product-grid { grid-template-columns: 1fr; }
  .culture-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--sand); }
  .stat:last-child { border-bottom: none; }
  .journal-card:first-child { width: 80%; }
  .journal-card:not(:first-child) { width: 70%; }
  .footer-box { margin: 0; padding: 48px 24px; }
  .footer-box-inner { flex-direction: column; gap: 48px; }
  .footer-nl { flex: none; width: 100%; }
  .footer-cols { justify-content: flex-start; flex-wrap: wrap; gap: 28px 40px; }
  .footer-bar { padding: 20px 24px; }
  .footer-bar-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bar-right { align-items: center; }
  .footer-legal-links { justify-content: center; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--ivory-3); border-bottom: none; }
  .series-bar { flex-wrap: wrap; }
  .series-tag { margin-left: 0; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-price { grid-column: 2; }
}

/* ================================================================
   COLLECTION INTERACTIVE
================================================================ */
.collection-interactive { padding: 120px 0; }
.ci-header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:52px; }
.ci-heading { font-family:var(--serif); font-weight:300; font-size:clamp(2rem,4vw,3rem); line-height:1.15; color:var(--ink); max-width:380px; }
.ci-heading em { font-style:italic; color:var(--indigo); }
.ci-link { display:inline-flex; align-items:center; gap:8px; font-size:.6875rem; letter-spacing:.12em; text-transform:uppercase; color:var(--indigo); border-bottom:1px solid transparent; padding-bottom:2px; transition:border-color .3s; }
.ci-link:hover { border-color:var(--indigo); }

/* Filters */
.ci-filters { margin-bottom:48px; }
.ci-filter-row { display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.ci-filter-lbl { font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-3); margin-right:10px; white-space:nowrap; }
.ci-filter-btn { font-family:var(--sans); font-size:.6rem; letter-spacing:.12em; text-transform:uppercase; padding:7px 16px; border:1px solid var(--ivory-3); background:transparent; color:var(--ink-3); cursor:pointer; transition:all .2s; }
.ci-filter-btn:hover { border-color:var(--indigo); color:var(--indigo); }
.ci-filter-btn.active { background:var(--indigo); border-color:var(--indigo); color:var(--ivory); }

/* Product grid */
.ci-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.ci-card { background:var(--ivory-2); cursor:pointer; position:relative; overflow:hidden; }
.ci-card.ci-hidden { display:none; }
.ci-card-img { aspect-ratio:3/4; background:var(--ivory-2); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.ci-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.25,.1,.25,1); }
.ci-card:hover .ci-card-img img { transform:scale(1.04); }
.ci-card-img .ci-no-img { width:45%; color:var(--indigo); opacity:.14; transition:opacity .5s, transform .7s; }
.ci-card:hover .ci-no-img { opacity:.22; transform:scale(1.04); }
.ci-overlay { position:absolute; inset:0; background:rgba(28,26,23,0); display:flex; align-items:center; justify-content:center; transition:background .4s; }
.ci-card:hover .ci-overlay { background:rgba(28,26,23,.07); }
.ci-cta { font-size:.625rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ivory); background:var(--indigo); padding:11px 22px; opacity:0; transform:translateY(8px); transition:opacity .3s .05s, transform .3s .05s; }
.ci-card:hover .ci-cta { opacity:1; transform:translateY(0); }
.ci-info { padding:20px 24px 26px; background: transparent; }
.ci-series { font-size:.5625rem; letter-spacing:.16em; text-transform:uppercase; color:var(--indigo); margin-bottom:6px; }
.ci-name { font-family:var(--serif); font-weight:400; font-size:1.0625rem; color:var(--ink); margin-bottom:4px; }
.ci-material { font-size:.8125rem; color:var(--ink-3); }
.ci-price { font-size:.875rem; color:var(--ink-2); margin-top:12px; }
@media(max-width:900px){ .ci-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .ci-grid { grid-template-columns:1fr; } }

/* Drawer */
.ci-overlay-bg { position:fixed; inset:0; background:rgba(28,26,23,.42); z-index:200; opacity:0; pointer-events:none; transition:opacity .45s; }
.ci-overlay-bg.open { opacity:1; pointer-events:all; }
.ci-drawer { position:fixed; top:0; right:0; bottom:0; width:540px; max-width:100vw; background:var(--ivory); z-index:201; transform:translateX(100%); transition:transform .55s cubic-bezier(0,0,.2,1); overflow-y:auto; }
.ci-drawer.open { transform:translateX(0); }
.ci-drawer-close { position:absolute; top:20px; right:20px; width:36px; height:36px; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--ink-3); transition:color .2s; z-index:1; }
.ci-drawer-close:hover { color:var(--ink); }
.ci-drawer-img { width:100%; aspect-ratio:4/3; background:var(--ivory-2); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ci-drawer-img img { width:100%; height:100%; object-fit:cover; }
.ci-drawer-img .ci-drawer-noimg { width:38%; color:var(--indigo); opacity:.15; }
.ci-drawer-body { padding:36px 44px 64px; }
.ci-drawer-series { font-size:.5625rem; letter-spacing:.18em; text-transform:uppercase; color:var(--indigo); margin-bottom:12px; }
.ci-drawer-title { font-family:var(--serif); font-weight:400; font-size:1.875rem; color:var(--ink); line-height:1.15; margin-bottom:8px; }
.ci-drawer-meta { font-size:.875rem; color:var(--ink-3); margin-bottom:32px; }
.ci-drawer-hr { height:1px; background:var(--ivory-3); margin:24px 0; }
.ci-drawer-lbl { font-size:.5625rem; letter-spacing:.18em; text-transform:uppercase; color:var(--indigo); margin-bottom:10px; }
.ci-drawer-sym-name { font-family:var(--serif); font-weight:400; font-size:1.125rem; color:var(--ink); margin-bottom:10px; }
.ci-drawer-text { font-size:.9rem; line-height:1.85; color:var(--ink-2); }
.ci-drawer-bottom { display:flex; align-items:center; justify-content:space-between; margin-top:36px; padding-top:24px; border-top:1px solid var(--ivory-3); }
.ci-drawer-price { font-family:var(--serif); font-weight:300; font-size:1.5rem; color:var(--ink); }
}
  .marquee-band { overflow: hidden; background: var(--indigo); padding: 13px 0; }
  .marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
  .marquee-track span { font-family: var(--serif); font-size: .7rem; letter-spacing: .22em; color: color: #2B3A5C;; flex-shrink:
   0; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* ================================================================
   LP-STYLE COLLECTION SHOWCASE
================================================================ */
.lp-collection { background: #fff; }

.lp-collection-intro {
  text-align: center;
  padding: 20px 40px 40px;
  background: #fff;
}
.lp-collection-label {
  font-size: 1rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.lp-collection-cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.lp-collection-cat {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--indigo-mid);
  transition: opacity .3s;
}
.lp-collection-cat:hover { opacity: .5; }
.lp-collection-desc {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--grey);
  white-space: nowrap;
  margin: 0 auto;
  line-height: 1.75;
}

/* Lookbook */
.lb-section { padding: 0; background: #fff; }
.lb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 0 40px; }
.lb-card { display: block; text-decoration: none; color: inherit; }
.lb-card-img { overflow: hidden; aspect-ratio: 4/5; }
.lb-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.lb-card-placeholder { width: 100%; height: 100%; background: var(--sand); }
.lb-card:hover .lb-card-img img { transform: scale(1.04); }
.lb-card-info { padding: 20px 24px 48px; text-align: center; background: #fff; }
.lb-card-year { font-family: var(--sans); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.lb-card-title { font-family: var(--sans); font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 300; letter-spacing: .04em; color: var(--charcoal); margin-bottom: 8px; }
.lb-card-sub { font-family: var(--sans); font-size: .75rem; letter-spacing: .08em; color: var(--grey); }
/* Tabs */
.lp-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 40px 40px 0;
  background: #fff;
}
.lp-tab {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--charcoal-2);
  background: transparent;
  border: 1px solid var(--sand);
  padding: 12px 48px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.lp-tab:not(:last-child) { border-right: none; }
.lp-tab.active { background: #fff; color: var(--charcoal); border-color: var(--sand); }

/* Product grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.lp-grid--hidden { display: none; }
.lp-card {
  display: block;
  background: #fff;
  cursor: pointer;
}
.lp-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--linen);
  position: relative;
}
.lp-img-primary,
.lp-img-secondary {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}
.lp-img-secondary { opacity: 0; }
.lp-card:hover .lp-img-primary { opacity: 0; }
.lp-card:hover .lp-img-secondary { opacity: 1; }
.lp-card-placeholder { width: 100%; height: 100%; background: var(--sand); }
.lp-card-info {
  padding: 20px 24px 28px;
  background: #fff;
  transition: transform 0.5s ease;
}
.lp-card:hover .lp-card-info {
  transform: translateY(-30px);
}
.lp-card-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.lp-card-price {
  font-size: .82rem;
  color: var(--grey);
}
.lp-card-material {
  font-size: .82rem;
  color: var(--indigo);
  font-style: italic;
}

@media (max-width: 900px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-grid { grid-template-columns: 1fr; } }

/* Section-adaptive nav */
.nav.nav--dark {
  background: var(--indigo) !important;
  border-color: transparent !important;
}
.nav.nav--dark .nav-brand,
.nav.nav--dark .nav-links a,
.nav.nav--dark .nav-cart-link { color: rgba(255,255,255,.88) !important; }
.nav.nav--dark .nav-links a::after { background: rgba(255,255,255,.88); }
.nav.nav--dark .nav-burger span { background: rgba(255,255,255,.88); }


/* ── Trust Badge Bar ── */
.aa-trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  padding: 14px 0;
  margin-top: 10px;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.aa-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal-2);
}
.aa-trust-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--grey);
}
.aa-trust-item span {
  font-family: var(--sans, sans-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.product-side-summary {
  margin-top: 18px;
  padding-top: 18px;
  border-bottom: 1px solid var(--sand);
}

.product-side-summary-title {
  margin-bottom: 12px;
  font-family: var(--sans, sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
  color: #111;
}

.product-side-summary ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-side-summary li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid rgba(28,26,23,.12);
  font-size: .86rem;
  line-height: 1.45;
  color: #111;
}

.product-side-summary li span:first-child {
  flex: 0 0 auto;
  color: rgba(28,26,23,.58);
}

.product-side-summary li span:last-child {
  min-width: 0;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 480px) {
  .aa-trust-bar { grid-template-columns: 1fr; }
  .product-side-summary li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .product-side-summary li span:last-child {
    text-align: left;
  }
}

/* ── Product Accordion ── */
.product-accordion {
  margin-top: 20px;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.acc-item + .acc-item { border-top: 1px solid var(--sand); }
.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans, sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  min-height: 48px;
}
.acc-trigger:hover { color: var(--indigo); }
.acc-arrow { transition: transform 0.32s ease; flex-shrink: 0; }
.acc-trigger[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.acc-panel.open { grid-template-rows: 1fr; }
.acc-body {
  overflow: hidden;
  padding-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--charcoal-2);
}
.acc-body p + p { margin-top: 10px; }

/* ── Product Image Shimmer ── */
.product-gallery-main { position: relative; }
.product-gallery-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    transparent 20%,
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.10) 62%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-8deg);
  pointer-events: none;
  z-index: 2;
  animation: none;
}
.product-gallery-main:hover::before {
  animation: aa-shimmer-once 1.4s ease-in-out forwards;
}
@keyframes aa-shimmer-once {
  0%   { transform: translateX(-120%) skewX(-8deg); }
  100% { transform: translateX(120%)  skewX(-8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .product-gallery-main::before { display: none; }
}
@media (hover: none) {
  .product-gallery-main::before { display: none; }
}

/* ── Inner Zoom ── */
.product-gallery-main {
  cursor: zoom-in;
  overflow: hidden;
}
.product-gallery-main img {
  transition: transform 0.1s ease;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  will-change: transform;
}
.product-gallery-main.zoomed {
  cursor: crosshair;
}
.product-gallery-main.zoomed img {
  transform: scale(2.2);
}
@media (hover: none) {
  .product-gallery-main { cursor: default; }
  .product-gallery-main img { transition: none; }
}

/* ================================================================
   PRODUCT PAGE - EDITORIAL REDESIGN
================================================================ */
.product-page--editorial {
  padding: 0;
  background: #fff;
}

.product-hero-stage {
  position: relative;
  width: 100%;
  height: min(100svh, 50vw);
  background: #e7e7e7;
  overflow: hidden;
}

.product-hero-media {
  width: min(78vw, 1280px);
  height: min(72vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-media img,
.product-hero-media .product-img-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-gallery-thumbs--floating {
  position: absolute;
  right: clamp(28px, 6vw, 108px);
  bottom: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  transition: bottom 0.28s ease;
}
/* Lift thumbnails when sticky bar is open so they're never covered */
.sticky-atc-open .product-gallery-thumbs--floating {
  bottom: 128px;
}

.product-gallery-thumbs--floating .thumb-btn {
  width: 44px;
  height: 44px;
  background: rgba(235,235,235,.74);
  border: 1px solid rgba(120,120,120,.24);
  border-radius: 4px;
  padding: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-gallery-thumbs--floating .thumb-btn.active,
.product-gallery-thumbs--floating .thumb-btn:hover {
  border-color: rgba(28,26,23,.42);
  background: rgba(255,255,255,.86);
}

.product-gallery-thumbs--floating .thumb-btn img {
  border-radius: 2px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-purchase-panel {
  background: #fff;
  border-top: 1px solid rgba(28,26,23,.08);
}

.product-panel-grid {
  max-width: 1680px;
  min-height: 0;
  margin: 0 auto;
  padding: 34px clamp(56px, 6.25vw, 128px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(56px, 7vw, 128px);
  align-items: start;
}

.product-summary {
  max-width: 760px;
}

.product-breadcrumb {
  margin-bottom: 26px;
  color: rgba(28,26,23,.42);
}

.product-summary .product-type {
  color: rgba(28,26,23,.48);
  margin-bottom: 8px;
}

.product-summary .product-title {
  font-family: var(--sans);
  font-size: clamp(1.18rem, 1.24vw, 1.5rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: #111;
}

.product-summary .product-price-display {
  font-family: var(--sans);
  font-size: clamp(1.28rem, 1.4vw, 1.72rem);
  font-weight: 600;
  color: #111;
  margin-bottom: 42px;
}

.product-options--summary {
  max-width: 100%;
  margin: 0 0 64px;
}

.product-options--summary .variant-section {
  border-bottom: 1px solid rgba(28,26,23,.14);
  margin: 0;
  padding: 0 0 18px;
}

.product-options--summary .variant-section--simple,
.product-options--summary .variant-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-options--summary .variant-section + .variant-section {
  padding-top: 22px;
}

.product-options--summary .variant-label {
  font-size: .84rem;
  letter-spacing: 0;
  text-transform: none;
  color: #1b1b1b;
  margin-bottom: 0;
}

.product-options--summary .variant-plus {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  color: #111;
}

.product-options--summary .variant-btns {
  margin-top: 14px;
  gap: 8px;
}

.product-options--summary .variant-btn {
  min-width: 44px;
  min-height: 38px;
  border-color: rgba(28,26,23,.2);
  color: #1b1b1b;
  background: #fff;
  font-size: .78rem;
  letter-spacing: 0;
}

.product-options--summary .variant-btn:hover,
.product-options--summary .variant-btn.selected {
  border-color: #111;
  background: #f5f5f5;
  color: #111;
}

.product-actions-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.product-actions-panel form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-actions-panel .btn {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 0;
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.availability-btn {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.availability-btn:hover {
  background: #f6f6f6;
}

.product-actions-panel .atc-btn {
  margin-top: 0;
  background: #090909;
  color: #fff;
  border-color: #090909;
  box-shadow: none;
}

.product-actions-panel .atc-btn:hover {
  background: #252525;
  border-color: #252525;
}

.product-service-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 2px 0 4px;
  color: #4c4945;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-service-note span {
  position: relative;
}

.product-service-note span + span::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.product-contact-service {
  margin-top: 8px;
}

.product-contact-trigger {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.product-contact-trigger::-webkit-details-marker {
  display: none;
}

.product-contact-trigger svg {
  flex: 0 0 auto;
  transition: transform .22s ease;
}

.product-contact-service[open] .product-contact-trigger svg {
  transform: rotate(45deg);
}

.product-contact-panel {
  padding: 18px 0 4px;
  border-bottom: 1px solid rgba(28,26,23,.14);
}

.product-contact-heading {
  margin-bottom: 6px;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}

.product-contact-copy,
.product-contact-note,
.product-contact-success,
.product-contact-error {
  font-size: .84rem;
  line-height: 1.55;
  color: rgba(28,26,23,.68);
}

.product-contact-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-contact-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border: 1px solid rgba(28,26,23,.16);
}

.product-contact-tabs--single {
  grid-template-columns: 1fr;
}

.product-contact-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: #111;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.product-contact-tab + .product-contact-tab {
  border-left: 1px solid rgba(28,26,23,.16);
}

.product-contact-tab-input--whatsapp:checked ~ .product-contact-tabs .product-contact-tab--whatsapp,
.product-contact-tab-input--email:checked ~ .product-contact-tabs .product-contact-tab--email {
  background: #111;
  color: #fff;
}

.product-contact-content {
  padding-top: 18px;
}

.product-contact-pane {
  display: none;
}

.product-contact-tab-input--whatsapp:checked ~ .product-contact-content .product-contact-pane--whatsapp,
.product-contact-tab-input--email:checked ~ .product-contact-content .product-contact-pane--email {
  display: block;
}

.product-contact-qr {
  width: 180px;
  min-height: 180px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  padding: 12px;
  border: 1px solid rgba(28,26,23,.14);
  background: #fff;
}

.product-contact-qr img {
  width: 100%;
  height: auto;
  display: block;
}

.product-contact-qr--empty {
  color: rgba(28,26,23,.5);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

.product-contact-action,
.product-contact-submit {
  min-height: 42px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-contact-form {
  display: grid;
  gap: 9px !important;
}

.product-contact-form label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(28,26,23,.66);
}

.product-contact-form input,
.product-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(28,26,23,.16);
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.45;
  padding: 11px 12px;
}

.product-contact-form textarea {
  resize: vertical;
}

.product-contact-submit {
  cursor: pointer;
}

.client-care {
  padding-top: 10px;
  color: #111;
}

.client-care-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.client-care p {
  margin-top: 8px;
  font-size: .9rem;
  line-height: 1.5;
  color: #2d2d2d;
}

.gucci-services {
  margin-top: 4px;
  max-width: 560px;
}

.gucci-services-title {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: none;
  color: #111;
  font-family: var(--sans);
  font-size: .92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gucci-services-title span {
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.gucci-services p {
  margin-top: 8px;
  font-size: .9rem;
  line-height: 1.42;
  color: #202020;
}

.product-description--gucci {
  max-width: 760px;
  margin-bottom: 76px;
}

.detail-kicker {
  margin-bottom: 16px;
  font-size: clamp(1.08rem, 1.12vw, 1.34rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: #111;
}

.product-style {
  margin-bottom: 24px;
  font-size: clamp(.82rem, .82vw, .98rem);
  line-height: 1.5;
  color: #111;
}

.product-description-copy {
  font-size: clamp(1rem, 1.02vw, 1.18rem);
  line-height: 1.52;
  color: #111;
}

.product-description-copy h1,
.product-description-copy h2,
.product-description-copy h3,
.product-description-copy h4 {
  margin: 22px 0 10px;
  font-family: var(--sans);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.product-description-copy h1:first-child,
.product-description-copy h2:first-child,
.product-description-copy h3:first-child,
.product-description-copy h4:first-child,
.product-description-copy p:first-child,
.product-description-copy ul:first-child,
.product-description-copy ol:first-child {
  margin-top: 0;
}

.product-description-copy p + p,
.product-description-copy ul,
.product-description-copy ol {
  margin-top: 14px;
}

.product-description-copy ul,
.product-description-copy ol {
  padding-left: 1.1em;
}

.product-description-copy li + li {
  margin-top: 4px;
}

.product-description-copy strong,
.product-description-copy b {
  font-weight: 600;
}

.product-accordion--gucci {
  max-width: 100%;
  margin: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(28,26,23,.14);
}

.product-accordion--gucci .acc-item {
  border-top: 1px solid rgba(28,26,23,.14);
}

.product-accordion--gucci .acc-trigger {
  min-height: 88px;
  padding: 0 8px 0 4px;
  font-size: clamp(1.02rem, 1.06vw, 1.24rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #111;
}

.product-accordion--gucci .acc-arrow {
  width: 18px;
  height: 18px;
}

.product-accordion--gucci .acc-body {
  padding: 0 4px 34px;
  font-size: 1rem;
  line-height: 1.65;
  color: #222;
}

.detail-list {
  display: grid;
  gap: 11px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(92px, .32fr) minmax(0, 1fr);
  gap: 18px;
}

.detail-list dt {
  color: rgba(28,26,23,.58);
  font-weight: 500;
}

.detail-list dd {
  margin: 0;
  color: #111;
}

.product-bottom-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 74px 24px 0;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  text-align: center;
}

.product-bottom-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-page--editorial .product-gallery-main {
  cursor: default;
}

.product-page--editorial .product-gallery-main::before {
  display: none;
}

#mainNav.product-nav-transparent {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#mainNav.product-nav-transparent * {
  color: #111 !important;
}

#mainNav.product-nav-transparent .nav-burger span {
  background: #111 !important;
}

#mainNav.product-nav-solid {
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(26,26,26,.08) !important;
  box-shadow: 0 10px 30px rgba(20,34,53,.05) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#mainNav.product-nav-solid * {
  color: #1a1a1a !important;
}

#mainNav.product-nav-solid .nav-burger span {
  background: #1a1a1a !important;
}

@media (max-width: 1100px) {
  .product-hero-media {
    width: min(88vw, 920px);
    height: min(58vh, 620px);
  }

  .product-panel-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .product-actions-panel {
    max-width: 420px;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .product-hero-stage {
    height: 100svh;
  }
  .gallery-slide {
    flex: 0 0 100%;
  }

  .product-hero-media {
    width: 96vw;
    height: 54vh;
  }

  .product-gallery-thumbs--floating {
    right: 20px;
    bottom: 24px;
  }
  .sticky-atc-open .product-gallery-thumbs--floating {
    bottom: 100px;
  }

  .product-gallery-thumbs--floating .thumb-btn {
    width: 38px;
    height: 38px;
  }

  .product-panel-grid {
    padding: 36px 24px 44px;
  }

  .product-actions-panel .btn {
    min-height: 52px;
    font-size: .62rem;
    letter-spacing: .11em;
  }

  .product-options--summary,
  .product-description--gucci {
    margin-bottom: 46px;
  }

  .product-accordion--gucci .acc-trigger {
    min-height: 76px;
  }

  .product-bottom-breadcrumb {
    padding-top: 42px;
    flex-wrap: wrap;
  }
}

/* ================================================================
   STICKY ATC BAR
================================================================ */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #ffffff;
  border-top: 1px solid rgba(28,26,23,0.08);
  box-shadow: 0 -6px 20px rgba(28,26,23,0.06);
  padding: 10px clamp(16px, 4.5vw, 88px);
  /* Safe area for iPhone home-gesture bar */
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));

  /* Hidden by default; fades in via .is-visible */
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.sticky-atc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.sticky-atc-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.sticky-atc-image {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: cover;
  background: #e6e6e3;
}

.sticky-atc-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.sticky-atc-name {
  font-family: var(--sans);
  font-size: clamp(.9rem, .9vw, 1.08rem);
  font-weight: 300;
  line-height: 1.25;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-family: var(--sans);
  font-size: clamp(.98rem, .98vw, 1.18rem);
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  white-space: nowrap;
}

.sticky-atc-btn {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  min-width: 190px;
  padding: 14px 28px;
  background: #090909;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.sticky-atc-btn:hover { background: #252525; }

.sticky-atc-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .sticky-atc { transition: none; }
}

@media (max-width: 768px) {
  .sticky-atc { padding: 10px 16px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .sticky-atc-inner { gap: 12px; }
  .sticky-atc-info { gap: 10px; }
  .sticky-atc-image {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .sticky-atc-name {
    max-width: 36vw;
    font-size: .76rem;
  }
  .sticky-atc-price { font-size: .86rem; }
  .sticky-atc-btn {
    min-width: 132px;
    padding: 12px 18px;
    font-size: .62rem;
  }
}

/* ================================================================
   PRODUCT GALLERY - SLIDING CAROUSEL
   Desktop starts with one centered 50vw tile, then opens to a 2-up grid.
   Mobile switches to one square image per slide.
================================================================ */
.gallery-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 25% 0 25%);
  transition: clip-path 0.38s cubic-bezier(.42, 0, .18, 1);
}
.gallery-track {
  display: flex;
  height: 100%;
  transform: translateX(25%);
  transition: transform 0.38s cubic-bezier(.42, 0, .18, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fcfcfa;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 0.24s cubic-bezier(.28, 0, .16, 1);
}
.gallery-slide.is-zoomed img {
  cursor: zoom-out;
  transform: scale(1.85);
}
.gallery-controls {
  position: absolute;
  right: clamp(28px, 6vw, 108px);
  bottom: 56px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transition: bottom 0.28s ease;
}
.sticky-atc-open .gallery-controls { bottom: 128px; }
.gallery-thumbs {
  display: flex;
  gap: 3px;
  align-items: center;
}
.gallery-thumb {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 3px;
  padding: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 1px;
  display: block;
}
.gallery-thumb.is-active,
.gallery-thumb:hover { border-color: #111; background: #fff; }
.gallery-arrows { display: flex; gap: 5px; }
.gallery-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,.24);
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
}
.gallery-arrow:hover:not(:disabled) {
  background: #111;
  color: #fff;
  border-color: #111;
}
.gallery-arrow:disabled { opacity: 0.32; cursor: default; }
@media (max-width: 700px) {
  .product-hero-stage {
    height: 100vw;
  }
  .gallery-wrapper {
    clip-path: inset(0);
  }
  .gallery-track {
    transform: translateX(0);
  }
  .gallery-slide {
    flex-basis: 100%;
  }
  .gallery-controls { right: 20px; bottom: 24px; }
  .sticky-atc-open .gallery-controls { bottom: 100px; }
  .gallery-thumb { width: 32px; height: 32px; }
  .gallery-arrow { width: 30px; height: 30px; }
}
