/* DELITE LUXURY — Website styles */
:root {
  --gold-1: #d4b16a;
  --gold-2: #b8923e;
  --gold-3: #8c6a24;
  --gold-gradient: linear-gradient(135deg, #e6c78a 0%, #c5a25a 35%, #9e7b2e 100%);
  --ink: #1a1714;
  --ink-soft: #4a4339;
  --cream: #faf7f2;
  --cream-warm: #f3ece0;
  --line: #e8e1d3;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 25px 60px rgba(26, 23, 20, 0.12);
  --radius: 6px;
  --radius-lg: 16px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.35rem; font-weight: 500; }

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(158, 123, 46, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img { width: auto; display: block; }
.nav-d-mark {
  height: 38px;
  object-fit: contain;
}
.nav-wordmark {
  height: 26px;
  object-fit: contain;
  opacity: 0.95;
}
@media (max-width: 560px) {
  .nav-wordmark { display: none; }
  .nav-d-mark { height: 34px; }
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: inline-flex; gap: 0.7rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.4rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-warm);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.2) 0%, rgba(26,23,20,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: var(--cream);
  padding: 4rem 2rem;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-content h1 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p {
  color: rgba(250, 247, 242, 0.88);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- SECTION ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(250,247,242, 0.78); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header p { font-size: 1.08rem; margin-top: 1rem; }

/* ---------- VALUE GRID ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.value {
  text-align: center;
  padding: 2rem 1rem;
}
.value-icon {
  width: 54px; height: 54px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.value h3 { margin-bottom: 0.6rem; }
.value p { font-size: 0.95rem; }

/* ---------- COLLECTION STRIP ---------- */
.collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,23,20,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  color: var(--cream);
}
.collection-card h3 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.collection-card p { color: rgba(250,247,242, 0.85); margin-bottom: 1rem; font-size: 0.95rem; }
.collection-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  transition: transform 0.3s;
}
.collection-card:hover .arrow { transform: translateX(8px); }

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.25rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-warm);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 1.5rem 1.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.product-card-body h3 { font-size: 1.3rem; color: #000; }
.product-card-body .material {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.product-card-body p { font-size: 0.92rem; margin-bottom: 0.25rem; color: #000; }
.swatches { display: flex; gap: 0.45rem; margin-top: 0.2rem; flex-wrap: wrap; }
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  padding: 0;
  background-clip: padding-box;
}
.swatch:hover { transform: scale(1.12); }
.swatch.active {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--gold-2);
}
.selected-color {
  font-size: 0.78rem;
  color: #000;
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
  min-height: 1em;
}
.selected-color strong { color: #000; font-weight: 600; }
.product-card-body .btn {
  margin-top: auto;
  padding: 0.8rem 1.2rem;
  font-size: 0.72rem;
  justify-content: center;
}

/* ---------- FILTERS ---------- */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-pill {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-pill:hover { border-color: var(--gold-2); color: var(--ink); }
.filter-pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- STORY / ABOUT ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-body h2 { margin-bottom: 1.25rem; }
.story-body p { margin-bottom: 1rem; font-size: 1.02rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  padding: 2rem 1.3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: left;
}
.timeline-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 2.3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.timeline-step h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.timeline-step p { font-size: 0.9rem; }

/* ---------- AMAZON CTA BAND ---------- */
.amazon-band {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
}
.amazon-band h2 { color: var(--cream); margin-bottom: 0.75rem; }
.amazon-band p { color: rgba(250,247,242,0.8); max-width: 560px; margin: 0 auto 1.75rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
}
.stars {
  color: var(--gold-2);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(250,247,242,0.8);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.footer-wordmark {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
  filter: brightness(0) invert(70%) sepia(35%) saturate(580%) hue-rotate(5deg) brightness(95%) contrast(88%);
}
.footer p, .footer li { font-size: 0.9rem; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer a { color: rgba(250,247,242,0.78); transition: color 0.2s; }
.footer a:hover { color: var(--gold-1); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.6);
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
  background: var(--cream-warm);
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 0.5rem; }
.page-banner p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- MATERIALS COMPARISON ---------- */
.materials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.material-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.material-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.material-card-img img { width: 100%; height: 100%; object-fit: cover; }
.material-card-body { padding: 2rem; }
.material-card-body h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.material-card-body ul { list-style: none; margin: 1rem 0; }
.material-card-body li {
  padding: 0.5rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.material-card-body li:last-child { border-bottom: 0; }
.material-card-body li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-size: 0.7rem;
  top: 0.85rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold-2);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 1rem; font-size: 0.98rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .collections { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img { aspect-ratio: 5 / 4; }
  .materials { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- MOBILE REFINEMENTS ---------- */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Compact default buttons on mobile */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  /* Slim nav Amazon Store button on mobile */
  .nav { position: sticky; }
  .nav-inner { padding: 0.85rem 1.1rem; gap: 0.5rem; }
  .nav-cta { gap: 0.5rem; align-items: center; }
  .nav-cta .btn-gold {
    padding: 0.5rem 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
    white-space: nowrap;
  }
  .nav-toggle { font-size: 1.25rem; padding: 0.2rem 0.35rem; }

  /* Hero */
  .hero { min-height: 78vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-content p { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.6rem; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* Section spacing */
  .section { padding: 3.25rem 0; }
  .section-header { margin-bottom: 2.25rem; }

  /* Product grid — more compact cards */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-card-body { padding: 1.1rem 1.1rem 1.3rem; }
  .product-card-body h3 { font-size: 1.15rem; }
  .product-card-body .btn {
    padding: 0.7rem 1rem;
    font-size: 0.7rem;
  }

  /* Amazon CTA band — scale down generous padding */
  .amazon-band { padding: 2.5rem 1.25rem; }
  .amazon-band .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.72rem;
    max-width: 100%;
    white-space: normal;
  }

  /* Values stack nicer */
  .values { gap: 1.25rem; }
  .value { padding: 1.25rem 0.5rem; }

  /* Collections */
  .collection-card-overlay { padding: 1.5rem; }
  .collection-card h3 { font-size: 1.5rem; }

  /* Testimonials */
  .testimonial { padding: 1.6rem 1.4rem; }
  .testimonial blockquote { font-size: 1.05rem; }

  /* Footer tighter */
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }

  /* Page banner */
  .page-banner { padding: 3rem 1.25rem 2rem; }

  /* Product tile extra readability */
  .product-card-body .material { color: #000; }
  .product-card-body p, .product-card-body h3, .selected-color, .selected-color strong { color: #000; }
}

@media (max-width: 400px) {
  .nav-cta .btn-gold {
    padding: 0.45rem 0.7rem;
    font-size: 0.58rem;
  }
  .hero-content h1 { font-size: 2.15rem; }
}

/* ---------- LEGAL + LONG-FORM CONTENT ---------- */
.legal-content, .article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
}
.legal-content h2, .article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 3rem 0 1rem;
  color: var(--ink-deep);
}
.legal-content h3, .article-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--ink-deep);
}
.legal-content h4, .article-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink-deep);
}
.legal-content p, .article-content p { margin-bottom: 1.1rem; }
.legal-content ul, .legal-content ol,
.article-content ul, .article-content ol {
  margin: 0 0 1.25rem 1.5rem;
  padding-left: 0.5rem;
}
.legal-content li, .article-content li {
  margin-bottom: 0.5rem;
  list-style-position: outside;
}
.legal-content strong, .article-content strong { font-weight: 600; color: var(--ink-deep); }
.legal-content a, .article-content a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover, .article-content a:hover { color: var(--gold-2); }
.legal-content .updated, .article-content .meta {
  color: rgba(30,27,22,0.6);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  display: block;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.legal-content table th,
.legal-content table td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  text-align: left;
  vertical-align: top;
}
.legal-content table th { background: var(--cream-warm); font-weight: 600; }

/* ---------- ARTICLE (BLOG) HERO + LAYOUT ---------- */
.article-hero {
  background: var(--cream-warm);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.article-hero .eyebrow { margin-bottom: 0.6rem; }
.article-hero h1 {
  max-width: 820px;
  margin: 0 auto 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.article-hero p { max-width: 680px; margin: 0 auto; color: rgba(30,27,22,0.75); }
.article-content blockquote {
  border-left: 3px solid var(--gold-1);
  padding: 0.2rem 0 0.2rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: rgba(30,27,22,0.78);
}
.article-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}
.article-content .tldr {
  background: var(--cream-warm);
  border-left: 3px solid var(--gold-1);
  padding: 1.1rem 1.25rem;
  border-radius: 4px;
  margin: 1.5rem 0 2rem;
}
.article-content .tldr strong { display: block; margin-bottom: 0.35rem; color: var(--gold-2); }
.article-cta {
  background: var(--ink-deep);
  color: var(--cream-warm);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
}
.article-cta h3 { color: var(--cream-warm); margin-bottom: 0.75rem; font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; }
.article-cta p { margin-bottom: 1.25rem; }

/* ---------- JOURNAL INDEX ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}
.journal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30,27,22,0.08);
}
.journal-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.journal-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.journal-card-body .eyebrow { margin-bottom: 0.5rem; }
.journal-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.journal-card-body p { color: rgba(30,27,22,0.7); margin-bottom: 1rem; flex: 1; }
.journal-card-body .read-more {
  color: var(--gold-1);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================= */
/*  STOREFRONT LAYER — cart, PDP, badges, bundles, popups        */
/* ============================================================= */
:root { --ink-deep: #14110e; --gold-1: #d4b16a; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--ink-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 60;
}
.announce strong { color: var(--gold-1); font-weight: 600; }
.announce a { color: var(--gold-1); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- NAV CART + UTILITIES ---------- */
.nav-cart {
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.nav-cart svg { width: 22px; height: 22px; }
.nav-cart [data-cart-count] {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-family: var(--sans);
  letter-spacing: 0;
}
.nav-cart [data-cart-count].is-empty { display: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .lg-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-logo-text .lg-sub {
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 0.1rem;
}

/* ---------- CART DRAWER ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 17, 14, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(20,17,14,0.18);
}
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }
body.cart-open .cart-drawer { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.5rem; }
.cart-close { background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink-soft); line-height: 1; }
.cart-progress { padding: 1rem 1.5rem 0.4rem; }
.cart-progress-msg { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.cart-progress-track { height: 5px; background: var(--cream-warm); border-radius: 999px; overflow: hidden; }
.cart-progress-fill { height: 100%; width: 0; background: var(--gold-gradient); transition: width 0.4s ease; }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty p { margin-bottom: 1.5rem; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-line-img { width: 64px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-line-info { display: flex; flex-direction: column; gap: 0.25rem; }
.cart-line-title { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.cart-line-variant { font-size: 0.78rem; color: var(--ink-soft); }
.cart-line-price { font-weight: 600; font-size: 0.92rem; }
.cart-qty { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.cart-qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: var(--white); border-radius: 4px; cursor: pointer; font-size: 1rem; line-height: 1; color: var(--ink); }
.cart-qty span { min-width: 1.5rem; text-align: center; font-size: 0.9rem; }
.cart-footer { padding: 1.25rem 1.5rem 1.75rem; border-top: 1px solid var(--line); background: var(--white); }
.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 0.4rem; }
.cart-subtotal-row strong { font-family: var(--serif); font-size: 1.4rem; }
.cart-note { font-size: 0.76rem; color: var(--ink-soft); margin-bottom: 1rem; }
.cart-footer .btn { width: 100%; justify-content: center; }

/* ---------- PRICE + RATING ---------- */
.price { display: inline-flex; align-items: baseline; gap: 0.55rem; }
.price .now { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); font-weight: 500; }
.price .was { font-size: 0.95rem; color: var(--ink-soft); text-decoration: line-through; }
.price .save { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8a6a1f; background: #f3e7c9; padding: 0.15rem 0.45rem; border-radius: 4px; }
.rating { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-soft); }
.rating .stars { color: var(--gold-2); letter-spacing: 0.08em; font-size: 0.9rem; margin: 0; }
.rating a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- PRODUCT CARD ADDITIONS ---------- */
.product-card { position: relative; }
.product-card .card-badge {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  background: var(--ink-deep); color: var(--cream);
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 4px; font-weight: 600;
}
.product-card .card-badge.gold { background: var(--gold-gradient); color: #fff; }
.product-card .card-link { display: block; position: relative; }
.product-card .quick-add {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 0.5rem; }
@media (hover: none) { .product-card .quick-add { opacity: 1; transform: none; } }

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; padding: 1.6rem 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; justify-content: center; text-align: left; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold-2); flex-shrink: 0; }
.trust-item span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.3; }
.trust-item strong { color: var(--ink); display: block; font-size: 0.86rem; }
@media (max-width: 760px) { .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem; } }

/* ---------- PDP LAYOUT ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; max-width: 1280px; margin: 0 auto; padding: 2.5rem 2rem 1rem; }
.pdp-gallery { position: sticky; top: 90px; align-self: start; }
.pdp-main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); background: var(--cream-warm); }
.pdp-thumbs { display: flex; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }
.pdp-thumb { width: 68px; height: 84px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: var(--cream-warm); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--gold-2); }
.pdp-info .material { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-3); font-weight: 600; }
.pdp-info h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin: 0.5rem 0 0.75rem; }
.pdp-rating { margin-bottom: 1rem; }
.pdp-price { margin: 1rem 0 0.4rem; }
.pdp-price .now { font-size: 1.7rem; }
.pdp-bnpl { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.pdp-bnpl strong { color: var(--ink); }
.pdp-shortdesc { font-size: 1.02rem; margin-bottom: 1.5rem; }
.pdp-option-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.6rem; display: block; }
.pdp-option-label .val { color: var(--ink); font-weight: 600; }
.pdp-swatches { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pdp-swatches .swatch { width: 34px; height: 34px; }
.size-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.size-opt {
  border: 1px solid var(--line); background: var(--white); border-radius: 6px;
  padding: 0.55rem 0.95rem; font-size: 0.85rem; cursor: pointer; color: var(--ink);
  transition: all 0.2s;
}
.size-opt:hover { border-color: var(--gold-2); }
.size-opt.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pdp-buybox { display: flex; gap: 0.8rem; align-items: stretch; margin-bottom: 1rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.qty-stepper button { width: 42px; border: 0; background: none; font-size: 1.2rem; cursor: pointer; color: var(--ink); }
.qty-stepper input { width: 38px; border: 0; text-align: center; font-size: 1rem; background: none; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-buybox .btn-add { flex: 1; justify-content: center; }
.btn-add.is-loading { opacity: 0.6; pointer-events: none; }
.pdp-reassure { display: flex; flex-direction: column; gap: 0.55rem; margin: 1.25rem 0 1.5rem; padding: 1.1rem 1.25rem; background: var(--cream-warm); border-radius: var(--radius); }
.pdp-reassure div { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--ink); }
.pdp-reassure svg { width: 18px; height: 18px; color: var(--gold-3); flex-shrink: 0; }
.pdp-accordions { margin-top: 0.5rem; }
.pdp-accordions .faq-item summary { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; }
.pdp-accordions .faq-item { padding: 1.1rem 0; }
.pdp-accordions ul { list-style: none; margin-top: 0.75rem; }
.pdp-accordions li { padding: 0.35rem 0 0.35rem 1.3rem; position: relative; font-size: 0.92rem; color: var(--ink-soft); }
.pdp-accordions li::before { content: "◆"; position: absolute; left: 0; color: var(--gold-2); font-size: 0.6rem; top: 0.7rem; }
@media (max-width: 880px) {
  .pdp { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-gallery { position: static; }
}

/* ---------- SCALES (softness / cooling) ---------- */
.scale-row { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 1rem; margin: 0.5rem 0; }
.scale-row .scale-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.scale-dots { display: flex; gap: 0.3rem; }
.scale-dot { width: 100%; height: 6px; border-radius: 999px; background: var(--cream-warm); }
.scale-dot.on { background: var(--gold-gradient); }

/* ---------- STICKY ATC (mobile) ---------- */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem;
  display: none; align-items: center; gap: 0.8rem;
  transform: translateY(100%); transition: transform 0.3s;
}
.sticky-atc.show { transform: translateY(0); }
.sticky-atc .sa-info { flex: 1; min-width: 0; }
.sticky-atc .sa-name { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc .sa-price { font-size: 0.82rem; color: var(--ink-soft); }
.sticky-atc .btn { padding: 0.7rem 1.4rem; }
@media (max-width: 880px) { .sticky-atc { display: flex; } }

/* ---------- BUNDLES ---------- */
.bundle-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.bundle-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--cream-warm); }
.bundle-imgs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.bundle-imgs img:first-child:nth-last-child(3), .bundle-imgs img:first-child:nth-last-child(3) ~ img { aspect-ratio: 1; }
.bundle-body { padding: 2.2rem; display: flex; flex-direction: column; }
.bundle-body h3 { font-size: 1.9rem; margin-bottom: 0.5rem; }
.bundle-includes { list-style: none; margin: 1rem 0; }
.bundle-includes li { padding: 0.3rem 0 0.3rem 1.4rem; position: relative; font-size: 0.92rem; color: var(--ink-soft); }
.bundle-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }
.bundle-price { margin: 0.5rem 0 1.25rem; }
@media (max-width: 760px) { .bundle-card { grid-template-columns: 1fr; } }

/* ---------- COMPARISON TABLE ---------- */
.compare-table { width: 100%; border-collapse: collapse; max-width: 920px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 1rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.compare-table thead th { background: var(--ink-deep); color: var(--cream); font-family: var(--sans); font-weight: 600; letter-spacing: 0.04em; }
.compare-table thead th.col-delite { background: var(--gold-gradient); color: #fff; }
.compare-table tbody th { text-align: left; font-weight: 600; color: var(--ink); font-family: var(--sans); }
.compare-table td.yes { color: #3a7d44; font-weight: 700; }
.compare-table td.no { color: #b14b3f; }
.compare-table tbody tr:nth-child(even) { background: var(--cream); }

/* ---------- EMAIL POPUP ---------- */
.popup-overlay { position: fixed; inset: 0; background: rgba(20,17,14,0.55); z-index: 110; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup { background: var(--cream); border-radius: var(--radius-lg); max-width: 760px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; position: relative; transform: scale(0.96); transition: transform 0.3s; }
.popup-overlay.open .popup { transform: scale(1); }
.popup-img { background-size: cover; background-position: center; min-height: 340px; }
.popup-body { padding: 2.5rem 2.25rem; }
.popup-body .eyebrow { margin-bottom: 0.75rem; }
.popup-body h3 { font-size: 2rem; margin-bottom: 0.6rem; }
.popup-body p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.popup-form { display: flex; flex-direction: column; gap: 0.7rem; }
.popup-form input { padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--sans); }
.popup-form .btn { justify-content: center; }
.popup-close { position: absolute; top: 0.8rem; right: 1rem; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink-soft); z-index: 2; line-height: 1; }
.popup-tiny { font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.6rem; }
@media (max-width: 620px) { .popup { grid-template-columns: 1fr; } .popup-img { display: none; } }

/* ---------- PRESS / AS-SEEN STRIP ---------- */
.press-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 1.5rem 2rem; }
.press-strip span { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.5rem; }
.press-strip span::before { content: "✦"; color: var(--gold-2); }

/* ---------- COLLECTION TOOLBAR ---------- */
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.collection-count { font-size: 0.85rem; color: var(--ink-soft); }
.sort-select { padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); font-size: 0.82rem; font-family: var(--sans); color: var(--ink); cursor: pointer; }

/* ---------- HERO BADGE ROW ---------- */
.hero-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-badges span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,242,0.9); display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-badges span::before { content: "✓"; color: var(--gold-1); font-weight: 700; }

/* ---------- UTIL ---------- */
[hidden] { display: none !important; }
.section-tight { padding: 3rem 0; }
.btn-block { width: 100%; justify-content: center; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ============================================================= */
/*  MOBILE POLISH  (loaded last — wins the cascade)              */
/* ============================================================= */
@media (max-width: 768px) {
  /* The big one: product cards 2-up instead of full-screen each */
  .product-grid { grid-template-columns: 1fr 1fr !important; gap: 0.8rem; }
  .product-card { border-radius: 12px; }
  .product-card-img { aspect-ratio: 4 / 5; }
  .product-card-body { padding: 0.8rem 0.75rem 0.95rem; gap: 0.35rem; }
  .product-card-body .material { font-size: 0.58rem; letter-spacing: 0.12em; }
  .product-card-body h3 { font-size: 0.98rem; line-height: 1.18; }
  .product-card-body p { font-size: 0.8rem; display: none; }   /* drop tagline to keep tiles tight */
  .product-card .rating { font-size: 0.68rem; gap: 0.25rem; }
  .product-card .rating .stars { font-size: 0.74rem; }
  .product-card .price .now { font-size: 1rem; }
  .product-card .price .was { font-size: 0.8rem; }
  .product-card .price .save { display: none; }
  .price-row .btn-ghost { display: none; }                     /* the small "View" crowds 2-up tiles */
  .product-card .quick-add { left: 0.55rem; right: 0.55rem; bottom: 0.55rem; padding: 0.6rem 0.5rem; font-size: 0.6rem; letter-spacing: 0.08em; }
  .product-card .card-badge { top: 0.55rem; left: 0.55rem; font-size: 0.54rem; padding: 0.2rem 0.42rem; }

  /* Home collection cards: cap height so they don't fill the screen */
  .collection-card { aspect-ratio: 3 / 4; }
  .collection-card-overlay { padding: 1.25rem; }
  .collection-card h3 { font-size: 1.45rem; }
  .collection-card p { font-size: 0.85rem; margin-bottom: 0.6rem; }

  /* Story / section images: cap height */
  .story-img { aspect-ratio: 5 / 4; max-height: 60vh; }

  /* Hero: shorter, lighter */
  .hero { min-height: 68vh; }
  .hero-badges { gap: 0.7rem 1rem; margin-top: 1.2rem; }
  .hero-badges span { font-size: 0.6rem; letter-spacing: 0.1em; }

  /* Inline email band: stack the row form */
  .amazon-band .popup-form { flex-direction: column !important; }
}

@media (max-width: 880px) {
  /* PDP: cap the hero image so it doesn't dominate the viewport */
  .pdp { padding: 1.25rem 1rem 0.5rem; gap: 1.5rem; }
  .pdp-main-img { aspect-ratio: 1 / 1; max-height: 56vh; }
  .pdp-thumbs { gap: 0.45rem; }
  .pdp-thumb { width: 52px; height: 62px; }
  .pdp-info h1 { font-size: 1.55rem; }
  .pdp-price .now { font-size: 1.4rem; }
  .pdp-swatches .swatch { width: 30px; height: 30px; }
  .size-opt { padding: 0.5rem 0.8rem; font-size: 0.82rem; }
}

@media (max-width: 760px) {
  /* Bundles: smaller image tiles, not giant squares */
  .bundle-imgs { grid-template-columns: 1fr 1fr; }
  .bundle-imgs img { aspect-ratio: 4 / 3; }
  .bundle-body { padding: 1.5rem 1.4rem; }
  .bundle-body h3 { font-size: 1.55rem; }
}

@media (max-width: 420px) {
  .product-grid { gap: 0.65rem; }
  .product-card-body { padding: 0.7rem 0.65rem 0.85rem; }
  .product-card-body h3 { font-size: 0.92rem; }
  .hero-content h1 { font-size: 2rem; }
}
