@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --noir: #0A090C;
  --noir-elevated: #141218;
  --noir-soft: #1C1A22;
  --ivory: #F6F2EA;
  --ivory-deep: #EBE5DA;
  --ivory-muted: #D8D0C4;
  --champagne: #B8956B;
  --champagne-light: #D4B896;
  --champagne-pale: #E8D5BC;
  --blush: #C4A090;
  --blush-soft: #E2CFC4;
  --ink: #1A1720;
  --text: #3D3844;
  --muted: #7A7380;
  --white: #FFFFFF;
  --success: #4A7C59;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.45s;
  --t-fast: 0.22s;

  --nav-h: 76px;
  --pad: clamp(1.25rem, 4.5vw, 4.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);

  --shadow-sm: 0 4px 20px rgba(10, 9, 12, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 9, 12, 0.1);
  --shadow-lg: 0 24px 64px rgba(10, 9, 12, 0.14);
  --line: rgba(184, 149, 107, 0.22);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--champagne-pale); color: var(--ink); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 99px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.page { display: none; }
.page.active { display: block; }

/* ── CURSOR ── */
@media (pointer: fine) {
  body { cursor: none; }
  #cursor {
    position: fixed; z-index: 9999; pointer-events: none;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--champagne);
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    transition: transform 0.15s, width 0.3s, height 0.3s;
  }
  #cursorRing {
    position: fixed; z-index: 9998; pointer-events: none;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--champagne);
    opacity: 0.45;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
  }
  body.cursor-hover #cursor { width: 14px; height: 14px; background: var(--champagne-light); }
  body.cursor-hover #cursorRing { width: 52px; height: 52px; opacity: 0.25; }
}

/* ── NAV ── */
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background var(--t) var(--ease), box-shadow var(--t), backdrop-filter var(--t);
}
.site-nav.nav-solid {
  background: rgba(10, 9, 12, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184, 149, 107, 0.12);
}
.site-nav.nav-light,
.site-nav.nav-light.nav-solid {
  background: rgba(246, 242, 234, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--ivory-deep);
}

.brand {
  display: flex; align-items: baseline; gap: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.brand-gems { color: var(--champagne-light); }
.brand-craft { color: var(--ivory); }
.brand-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--champagne);
  border-radius: 50%;
  margin-left: 4px;
  margin-bottom: 6px;
}
.nav-light .brand-gems { color: var(--champagne); }
.nav-light .brand-craft { color: var(--ink); }

.nav-menu {
  display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.75rem);
}
.nav-menu a {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246, 242, 234, 0.75);
  position: relative; padding-bottom: 4px;
  transition: color var(--t-fast);
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--champagne);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t) var(--ease);
}
.nav-menu a:hover { color: var(--champagne-light); }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-light .nav-menu a { color: var(--muted); }
.nav-light .nav-menu a:hover { color: var(--ink); }

.nav-tools { display: flex; align-items: center; gap: 0.5rem; }
.nav-tool {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 107, 0.25);
  color: var(--champagne-light);
  transition: all var(--t-fast);
  position: relative;
}
.nav-tool:hover { background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.nav-light .nav-tool { color: var(--champagne); border-color: var(--ivory-deep); }
.nav-light .nav-tool:hover { background: var(--noir); color: var(--ivory); border-color: var(--noir); }
.nav-tool svg { width: 17px; height: 17px; }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--champagne); color: var(--noir);
  border-radius: 99px; font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid rgba(184, 149, 107, 0.25);
  border-radius: 50%;
}
.nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--champagne-light);
  margin: 0 auto;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.nav-light .nav-burger span { background: var(--ink); }
.site-nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.site-nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 850;
  background: var(--noir);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 2rem;
  transform: translateX(100%);
  transition: transform var(--t) var(--ease);
}
.nav-drawer.open { transform: translateX(0); }
.drawer-nav { flex: 1; }
.drawer-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 300;
  color: rgba(246, 242, 234, 0.9);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--t-fast), padding-left var(--t) var(--ease);
}
.drawer-nav a:hover { color: var(--champagne-light); padding-left: 0.75rem; }
.drawer-socials { display: flex; gap: 0.75rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.drawer-social {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184, 149, 107, 0.3);
  border-radius: 50%; color: var(--champagne-light);
  transition: all var(--t-fast);
}
.drawer-social:hover { background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.drawer-social svg { width: 16px; height: 16px; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9990;
  min-width: 280px; max-width: calc(100vw - 2rem);
  background: var(--noir); color: var(--ivory);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-left: 3px solid var(--champagne);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.35s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-ico { color: var(--champagne-light); display: flex; flex-shrink: 0; }
.toast-msg { font-size: 0.85rem; flex: 1; }
.toast-close { color: rgba(255,255,255,0.35); display: flex; transition: color var(--t-fast); }
.toast-close:hover { color: var(--ivory); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 2rem;
  border: none; cursor: pointer;
  transition: all var(--t) var(--ease);
}
.btn svg { width: 14px; height: 14px; }
.btn-gold {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-light) 50%, var(--champagne) 100%);
  background-size: 200% auto;
  color: var(--noir);
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184, 149, 107, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(246, 242, 234, 0.25);
}
.btn-ghost:hover { border-color: var(--champagne-light); color: var(--champagne-light); }
.btn-dark {
  background: var(--noir); color: var(--ivory);
}
.btn-dark:hover { background: var(--noir-soft); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ivory-deep);
}
.btn-outline:hover { border-color: var(--champagne); color: var(--champagne); }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.68rem; }
.btn-full { width: 100%; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--champagne); }
.eyebrow-light { color: var(--champagne-light); }
.eyebrow-light::before { background: var(--champagne-light); }
.eyebrow-center { justify-content: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300; line-height: 1.12;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--champagne); }
.section-title-light { color: var(--ivory); }
.section-title-light em { color: var(--champagne-light); }
.section-lead {
  font-size: 0.95rem; color: var(--muted);
  max-width: 480px; line-height: 1.8; margin-top: 0.75rem;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  background: var(--noir);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.5;
}
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 58%;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
  animation: heroZoom 18s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-mask {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg, var(--noir) 38%, transparent 62%);
}
.hero-mask::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--noir) 0%, transparent 35%);
}
.hero-stripe {
  position: absolute; top: 15%; bottom: 15%; z-index: 3;
  right: 42%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--champagne) 30%, var(--blush) 70%, transparent);
  opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 5;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
  max-width: 640px;
}
.hero-inner .eyebrow { animation: fadeUp 0.8s 0.3s var(--ease) both; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.45s var(--ease) both;
}
.hero-headline em { font-style: italic; color: var(--champagne-light); display: block; }
.hero-copy {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(246, 242, 234, 0.55);
  line-height: 1.85; max-width: 420px;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.8s 0.6s var(--ease) both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeUp 0.8s 0.75s var(--ease) both;
}
.hero-stats {
  position: absolute; bottom: 3rem; right: var(--pad); z-index: 5;
  display: flex; gap: 2.5rem;
  animation: fadeUp 1s 1s var(--ease) both;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 300;
  color: var(--champagne-light); line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(246,242,234,0.4);
  margin-top: 0.35rem;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246,242,234,0.35);
  animation: fadeUp 1s 1.2s var(--ease) both;
}
.scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ── MARQUEE ── */
.marquee {
  background: var(--noir-elevated);
  border-top: 1px solid rgba(184, 149, 107, 0.12);
  border-bottom: 1px solid rgba(184, 149, 107, 0.12);
  padding: 0.85rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246, 242, 234, 0.5);
  display: flex; align-items: center; gap: 2rem;
}
.marquee-track span::after {
  content: ''; width: 4px; height: 4px;
  background: var(--champagne); border-radius: 50%;
}

/* ── SECTIONS ── */
.section { padding: var(--section) var(--pad); }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

/* ── CATEGORIES BENTO ── */
.cat-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}
.cat-tile {
  position: relative; overflow: hidden;
  cursor: pointer; background: var(--noir-soft);
}
.cat-tile:first-child { grid-row: span 2; }
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
  filter: brightness(0.75);
}
.cat-tile:hover img { transform: scale(1.06); filter: brightness(0.85); }
.cat-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,12,0.85) 0%, transparent 55%);
}
.cat-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform var(--t) var(--ease);
}
.cat-tile:hover .cat-tile-body { transform: translateY(-4px); }
.cat-tile-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--ivory); margin-bottom: 0.2rem;
}
.cat-tile-count { font-size: 0.68rem; letter-spacing: 0.14em; color: var(--champagne-light); text-transform: uppercase; }
.cat-tile-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.65rem; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--champagne-light); opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t) var(--ease);
}
.cat-tile:hover .cat-tile-link { opacity: 1; transform: translateY(0); }

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card { cursor: pointer; }
.product-featured { grid-row: span 2; }
.product-visual {
  position: relative; overflow: hidden;
  background: var(--ivory-deep);
  aspect-ratio: 3/3.6;
}
.product-featured .product-visual { aspect-ratio: 3/4.8; }
.product-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-visual img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--champagne); color: var(--noir);
}
.tag-new { background: var(--noir); color: var(--ivory); }
.tag-sale { background: var(--blush); color: var(--noir); }
.tag-exclusive { background: var(--champagne-light); color: var(--noir); }
.product-hover-actions {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; flex-direction: column; gap: 0.45rem;
  transform: translateX(50px); opacity: 0;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.product-card:hover .product-hover-actions { transform: translateX(0); opacity: 1; }
.product-hover-actions button {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--ivory-deep);
  transition: all var(--t-fast);
}
.product-hover-actions button:hover { background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.product-meta { padding: 1.15rem 0.25rem 0; }
.product-cat {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400;
  color: var(--ink); line-height: 1.35; margin-bottom: 0.5rem;
}
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.price-now { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.price-was { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; margin-left: 0.5rem; }
.star { color: var(--champagne); font-size: 0.65rem; }
.star.dim { color: var(--ivory-muted); }

/* ── PROMO ── */
.promo-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--noir);
}
.promo-copy {
  padding: clamp(3rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.promo-stats {
  display: flex; gap: 2rem; margin: 1.75rem 0 2rem;
}
.promo-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 300;
  color: var(--champagne-light); line-height: 1;
}
.promo-stat-txt {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(246,242,234,0.4);
  margin-top: 0.3rem;
}
.promo-visual { position: relative; overflow: hidden; }
.promo-visual img { width: 100%; height: 100%; object-fit: cover; }
.promo-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--noir) 0%, transparent 30%);
}

/* ── VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.value-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--champagne);
  margin-bottom: 1.25rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--ink);
  margin-bottom: 0.5rem;
}
.value-text { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--ivory-deep); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  background: var(--white);
  padding: 2rem;
  border-left: 2px solid var(--champagne);
  transition: box-shadow var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--champagne); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-quote {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.05rem;
  line-height: 1.7; color: var(--ink);
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--champagne-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; color: var(--champagne);
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.testi-meta { font-size: 0.72rem; color: var(--muted); }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--noir);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
}
.newsletter-form {
  display: flex; max-width: 100%;
}
.newsletter-input {
  flex: 1; padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184, 149, 107, 0.25);
  border-right: none;
  color: var(--ivory); font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.newsletter-input::placeholder { color: rgba(246,242,234,0.3); }
.newsletter-input:focus { border-color: var(--champagne); }
.newsletter-btn {
  padding: 1rem 1.75rem;
  background: var(--champagne); color: var(--noir);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background var(--t-fast);
}
.newsletter-btn:hover { background: var(--champagne-light); }

/* ── FOOTER ── */
.site-footer {
  background: var(--noir-elevated);
  color: rgba(246, 242, 234, 0.55);
  padding: 4rem var(--pad) 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--ivory);
  margin-bottom: 1rem; display: block;
}
.footer-brand-name span { color: var(--champagne-light); }
.footer-about { font-size: 0.88rem; line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184, 149, 107, 0.2);
  border-radius: 50%; color: var(--champagne-light);
  transition: all var(--t-fast);
}
.footer-social:hover { background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.88rem; color: rgba(246,242,234,0.45);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--champagne-light); }
.cert-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.25rem; }
.cert-pill {
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(184, 149, 107, 0.25);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--champagne-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(246,242,234,0.35); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--champagne-light); }
.footer-heart { display: inline-flex; vertical-align: -2px; color: var(--champagne); }

/* ── INNER PAGES ── */
.page-banner {
  background: var(--noir);
  padding: calc(var(--nav-h) + 3rem) var(--pad) 3.5rem;
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.3;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(246,242,234,0.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--champagne-light); }
.breadcrumb-light { color: var(--muted); }
.breadcrumb-light a { color: var(--champagne); }
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--ivory);
}
.page-banner-title em { font-style: italic; color: var(--champagne-light); }

/* ── SHOP ── */
.filter-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,9,12,0.5); z-index: 800;
}
.filter-overlay.open { display: block; }
.shop-wrap {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 2.5rem; padding: 2.5rem var(--pad) var(--section);
  background: var(--ivory);
}
.filter-panel {
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
}
.filter-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--ink); margin-bottom: 1.5rem;
}
.filter-clear { font-size: 0.72rem; color: var(--champagne); cursor: pointer; font-family: var(--font-body); }
.filter-block { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--ivory-deep); }
.filter-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.85rem;
}
.cat-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cat-pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem; font-weight: 500;
  border: 1px solid var(--ivory-deep);
  background: var(--white); color: var(--text);
  border-radius: 99px;
  transition: all var(--t-fast);
}
.cat-pill.active, .cat-pill:hover {
  background: var(--noir); color: var(--ivory); border-color: var(--noir);
}
.filter-opt {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.55rem; cursor: pointer;
}
.filter-opt input { accent-color: var(--champagne); width: 15px; height: 15px; }
.filter-opt label {
  flex: 1; display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--muted); cursor: pointer;
}
.filter-count { font-size: 0.72rem; color: var(--ivory-muted); }
.price-row { display: flex; align-items: center; gap: 0.5rem; }
.price-field {
  flex: 1; padding: 0.55rem 0.7rem;
  border: 1px solid var(--ivory-deep); background: var(--white);
  font-size: 0.85rem; outline: none;
}
.price-field:focus { border-color: var(--champagne); }
.shop-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--ivory-deep);
  flex-wrap: wrap; gap: 1rem;
}
.result-text { font-size: 0.88rem; color: var(--muted); }
.result-text strong { color: var(--ink); }
.sort-select {
  padding: 0.55rem 2rem 0.55rem 0.85rem;
  border: 1px solid var(--ivory-deep); background: var(--white);
  font-size: 0.85rem; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A7380' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
}
.filter-mobile-btn {
  display: none; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--ivory-deep); background: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.products-grid-shop { grid-template-columns: repeat(3, 1fr); }
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 0.4rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--ivory-deep);
}
.pag-btn {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ivory-deep); background: var(--white);
  font-size: 0.85rem; color: var(--text);
  transition: all var(--t-fast);
}
.pag-btn.active, .pag-btn:hover { background: var(--champagne); border-color: var(--champagne); color: var(--noir); }

/* ── DETAIL ── */
.detail-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 2.5rem var(--pad) var(--section);
  background: var(--ivory);
}
.gallery-main {
  aspect-ratio: 1; overflow: hidden;
  background: var(--white); margin-bottom: 0.75rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.g-thumb {
  aspect-ratio: 1; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; padding: 0;
  transition: border-color var(--t-fast);
}
.g-thumb.active, .g-thumb:hover { border-color: var(--champagne); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-kicker {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--champagne); margin-bottom: 0.5rem;
}
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ink); margin-bottom: 0.75rem;
}
.detail-rating { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.25rem; }
.detail-reviews { font-size: 0.82rem; color: var(--muted); }
.detail-prices { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.detail-price { font-size: 1.85rem; font-weight: 600; color: var(--ink); }
.detail-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.detail-save {
  font-size: 0.72rem; font-weight: 600; color: var(--success);
  background: rgba(74, 124, 89, 0.1); padding: 0.2rem 0.55rem;
}
.detail-divider { height: 1px; background: var(--ivory-deep); margin: 1.5rem 0; }
.variant-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.65rem;
}
.opt-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.opt-metal, .opt-size {
  padding: 0.5rem 1rem;
  border: 1px solid var(--ivory-deep); background: var(--white);
  font-size: 0.82rem; color: var(--muted);
  transition: all var(--t-fast);
}
.opt-size { min-width: 44px; text-align: center; }
.opt-metal.active, .opt-size.active,
.opt-metal:hover, .opt-size:hover {
  border-color: var(--champagne); color: var(--ink);
  background: rgba(184, 149, 107, 0.06);
}
.size-guide {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; color: var(--champagne);
  margin: -0.5rem 0 1.25rem; cursor: pointer;
}
.size-guide:hover { color: var(--ink); }
.buy-row { display: flex; align-items: stretch; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.qty-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--ivory-deep); background: var(--white);
}
.qty-btn {
  width: 42px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ink);
  transition: background var(--t-fast);
}
.qty-btn:hover { background: var(--ivory-deep); }
.qty-val {
  width: 44px; text-align: center;
  font-size: 0.95rem; font-weight: 500;
}
.add-cart { flex: 1; min-width: 180px; }
.wish-btn {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ivory-deep); background: var(--white);
  color: var(--ink); transition: all var(--t-fast);
}
.wish-btn:hover { border-color: var(--blush); color: var(--blush); }
.detail-feats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
}
.detail-feat {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted);
}
.detail-feat svg { color: var(--champagne); flex-shrink: 0; }
.detail-tabs {
  display: flex; border-bottom: 1px solid var(--ivory-deep);
  margin-top: 2rem; overflow-x: auto;
}
.tab-btn {
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--t-fast);
}
.tab-btn.active { color: var(--champagne); border-bottom-color: var(--champagne); }
.tab-panel {
  display: none; padding: 1.5rem 0;
  font-size: 0.9rem; line-height: 1.85; color: var(--muted);
}
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--ivory-deep); }
.spec-table td { padding: 0.7rem 0; font-size: 0.88rem; }
.spec-table td:first-child { width: 40%; font-weight: 600; color: var(--ink); }

/* ── CART ── */
.cart-page { padding: calc(var(--nav-h) + 2rem) var(--pad) var(--section); background: var(--ivory); min-height: 100vh; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--ink);
}
.cart-title { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--ink); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.cart-line {
  display: grid; grid-template-columns: 2fr 1fr auto 1fr auto;
  gap: 1rem; align-items: center;
  padding: 1.25rem 0; border-bottom: 1px solid var(--ivory-deep);
}
.cart-prod { display: flex; align-items: center; gap: 1rem; }
.cart-thumb { width: 88px; height: 88px; overflow: hidden; background: var(--ivory-deep); flex-shrink: 0; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-name { font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: 0.2rem; }
.cart-variant { font-size: 0.78rem; color: var(--muted); }
.cart-unit, .cart-line-total { font-weight: 600; color: var(--ink); }
.cart-remove { color: var(--muted); display: flex; padding: 0.25rem; transition: color var(--t-fast); }
.cart-remove:hover { color: #c0392b; }
.cart-empty {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 4rem 2rem;
}
.cart-empty-icon { color: var(--champagne); opacity: 0.5; margin-bottom: 1.25rem; }
.cart-empty-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.cart-empty-text { color: var(--muted); margin-bottom: 1.5rem; }
.order-summary {
  background: var(--white); padding: 2rem;
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
  border: 1px solid var(--ivory-deep);
}
.summary-title {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--ink); margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--ivory-deep);
}
.sum-row {
  display: flex; justify-content: space-between;
  margin-bottom: 0.65rem; font-size: 0.88rem; color: var(--muted);
}
.sum-row.total {
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
  padding-top: 1rem; margin-top: 0.75rem;
  border-top: 1px solid var(--ivory-deep);
}
.promo-row { display: flex; margin: 1.25rem 0; }
.promo-field {
  flex: 1; padding: 0.75rem 1rem;
  border: 1px solid var(--ivory-deep); border-right: none;
  background: var(--ivory); font-size: 0.85rem; outline: none;
}
.promo-apply {
  padding: 0.75rem 1rem;
  background: var(--noir); color: var(--ivory);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--t-fast);
}
.promo-apply:hover { background: var(--champagne); color: var(--noir); }
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--ivory-deep);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; color: var(--muted); text-align: center;
}
.trust-item svg { color: var(--champagne); }

/* ── CHECKOUT ── */
.checkout-page { padding: calc(var(--nav-h) + 2rem) var(--pad) var(--section); background: var(--ivory); min-height: 100vh; }
.checkout-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.ck-step {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 500; color: var(--ivory-muted);
}
.ck-step.active { color: var(--ink); }
.ck-step.done { color: var(--champagne); }
.ck-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid currentColor; font-size: 0.75rem; font-weight: 700;
}
.ck-step.done .ck-num { background: var(--champagne); border-color: var(--champagne); color: var(--noir); }
.ck-line { flex: 1; height: 1px; background: var(--ivory-deep); min-width: 24px; margin: 0 0.5rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.form-section-title {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--ink); margin-bottom: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.45rem;
}
.form-input {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--ivory-deep); background: var(--white);
  font-size: 0.9rem; color: var(--ink); outline: none;
  transition: border-color var(--t-fast);
}
.form-input:focus { border-color: var(--champagne); }
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem; margin-bottom: 1.25rem; }
.pay-card {
  padding: 0.85rem; text-align: center;
  border: 1px solid var(--ivory-deep); background: var(--white);
  cursor: pointer; transition: all var(--t-fast);
}
.pay-card.active { border-color: var(--champagne); background: rgba(184,149,107,0.05); }
.pay-name { font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.pay-icons { display: flex; justify-content: center; gap: 0.3rem; margin-top: 0.35rem; }
.pay-icon {
  font-size: 0.58rem; font-weight: 700;
  padding: 0.1rem 0.35rem; background: var(--ivory-deep);
}
.secure-note {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1rem; margin-top: 1rem;
  background: rgba(184,149,107,0.06);
  border: 1px solid var(--line);
  font-size: 0.82rem; color: var(--muted);
}
.secure-note svg { color: var(--champagne); flex-shrink: 0; }
.checkout-line {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--ivory-deep);
}
.checkout-thumb {
  width: 64px; height: 64px; position: relative;
  background: var(--ivory-deep); overflow: hidden; flex-shrink: 0;
}
.checkout-thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-qty {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--champagne); color: var(--noir);
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.checkout-line-info { flex: 1; }
.checkout-line-name { font-family: var(--font-display); font-size: 0.92rem; color: var(--ink); }
.checkout-line-meta { font-size: 0.72rem; color: var(--muted); }
.checkout-line-price { font-weight: 600; color: var(--ink); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-featured { grid-row: span 1; }
  .products-grid-shop { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-split { grid-template-columns: 1fr; }
  .promo-visual { min-height: 320px; }
  .newsletter { grid-template-columns: 1fr; }
  .detail-wrap { grid-template-columns: 1fr; }
  .cart-layout, .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor, #cursorRing { display: none; }
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .hero-visual { width: 100%; height: 55%; top: 0; bottom: auto; }
  .hero-mask { background: linear-gradient(to bottom, transparent 40%, var(--noir) 85%); }
  .hero-inner { max-width: 100%; padding-top: 50vh; }
  .hero-scroll { display: none; }
  .cat-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-tile:first-child { grid-row: span 1; grid-column: span 2; }
  .shop-wrap { grid-template-columns: 1fr; padding: 1.25rem; }
  .filter-panel {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(320px, 88vw); z-index: 850;
    background: var(--white); padding: calc(var(--nav-h) + 1rem) 1.25rem 2rem;
    overflow-y: auto; transform: translateX(-100%);
    transition: transform var(--t) var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .filter-panel.open { transform: translateX(0); }
  .filter-mobile-btn { display: inline-flex; }
  .cart-line { grid-template-columns: 1fr; gap: 0.75rem; }
  .detail-feats { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .testi-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
  .products-grid, .products-grid-shop { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .ck-line { display: none; }
}

@media (max-width: 480px) {
  .products-grid, .products-grid-shop { grid-template-columns: 1fr; }
  .cat-bento { grid-template-columns: 1fr; }
  .cat-tile:first-child { grid-column: span 1; }
  .hero-headline { font-size: 2.35rem; }
}
