/* ──────────────────────────────────────────────────────────────
   CHOSEN JEWELLERY — Brand stylesheet
   Pure CSS. No build step. Open index.html and go.
   ────────────────────────────────────────────────────────────── */

:root {
  /* Brand palette */
  --ink: #0A0A0A;
  --bone: #F5F3EF;
  --gold: #C6A972;
  --chrome: #C8C8C8;
  --charcoal: #1A1A1A;
  --ash: #8B8B8B;
  --dim: #5a5a5a;
  --line: rgba(245,243,239,0.10);
  --line-strong: rgba(245,243,239,0.20);

  /* Type */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ──────────────── Layout helpers ──────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 64px; } }

.center { text-align: center; }

/* ──────────────── Type ──────────────── */
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ash);
  font-weight: 500;
}
.eyebrow.gold { color: var(--gold); }

.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.h-display em { font-style: italic; font-weight: 300; }

.h-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

.lead { color: var(--ash); margin-top: 24px; line-height: 1.65; max-width: 560px; }
.lead.center { margin-left: auto; margin-right: auto; }

.gold { color: var(--gold); }

/* ──────────────── Buttons ──────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  transition: all 0.5s var(--ease);
  border: 1px solid transparent;
}
.btn--primary { background: var(--bone); color: var(--ink); }
.btn--primary:hover { background: var(--gold); color: var(--ink); }
.btn--ghost { color: var(--bone); border-color: rgba(245,243,239,0.3); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: rgba(245,243,239,0.7);
  transition: color 0.5s var(--ease);
}
.link-arrow:hover { color: var(--gold); }
@media (max-width: 767px) { .link-arrow { display: none; } }

/* ──────────────── NAV ──────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: top 0.35s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .nav__inner { height: 80px; } }

.nav__logo {
  font-family: var(--serif);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.5s var(--ease);
}
.nav__logo:hover { color: var(--gold); }

.nav__links { display: none; gap: 40px; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: rgba(245,243,239,0.8);
  transition: color 0.5s var(--ease);
}
.nav__links a:hover { color: var(--gold); }

.nav__actions { display: none; align-items: center; gap: 24px; }
@media (min-width: 1024px) { .nav__actions { display: flex; } }
.nav__icon, .nav__bag {
  color: rgba(245,243,239,0.8);
  transition: color 0.5s var(--ease);
}
.nav__bag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em; }
.nav__icon:hover, .nav__bag:hover { color: var(--gold); }

.nav__burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 1px; background: var(--bone); }
@media (min-width: 1024px) { .nav__burger { display: none; } }

/* mobile menu */
.mm {
  position: fixed; inset: 0; z-index: 60;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
body.mm-open .mm { opacity: 1; pointer-events: auto; }
body.mm-open { overflow: hidden; }
.mm nav { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mm nav a {
  font-family: var(--serif); font-size: 32px; color: var(--bone);
  transition: color 0.3s var(--ease);
}
.mm nav a:hover { color: var(--gold); }
.mm__close {
  position: absolute; top: 20px; right: 20px; font-size: 32px; color: var(--bone);
  width: 44px; height: 44px;
}

/* ──────────────── HERO ──────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding-top: 80px;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.85) 100%),
    url('../images/byzantine-lifestyle-hero.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(198,169,114,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 240px;
  background: linear-gradient(180deg, transparent, var(--ink));
}
.hero__inner {
  position: relative; z-index: 1;
  padding: 96px 24px 96px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) { .hero__inner { padding: 160px 40px 128px; } }
.hero .h-display {
  text-align: center;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
}
.hero__sub {
  margin: 32px auto 0;
  max-width: 540px;
  font-size: 16px;
  color: rgba(245,243,239,0.85);
  line-height: 1.7;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .hero__sub { font-size: 18px; } }
.hero__ctas { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero__cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero__cue span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(245,243,239,0.4), transparent);
}

/* ──────────────── Sections ──────────────── */
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section--bordered { border-top: 1px solid var(--line); }
.section--charcoal { background: var(--charcoal); }

.section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; gap: 24px; }
.section__head--center { display: block; text-align: center; }
.section__head--center .h-section { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ──────────────── Grids ──────────────── */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.grid--features { gap: 32px; }
.grid--ugc { margin-bottom: 64px; }
.grid--reviews { gap: 32px; }

/* ──────────────── Product Card ──────────────── */
.card { display: block; }
.card__media {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  overflow: hidden;
}
.card__media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--charcoal), var(--ink), var(--charcoal));
  transition: transform 1s var(--ease);
  z-index: 0;
}
.card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.95) contrast(1.05);
}
.card:hover .card__media::before { transform: scale(1.05); }
.card:hover .card__media img { transform: scale(1.06); filter: brightness(1) contrast(1.1); }
.showcase__media img, .pdp__main-img img, .story__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.pdp__main-img img { object-position: center; }
.card__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: rgba(245,243,239,0.2);
}
.card__meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 24px; }
.card__meta h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.card__meta .price { font-size: 14px; color: var(--ash); }

/* ──────────────── Statement ──────────────── */
.statement {
  background: var(--charcoal);
  padding: 128px 0;
  position: relative;
}
@media (min-width: 768px) { .statement { padding: 192px 0; } }
.statement__body {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1.3;
  text-align: center;
  max-width: 960px;
  margin: 32px auto 0;
  color: var(--bone);
}
.statement__body em { font-style: italic; }

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

/* ──────────────── Showcase ──────────────── */
.showcase { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .showcase { grid-template-columns: 1fr 1fr; gap: 80px; } }
.showcase__media {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(45deg, var(--ink), var(--charcoal), var(--ink));
  overflow: hidden;
}
.showcase__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: rgba(245,243,239,0.15);
}
.showcase__shimmer {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.4;
}
.showcase__shimmer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(115deg, transparent 40%, rgba(198,169,114,0.5) 50%, transparent 60%);
  transform: translateX(-100%);
  will-change: transform;
  animation: shimmer 8s linear infinite;
}
.showcase__copy .btn { margin-top: 40px; }

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

/* ──────────────── Features ──────────────── */
.feature {
  padding: 40px;
  border: 1px solid var(--line);
  transition: border-color 0.5s var(--ease);
}
.feature:hover { border-color: rgba(198,169,114,0.4); }
.feature__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(198,169,114,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.feature__icon span { display: block; width: 8px; height: 8px; background: var(--gold); }
.feature h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 16px; }
.feature p { font-size: 14px; color: var(--ash); line-height: 1.7; }

/* ──────────────── UGC + Reviews ──────────────── */
.ugc {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: rgba(245,243,239,0.15);
  overflow: hidden;
  position: relative;
}
.ugc img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.95) contrast(1.05);
}
.ugc:hover img { transform: scale(1.06); filter: brightness(1.05) contrast(1.1); }

.review { padding: 32px; border: 1px solid var(--line); }
.review__stars { color: var(--gold); font-size: 14px; letter-spacing: 0.2em; }
.review__quote { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--bone); margin-top: 16px; }
.review__name { margin-top: 24px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em; color: var(--ash); }

/* ──────────────── Signup ──────────────── */
.signup { position: relative; overflow: hidden; padding: 128px 0 160px; }
.signup__glow {
  position: absolute; inset: 0; opacity: 0.2;
  background: radial-gradient(ellipse at 50% 50%, rgba(198,169,114,0.25) 0%, transparent 60%);
}
.signup__inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.signup__form {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 48px; max-width: 520px; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .signup__form { flex-direction: row; } }
.signup__form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 16px 24px;
  font-family: inherit; font-size: 14px;
  color: var(--bone);
  transition: border-color 0.5s var(--ease);
}
.signup__form input::placeholder { color: rgba(139,139,139,0.6); }
.signup__form input:focus { outline: none; border-color: var(--gold); }
.signup__small { font-size: 11px; color: rgba(139,139,139,0.6); margin-top: 24px; }

/* ──────────────── Footer ──────────────── */
.footer { background: var(--ink); border-top: 1px solid var(--line); margin-top: 0; padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr repeat(4, 1fr); gap: 32px; } }
.footer__logo { font-family: var(--serif); font-size: 28px; text-transform: uppercase; letter-spacing: 0.18em; }
.footer__brand p { color: var(--ash); font-size: 14px; line-height: 1.7; max-width: 320px; margin-top: 24px; }
.footer__brand .eyebrow { margin-top: 32px; }
.footer__col p.eyebrow { color: var(--bone); }
.footer__col ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--ash); font-size: 14px; transition: color 0.5s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  font-size: 12px; color: #b8b8b8;
}
.footer__col a { color: #b8b8b8; }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ──────────────── Reveal animation ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ──────────────── Active nav state ──────────────── */
.nav__links a.active { color: var(--gold); }

/* ──────────────── Page hero (sub-pages) ──────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--charcoal), var(--ink));
  border-bottom: 1px solid var(--line);
}
.page-hero--dark { background: var(--ink); border-bottom: none; padding-bottom: 64px; }
.page-hero--small { padding: 140px 0 56px; }
.page-hero .h-display { margin-top: 16px; }
.page-hero .lead { margin-top: 32px; }

/* ──────────────── Filter bar ──────────────── */
.filter-bar {
  position: sticky; top: 64px; z-index: 40;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .filter-bar { top: 80px; } }
.filter-bar__inner {
  display: flex; gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter {
  padding: 10px 20px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em;
  color: rgba(245,243,239,0.6);
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all 0.4s var(--ease);
}
.filter:hover { color: var(--bone); border-color: var(--line-strong); }
.filter.active { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* ──────────────── Shop grid ──────────────── */
.section--shop { padding-top: 48px; }
.grid--shop {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .grid--shop { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (min-width: 1280px) { .grid--shop { grid-template-columns: repeat(4, 1fr); } }

.empty-state { text-align: center; padding: 80px 0; }
.empty-state .lead { margin: 24px auto 0; }

/* ──────────────── Trust bar ──────────────── */
.trust-bar { background: var(--charcoal); padding: 48px 0; border-top: 1px solid var(--line); }
.trust-bar__grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) { .trust-bar__grid { grid-template-columns: repeat(3, 1fr); } }
.trust-bar__grid div { display: flex; flex-direction: column; gap: 8px; }
.trust-bar__grid strong { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--bone); }
.trust-bar__grid span { font-size: 12px; color: var(--ash); letter-spacing: 0.04em; }

/* ──────────────── Breadcrumb ──────────────── */
.breadcrumb { padding: 96px 0 24px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em; color: var(--ash); }
@media (min-width: 768px) { .breadcrumb { padding-top: 112px; } }
.breadcrumb a { transition: color 0.4s var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--dim); margin: 0 8px; }

/* ──────────────── PDP ──────────────── */
.pdp { padding: 0 0 96px; }
.pdp__grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .pdp__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.pdp__main-img {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
  display: flex; align-items: center; justify-content: center;
}
.pdp__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px; }
.pdp__thumbs > div { aspect-ratio: 1; background: var(--charcoal); cursor: pointer; }
.pdp-thumb {
  aspect-ratio: 1;
  padding: 0;
  background: var(--charcoal);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.4s var(--ease);
  position: relative;
}
.pdp-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.85);
}
.pdp-thumb:hover { border-color: var(--bone); }
.pdp-thumb:hover img { filter: brightness(1); transform: scale(1.05); }
.pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb.active img { filter: brightness(1); }

.pdp__title { margin-top: 8px; }
.pdp__price { font-family: var(--serif); font-size: 28px; color: var(--gold); margin-top: 16px; }
.pdp__rating { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-size: 12px; color: var(--ash); }
.pdp__short { color: var(--ash); margin-top: 24px; line-height: 1.7; max-width: 480px; }

.pdp__variants, .pdp__qty { margin-top: 32px; }
.variant-row { display: flex; gap: 8px; margin-top: 12px; }
.variant {
  width: 48px; height: 48px; border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 500;
  transition: all 0.4s var(--ease);
}
.variant:hover { border-color: var(--bone); }
.variant.active { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Labelled variants (Gold / Silver / Gold + chain etc.) — wider pills */
.variant--label {
  width: auto;
  height: auto;
  min-width: 100px;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.variant-row { flex-wrap: wrap; }

.qty { display: inline-flex; align-items: center; gap: 16px; margin-top: 12px; padding: 8px 16px; border: 1px solid var(--line-strong); }
.qty button { width: 32px; height: 32px; font-size: 18px; color: var(--bone); }
.qty span { min-width: 24px; text-align: center; }

.pdp__ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
@media (min-width: 480px) { .pdp__ctas { flex-direction: row; } }
.pdp__add { flex: 1; }

/* ═══ Delivery estimate banner ═══ */
.pdp__delivery {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px; padding: 16px 18px;
  background: rgba(198,169,114,0.06);
  border: 1px solid rgba(198,169,114,0.25);
}
.pdp__delivery__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.pdp__delivery__icon svg { width: 22px; height: 22px; }
.pdp__delivery__copy { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.pdp__delivery__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--ash); }
.pdp__delivery strong { color: var(--bone); font-size: 14px; font-weight: 500; }

/* ═══ Secure checkout + payment badges ═══ */
.pdp__payments {
  margin-top: 24px;
}
.pdp__payments-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--ash); margin-bottom: 12px;
}
.pdp__payments-label svg { width: 12px; height: 12px; color: var(--gold); }
.pdp__payments-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; width: 50px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.3s var(--ease);
}
.pay-badge:hover { transform: translateY(-1px); }
.pay-badge svg { width: 100%; height: 100%; display: block; }

/* ═══ Money-back guarantee card ═══ */
.pdp__guarantee {
  margin-top: 24px; padding: 18px 20px;
  border: 1px solid rgba(198,169,114,0.4);
  background: linear-gradient(135deg, rgba(198,169,114,0.08), rgba(198,169,114,0.02));
  display: flex; align-items: flex-start; gap: 16px;
}
.pdp__guarantee__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.pdp__guarantee__icon svg { width: 22px; height: 22px; }
.pdp__guarantee__copy { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.pdp__guarantee__copy strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.pdp__guarantee__copy p {
  font-size: 13px; color: var(--ash);
  line-height: 1.5; margin: 0;
}

/* Mobile tightening for PDP trust section */
@media (max-width: 767px) {
  .pdp__delivery { padding: 12px 14px; gap: 10px; margin-top: 24px; }
  .pdp__delivery__icon { width: 24px; height: 24px; }
  .pdp__delivery__icon svg { width: 18px; height: 18px; }
  .pdp__delivery__label { font-size: 9px; letter-spacing: 0.2em; }
  .pdp__delivery strong { font-size: 12px; }
  .pdp__payments { margin-top: 18px; }
  .pdp__payments-label { font-size: 9px; letter-spacing: 0.22em; margin-bottom: 8px; }
  .pdp__payments-row { gap: 4px; }
  .pay-badge { height: 22px; width: 34px; border-radius: 3px; }
  .pdp__guarantee { padding: 12px 14px; gap: 12px; margin-top: 18px; }
  .pdp__guarantee__icon { width: 36px; height: 36px; }
  .pdp__guarantee__icon svg { width: 18px; height: 18px; }
  .pdp__guarantee__copy strong { font-size: 13px; }
  .pdp__guarantee__copy p { font-size: 12px; line-height: 1.4; }
}
@media (max-width: 380px) {
  .pay-badge { height: 20px; width: 30px; }
}

.pdp__trust { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ash); }

.pdp__tabs { margin-top: 48px; border-top: 1px solid var(--line); }
.pdp__tabs details { border-bottom: 1px solid var(--line); }
.pdp__tabs summary {
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.32em; color: var(--bone);
  display: flex; justify-content: space-between; align-items: center;
}
.pdp__tabs summary::-webkit-details-marker { display: none; }
.pdp__tabs summary::after { content: '+'; font-size: 20px; color: var(--gold); }
.pdp__tabs details[open] summary::after { content: '−'; }
.pdp__tabs details > p, .pdp__tabs details > div { padding: 0 0 24px; color: var(--ash); font-size: 14px; line-height: 1.7; }

/* ──────────────── About / Story sections ──────────────── */
.story {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 768px) { .story { grid-template-columns: 1fr 1fr; gap: 80px; } }
.story--reverse .story__media { order: 1; }
@media (min-width: 768px) { .story--reverse .story__media { order: 2; } }
.story__media {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--charcoal), var(--ink));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.story__copy .lead { margin-top: 24px; }

/* ──────────────── CTA strip ──────────────── */
.cta-strip { background: var(--charcoal); padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-strip__inner {
  display: flex; flex-direction: column; gap: 24px;
  align-items: center; text-align: center;
}
@media (min-width: 768px) { .cta-strip__inner { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ──────────────── FAQ ──────────────── */
.faq-wrap { display: flex; flex-direction: column; gap: 64px; max-width: 880px; margin: 0 auto; }
.faq-group .eyebrow { margin-bottom: 24px; color: var(--gold); }
.faq-group details {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-group details:last-child { border-bottom: 1px solid var(--line); }
.faq-group summary {
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--bone);
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::after { content: '+'; color: var(--gold); font-size: 20px; transition: transform 0.3s var(--ease); }
.faq-group details[open] summary::after { transform: rotate(45deg); }
.faq-group details > p { padding: 0 0 24px; color: var(--ash); line-height: 1.7; max-width: 720px; }
.faq-group a { color: var(--gold); }

/* ──────────────── Contact ──────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 96px; } }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 14px 16px;
  font-family: inherit; font-size: 14px;
  color: var(--bone);
  transition: border-color 0.4s var(--ease);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.contact-form button { align-self: flex-start; }

/* ──────────────── Prose (legal / shipping) ──────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 56px 0 16px; color: var(--bone); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ash); line-height: 1.75; margin-bottom: 16px; font-size: 15px; }
.prose ul, .prose ol { color: var(--ash); padding-left: 24px; margin-bottom: 24px; line-height: 1.75; font-size: 15px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold); transition: opacity 0.4s var(--ease); }
.prose a:hover { opacity: 0.7; }
.prose strong { color: var(--bone); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   CRO COMPONENTS — popups, bars, badges, social proof
   ════════════════════════════════════════════════════════════ */

/* Announcement / free shipping bar — fixed at top, stays sticky with nav */
.announce {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 600;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 61;
}
.announce a { text-decoration: underline; }

/* Push nav down to make room for announcement bar (uses dynamic height var set by JS) */
body.has-announce .nav { top: var(--announce-h, 38px); }
body.has-announce .filter-bar { top: calc(64px + var(--announce-h, 38px)); }
@media (min-width: 768px) { body.has-announce .filter-bar { top: calc(80px + var(--announce-h, 38px)); } }
body.has-announce .hero { padding-top: calc(80px + var(--announce-h, 38px)); }
body.has-announce .breadcrumb { padding-top: calc(96px + var(--announce-h, 38px)); }
body.has-announce .page-hero { padding-top: calc(160px + var(--announce-h, 38px)); }
body.has-announce .page-hero--small { padding-top: calc(140px + var(--announce-h, 38px)); }

/* Announce bar stays fixed at top, nav sits permanently below it — no scroll snap needed */

/* Star rating + review count badge on product cards */
.card__rating {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--ash);
}
.card__rating .stars { color: var(--gold); letter-spacing: 0.05em; font-size: 12px; }
.card__rating .count { color: var(--ash); }

/* Bundle / sale badge on cards */
.card__media { position: relative; }
.card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: var(--ink);
  padding: 4px 10px;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.32em; font-weight: 600;
}
.card__badge--save { background: var(--bone); }
.card__badge--new { background: transparent; color: var(--gold); border: 1px solid var(--gold); }

/* Bundle strip on homepage */
.bundle-strip { background: var(--charcoal); padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bundle-strip .center-head { margin-bottom: 48px; }
.bundle-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
  background: var(--ink);
  position: relative;
}
.bundle-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.bundle-card .save-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  padding: 4px 14px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.32em; font-weight: 600;
}
.bundle-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 12px 0 16px; }
.bundle-card p { font-size: 14px; color: var(--ash); line-height: 1.7; margin-bottom: 24px; min-height: 60px; }
.bundle-card .price-row { display: flex; align-items: baseline; gap: 12px; justify-content: center; margin-bottom: 24px; }
.bundle-card .price { font-family: var(--serif); font-size: 28px; color: var(--bone); }
.bundle-card .compare { font-size: 14px; color: var(--ash); text-decoration: line-through; }

/* Trust strip with icons */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: center;
}
@media (min-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-strip__item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ash);
}
.trust-strip__item span { font-size: 18px; color: var(--gold); }
.trust-strip__item strong { color: var(--bone); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; }

/* Social proof toast */
.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  background: rgba(15,15,15,0.95);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  max-width: 320px;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.toast.show { transform: translateY(0); }
.toast__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  flex-shrink: 0;
  background-size: cover; background-position: center;
}
.toast__body { font-size: 12px; color: var(--bone); line-height: 1.4; }
.toast__body strong { color: var(--gold); font-weight: 600; }
.toast__time { font-size: 10px; color: var(--ash); margin-top: 2px; display: block; text-transform: uppercase; letter-spacing: 0.18em; }
.toast__close {
  position: absolute; top: 4px; right: 8px;
  font-size: 14px; color: var(--ash); cursor: pointer; padding: 4px;
}

/* Exit-intent popup */
.popup-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.popup-overlay.show { display: flex; opacity: 1; }
.popup {
  background: var(--ink);
  border: 1px solid var(--gold);
  max-width: 480px; width: 100%;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.popup-overlay.show .popup { transform: scale(1); }
.popup__close {
  position: absolute; top: 12px; right: 16px;
  font-size: 28px; color: var(--ash); cursor: pointer; padding: 8px;
}
.popup .h-section { margin-top: 8px; }
.popup .lead { margin-top: 16px; }
.popup__code {
  margin: 32px auto;
  display: inline-block;
  padding: 14px 32px;
  border: 1px dashed var(--gold);
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
}
.popup .btn { width: 100%; margin-top: 8px; }

/* Sticky mobile add-to-cart */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 12px;
}
.sticky-cta__info { flex: 1; min-width: 0; }
.sticky-cta__title { font-size: 12px; color: var(--bone); font-family: var(--serif); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta__price { font-size: 14px; color: var(--gold); font-weight: 600; }
.sticky-cta .btn { padding: 12px 20px; font-size: 11px; }

@media (max-width: 767px) {
  body.show-sticky-cta .sticky-cta { display: flex; }
  body.show-sticky-cta { padding-bottom: 80px; }
}

/* Urgency badge on PDP */
.urgency {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 8px 14px;
  background: rgba(198,169,114,0.1);
  border: 1px solid rgba(198,169,114,0.3);
  font-size: 12px; color: var(--gold);
  font-weight: 500;
}
.urgency::before {
  content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Frequently bought together */
.fbt { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.fbt h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 24px; }
.fbt-grid { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.fbt-item {
  flex: 1; min-width: 140px;
  border: 1px solid var(--line); padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: border-color 0.4s var(--ease);
}
.fbt-item:hover { border-color: var(--gold); }
.fbt-item input[type=checkbox] { accent-color: var(--gold); }
.fbt-item img { aspect-ratio: 1; object-fit: cover; }
.fbt-item .title { font-family: var(--serif); font-size: 14px; }
.fbt-item .price { font-size: 12px; color: var(--ash); }
.fbt-plus { display: flex; align-items: center; font-size: 24px; color: var(--gold); padding: 0 4px; }
.fbt-total {
  margin-top: 24px;
  padding: 20px;
  background: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.fbt-total__price { font-family: var(--serif); font-size: 22px; color: var(--bone); }
.fbt-total__compare { font-size: 14px; color: var(--ash); text-decoration: line-through; margin-left: 8px; }
.fbt-total__save { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; margin-top: 4px; display: block; }

/* Free shipping progress bar (cart) */
.ship-bar { background: var(--charcoal); padding: 12px 16px; font-size: 12px; color: var(--ash); }
.ship-bar__track { background: rgba(255,255,255,0.08); height: 4px; margin-top: 8px; position: relative; overflow: hidden; }
.ship-bar__fill { background: var(--gold); height: 100%; transition: width 0.6s var(--ease); }

/* ════════════════════════════════════════════════════════════
   MOBILE OVERFLOW FIXES + RESPONSIVE POLISH
   ════════════════════════════════════════════════════════════ */

/* Hard safeguard — nothing on the page is allowed to break out horizontally */
html, body { max-width: 100vw; overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 100%; }
@media (min-width: 1280px) { .container { max-width: 1440px; } }

/* Mobile-only fixes */
@media (max-width: 767px) {
  /* Tighter container padding for narrow screens */
  .container { padding: 0 16px; }

  /* Page hero: less vertical space, smaller display heading */
  .page-hero { padding: 120px 0 56px; }
  body.has-announce .page-hero { padding-top: 158px; }
  .page-hero--small { padding: 110px 0 40px; }
  body.has-announce .page-hero--small { padding-top: 148px; }

  /* PDP — the source of the off-screen overflow */
  .pdp { padding-bottom: 64px; }
  .pdp__grid { gap: 32px; }
  .pdp__info { min-width: 0; max-width: 100%; }
  .pdp__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .pdp__price { font-size: 24px; margin-top: 12px; }
  .pdp__short { font-size: 14px; line-height: 1.6; }

  /* Variant pills — wrap onto multiple rows, never push the layout wider */
  .variant-row {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .variant-row .variant {
    flex: 1 1 calc(50% - 4px) !important;
    min-width: 0 !important;
    max-width: calc(50% - 4px) !important;
    width: auto !important;
    padding: 12px 6px !important;
    font-size: 11px !important;
    height: auto !important;
    min-height: 44px;
    white-space: normal !important;
    text-align: center;
    line-height: 1.25;
    overflow: hidden !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    box-sizing: border-box;
  }

  /* Quantity + CTA stack cleanly */
  .pdp__qty .qty { width: auto; }
  .pdp__ctas { gap: 10px; }
  .pdp__add, .btn--ghost { width: 100%; padding: 16px 20px; font-size: 11px; letter-spacing: 0.24em; }

  /* Frequently bought together — wrap into a 2-col then 1-col layout */
  .fbt { margin-top: 48px; padding-top: 32px; }
  .fbt h3 { font-size: 20px; }
  .fbt-grid { gap: 8px; }
  .fbt-item {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 12px;
  }
  .fbt-item .title { font-size: 13px; }
  .fbt-plus { display: none; }
  .fbt-total { padding: 16px; gap: 12px; }
  .fbt-total > div:first-child { width: 100%; }
  .fbt-total a.btn { width: 100%; }
  .fbt-total__price { font-size: 20px; }

  /* PDP thumbs — smaller, scrollable if too many */
  .pdp__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  /* Trust list */
  .pdp__trust { font-size: 12px; }
  .pdp__trust li { line-height: 1.5; }

  /* Tabs */
  .pdp__tabs summary { font-size: 10px; padding: 18px 0; }
  .pdp__tabs details > p, .pdp__tabs details > div { font-size: 13px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 10px; padding: 88px 0 16px; letter-spacing: 0.24em; }
  body.has-announce .breadcrumb { padding-top: 120px; }

  /* Bundle cards */
  .bundle-strip { padding: 56px 0; }
  .bundle-card { padding: 32px 24px; }
  .bundle-card h3 { font-size: 22px; }
  .bundle-card p { min-height: 0; font-size: 13px; }
  .bundle-card .price { font-size: 22px; }

  /* Section padding tighter */
  .section { padding: 64px 0; }
  .statement { padding: 80px 0; }
  .statement__body { font-size: clamp(1.25rem, 5vw, 1.75rem); padding: 0 8px; }

  /* Section heads stack and align left */
  .section__head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
  .section__head .link-arrow { display: none; }

  /* Trust strip + trust bar */
  .trust-strip__grid { gap: 12px; }
  .trust-strip__item { font-size: 10px; letter-spacing: 0.16em; }
  .trust-bar { padding: 32px 0; }
  .trust-bar__grid strong { font-size: 16px; }

  /* CTA strip */
  .cta-strip { padding: 56px 0; }
  .cta-strip__inner .btn { width: 100%; }

  /* Footer */
  .footer { padding: 56px 0 32px; }
  .footer__grid { gap: 32px; }
  .footer__brand p { max-width: 100%; }

  /* Hero CTAs full-width on small screens */
  .hero__ctas { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero__ctas .btn { width: 100%; }

  /* Story sections (about page) — shorter, less overwhelming on mobile */
  .story { gap: 24px; }
  .story__media {
    aspect-ratio: 4/3;
    max-height: 60vh;
    width: 100%;
  }
  .story__media img { object-position: center 30%; }
  .story--reverse .story__media { order: 0; }
  .story__copy .h-section { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .story__copy .lead { font-size: 14px; line-height: 1.65; }

  /* Card meta tighter */
  .card__meta h3 { font-size: 17px; }
  .card__meta .price { font-size: 13px; }
  .card__rating { font-size: 10px; }

  /* Toast */
  .toast { left: 12px; right: 12px; bottom: 88px; max-width: none; }
  body.show-sticky-cta .toast { bottom: 80px; }

  /* Popup */
  .popup { padding: 40px 24px; }
  .popup .h-section { font-size: 1.6rem; }
  .popup__code { font-size: 16px; padding: 12px 24px; letter-spacing: 0.24em; }

  /* Announcement bar */
  .announce { font-size: 10px; letter-spacing: 0.18em; padding: 8px 12px; }

  /* Forms */
  .signup__form input { padding: 14px 18px; font-size: 13px; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 14px; padding: 12px 14px; }
}

/* Extra-small phones (≤380px) */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .h-display { font-size: clamp(2.25rem, 9vw, 3rem); }
  .pdp__title { font-size: 1.5rem; }
  .variant-row .variant { flex: 1 1 100% !important; }
  .fbt-item { flex: 1 1 100%; }
  .fbt-item img { aspect-ratio: 16/9; object-fit: cover; }
}

/* About page hero with background image */
.page-hero--with-bg {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 200px 0 120px;
}
body.has-announce .page-hero--with-bg { padding-top: 240px; }
@media (max-width: 767px) {
  .page-hero--with-bg { padding: 120px 0 56px; min-height: 60vh; display: flex; align-items: center; }
  body.has-announce .page-hero--with-bg { padding-top: 158px; }
  .page-hero--with-bg .container { width: 100%; }
  .page-hero--with-bg .page-hero__bg { background-position: center 40%; }
}
.page-hero--with-bg .page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.page-hero--with-bg .page-hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
}
.page-hero--with-bg .page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(198,169,114,0.18) 0%, transparent 65%);
}
.page-hero--with-bg .container { position: relative; z-index: 1; }
.page-hero--with-bg .h-display { text-shadow: 0 4px 32px rgba(0,0,0,0.55); }
.page-hero--with-bg .lead { color: rgba(245,243,239,0.9); text-shadow: 0 2px 16px rgba(0,0,0,0.5); }

/* ════════════════════════════════════════════════════════════
   CART DRAWER — slide-out
   ════════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: 100%; max-width: 440px;
  background: var(--ink);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__head h2 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  color: var(--bone);
}
.cart-drawer__count { color: var(--ash); font-size: 16px; margin-left: 4px; }
.cart-drawer__close {
  font-size: 28px; line-height: 1; color: var(--bone);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s var(--ease);
}
.cart-drawer__close:hover { color: var(--gold); }

.cart-drawer__shipping {
  background: var(--gold); color: var(--ink);
  padding: 10px 24px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600;
  text-align: center;
}
.cart-drawer__shipping span { margin-right: 6px; }

.cart-drawer__body {
  flex: 1; overflow-y: auto;
  padding: 24px;
}

.cart-drawer__empty { text-align: center; padding: 40px 0; }
.cart-drawer__empty .h-section,
.cart-drawer__empty h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--bone); margin: 12px 0 16px;
}
.cart-drawer__empty-text {
  font-size: 14px; color: var(--ash); line-height: 1.6;
  margin-bottom: 32px; max-width: 280px; margin-left: auto; margin-right: auto;
}

.cart-lines { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.cart-line {
  display: grid; grid-template-columns: 80px 1fr; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-line:last-child { border-bottom: 0; padding-bottom: 0; }
.cart-line__media {
  aspect-ratio: 1;
  background: var(--charcoal);
  overflow: hidden;
}
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.cart-line__body h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 500;
  color: var(--bone); line-height: 1.3;
}
.cart-line__variant { font-size: 11px; color: var(--ash); text-transform: uppercase; letter-spacing: 0.16em; }
.cart-line__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 4px; }
.cart-line__qty {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
}
.cart-line__qty button {
  width: 22px; height: 22px;
  font-size: 16px; line-height: 1;
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s var(--ease);
}
.cart-line__qty button:hover { color: var(--gold); }
.cart-line__qty span { min-width: 18px; text-align: center; font-size: 13px; color: var(--bone); }
.cart-line__price { font-family: var(--serif); font-size: 16px; color: var(--gold); }
.cart-line__remove {
  align-self: flex-start;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--dim);
  padding: 0; margin-top: 4px;
  transition: color 0.3s var(--ease);
}
.cart-line__remove:hover { color: var(--bone); text-decoration: underline; }

.cart-drawer__foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-drawer__trust {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 10px; color: var(--ash); letter-spacing: 0.04em;
}
.cart-drawer__pay-icons {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cart-drawer__pay-icons span {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ash);
  background: var(--charcoal);
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 600;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 8px;
}
.cart-drawer__subtotal span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ash); }
.cart-drawer__subtotal strong { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--bone); }
.cart-drawer__tax-note { font-size: 11px; color: var(--dim); margin-top: 0; }
.cart-drawer__checkout { width: 100%; margin-top: 8px; padding: 18px 24px; font-size: 12px; }
.cart-drawer__continue {
  text-align: center;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--ash);
  padding: 12px 0;
  transition: color 0.3s var(--ease);
}
.cart-drawer__continue:hover { color: var(--gold); }

@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
  .cart-drawer__head { padding: 20px 16px; }
  .cart-drawer__body { padding: 16px; }
  .cart-drawer__foot { padding: 16px; }
  .cart-line { grid-template-columns: 64px 1fr; gap: 12px; }
  .cart-line__body h4 { font-size: 14px; }
  .cart-line__price { font-size: 14px; }
  .cart-drawer__shipping { font-size: 10px; padding: 8px 16px; }
}


/* ════════════════════════════════════════════════════════════
   MOBILE NAV BAG ICON + MOBILE MENU POLISH
   ════════════════════════════════════════════════════════════ */

/* Mobile bag icon — sits right next to the burger, premium look */
.nav__bag-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px; height: 40px;
  color: var(--bone);
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 4px 0 auto;  /* margin-left:auto pushes bag + burger to the right edge */
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.nav__bag-mobile:hover, .nav__bag-mobile:focus-visible { color: var(--gold); outline: none; }
.nav__bag-mobile svg {
  width: 24px; height: 24px;
  display: block;
}
/* Count badge — gold pill, sits top-right corner of the icon, hidden when 0 */
.bag-mobile-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 0 0 2px var(--ink);  /* dark ring so it pops on any nav background */
  pointer-events: none;
  transform-origin: top right;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.bag-mobile-count.is-empty {
  transform: scale(0);
  opacity: 0;
}
/* Hide mobile bag icon on desktop (desktop has the text bag in .nav__actions) */
@media (min-width: 1024px) { .nav__bag-mobile { display: none; } }

/* ────── Mobile menu polish ────── */

/* Hide the announce bar when mobile menu is open (was overlapping the close X) */
body.mm-open .announce { display: none; }

/* Bump mobile menu z-index above announce + cart drawer overlap concerns */
.mm { z-index: 110; }

/* Bigger menu items as requested */
.mm nav { gap: 36px; }
.mm nav a {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
@media (max-width: 480px) {
  .mm nav { gap: 28px; }
  .mm nav a { font-size: 36px; }
}

/* Close X — bigger + more obvious */
.mm__close {
  font-size: 40px;
  width: 52px; height: 52px;
  top: 16px; right: 16px;
  color: var(--bone);
  transition: color 0.3s var(--ease);
}
.mm__close:hover { color: var(--gold); }

/* "Bag (X)" link in the mobile menu — same size as nav but gold count */
.mm nav .bag-menu-count {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--gold);
  margin-left: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* Bundle Includes ─────────────────────────────────────────────────── */
.bundle-includes {
  margin: 28px 0 8px;
  padding: 18px 20px;
  background: rgba(198, 169, 114, 0.05);
  border: 1px solid rgba(198, 169, 114, 0.22);
  border-radius: 8px;
}
.bundle-includes .eyebrow { margin: 0 0 14px; letter-spacing: 0.18em; }
.bundle-includes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.bundle-includes__item { margin: 0; }
.bundle-includes__link {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 10px; border-radius: 6px;
  text-decoration: none; color: inherit;
  transition: background 0.2s var(--ease);
}
.bundle-includes__link:hover { background: rgba(198, 169, 114, 0.08); }
.bundle-includes__link img {
  width: 52px; height: 52px;
  border-radius: 6px; object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.bundle-includes__copy { flex: 1; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.bundle-includes__title { font-family: var(--serif); font-size: 17px; color: #f4f1ea; line-height: 1.2; }
.bundle-includes__price { font-family: var(--sans); font-size: 13px; color: var(--gold); font-weight: 500; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .bundle-includes { padding: 14px 16px; }
  .bundle-includes__link img { width: 44px; height: 44px; }
  .bundle-includes__title { font-size: 15px; }
}

/* Bible Quote + Customer Reviews ───────────────────────────────────── */
.bible-quote {
  padding: 56px 0;
  text-align: center;
}
.bible-quote .container { max-width: 720px; }
.bible-quote__text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.86);
  letter-spacing: 0.005em;
  margin: 0 0 10px;
}
.bible-quote__ref {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.bible-quote__inline {
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(244, 241, 234, 0.7);
  max-width: 560px;
  line-height: 1.5;
}
.bible-quote__ref-inline {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  vertical-align: middle;
}
@media (max-width: 640px) {
  .bible-quote { padding: 40px 0; }
  .bible-quote__text { font-size: 18px; }
  .bible-quote__inline { font-size: 14px; margin-top: 28px; }
  .bible-quote__ref-inline { display: block; margin: 6px 0 0; }
}

.pdp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pdp-review {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(198, 169, 114, 0.16);
  border-radius: 8px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.pdp-review:hover { border-color: rgba(198, 169, 114, 0.32); transform: translateY(-2px); }
.pdp-review__stars { color: var(--gold); font-size: 14px; letter-spacing: 0.18em; }
.pdp-review__body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: #efece5;
  margin: 0;
  font-style: italic;
}
.pdp-review__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}
.pdp-review__name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #f4f1ea;
}
.pdp-review__verified {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.pdp-review__loc {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted, #9a9a9a);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .pdp-reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .pdp-review { padding: 18px 18px 14px; }
  .pdp-review__body { font-size: 15px; }
}
