:root {
  --bg: #ffffff;
  --bg-alt: #fff8ec;
  --bg-cream: #faf6ee;
  --bg-dark: #1a1a1a;
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --ink-muted: #8a8a8a;
  --border: #e8e2d3;
  --border-strong: #c8bfa8;
  --accent: #ffd566;
  --accent-strong: #f8c84e;
  --success: #2f9d4d;
  --danger: #d04438;
  --display-tracking: -0.01em;
  --container: 1200px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: var(--display-tracking); margin: 0 0 .4em; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-soft { background: var(--bg-cream); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.section-eyebrow { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.link-arrow { font-weight: 700; font-size: .9rem; color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

/* TOPBAR */
.topbar { background: var(--accent); color: var(--ink); font-size: .82rem; font-weight: 600; }
.topbar-inner { display: flex; gap: 24px; padding: 8px 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
@media (max-width: 720px) { .hide-sm { display: none; } }
@media (max-width: 480px) { .hide-md { display: none; } }

/* HEADER */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 1.2rem; letter-spacing: -.02em; }
.logo-mark { font-size: 1.4rem; }
.primary-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.primary-nav a { font-weight: 600; font-size: .95rem; padding: 8px 0; border-bottom: 2px solid transparent; }
.primary-nav a.is-active, .primary-nav a:hover { border-color: var(--ink); }
.header-actions { display: flex; gap: 6px; align-items: center; }
.icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 100px; color: var(--ink); position: relative; }
.icon-btn:hover { background: var(--bg-cream); }
.cart-icon-btn .cart-count { position: absolute; top: 2px; right: 2px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 100px; display: inline-flex; align-items: center; justify-content: center; }

@media (max-width: 800px) {
  .primary-nav { display: none; }
  .header-inner { height: 64px; }
}

.search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 100; display: none; padding: 80px 24px 24px; }
.search-overlay.open { display: block; }
.search-overlay-inner { max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 12px; align-items: center; }
.search-overlay input { flex: 1; border: 0; outline: 0; font-size: 1.1rem; padding: 8px; }
.search-results { max-width: 720px; margin: 12px auto 0; background: #fff; border-radius: var(--radius); max-height: 60vh; overflow: auto; }
.search-result { display: flex; gap: 12px; padding: 10px; align-items: center; border-bottom: 1px solid var(--border); }
.search-result img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, #fff8e3 0%, #fffaf0 35%, #ffffff 80%);
  padding: 96px 0 120px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ''; position: absolute; inset: -20% 60% 40% -10%;
  background: radial-gradient(closest-side, rgba(255, 213, 102, 0.45), transparent);
  z-index: 0; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 30% -10% -20% 60%;
  background: radial-gradient(closest-side, rgba(255, 213, 102, 0.3), transparent);
  z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; background: #fff; color: var(--ink);
  font-size: .8rem; font-weight: 700; padding: 8px 18px; border-radius: 100px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 900;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 24px;
}
.hero-highlight {
  background: linear-gradient(180deg, transparent 65%, var(--accent) 65%, var(--accent) 95%, transparent 95%);
  padding: 0 6px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 36px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 560px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px;
}
.hero-stats > div { display: flex; flex-direction: column; align-items: center; padding: 0 12px; border-right: 1px solid var(--border); }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats strong { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.hero-stats span { font-size: .8rem; color: var(--ink-muted); }
.hero-paws { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-paws span {
  position: absolute; left: var(--x); top: var(--y);
  font-size: 2.5rem; opacity: 0.16;
  transform: rotate(var(--r)) scale(var(--s));
}
@media (max-width: 760px) {
  .hero { padding: 64px 0 80px; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .hero-stats > div { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
  .hero-stats > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-paws span { font-size: 1.8rem; }
}

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; padding: 12px 22px;
  border-radius: 100px; border: 2px solid transparent;
  transition: transform .15s, background .2s;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--ink-soft); }
.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-add { background: var(--ink); color: #fff; padding: 8px 16px; border-radius: 100px; font-weight: 700; font-size: .85rem; }
.btn-add:hover { background: #000; }

/* TRUST STRIP */
.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-grid > div { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.trust-icon { font-size: 1.5rem; }
.trust-grid strong { font-weight: 700; font-size: .95rem; }
.trust-grid span:last-child { font-size: .82rem; color: var(--ink-muted); }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* PRODUCT GRID + CARD */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid--shop { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .product-grid, .product-grid--shop { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid, .product-grid--shop { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.product-card-image { display: block; aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--bg-cream); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-card-title { font-weight: 700; font-size: .95rem; line-height: 1.3; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-short { font-size: .82rem; color: var(--ink-muted); line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.product-card-price { display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.product-card-price > span:first-child { font-weight: 800; font-size: 1.05rem; }
.card-compare { color: var(--ink-muted); text-decoration: line-through; font-size: .85rem; }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }

/* CATEGORY TILES */
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 800px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
.category-tile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; transition: transform .15s; }
.category-tile:hover { transform: translateY(-2px); border-color: var(--ink); }
.category-emoji { font-size: 2rem; }
.category-tile strong { font-weight: 700; font-size: .95rem; }

/* SPOTLIGHT */
.spotlight { background: var(--bg-cream); padding: 80px 0; }
.spotlight-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.spotlight-image { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.spotlight-image img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.spotlight-text p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 14px; }
@media (max-width: 800px) { .spotlight-inner { grid-template-columns: 1fr; gap: 32px; } }

/* VOICES */
.voices { padding: 64px 0; background: #fff; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .voices-grid { grid-template-columns: 1fr; } }
.voice-card { background: var(--bg-cream); padding: 28px; border-radius: var(--radius); margin: 0; }
.voice-stars { color: var(--accent-strong); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 1px; }
.voice-card p { font-style: italic; font-size: 1rem; line-height: 1.6; color: var(--ink); margin-bottom: 12px; }
.voice-card cite { font-style: normal; font-weight: 700; font-size: .9rem; color: var(--ink-soft); }

/* QUIZ STRIP */
.quiz-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .quiz-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .quiz-strip-grid { grid-template-columns: 1fr; } }
.quiz-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; padding: 0 0 20px; transition: transform .15s; display: flex; flex-direction: column; }
.quiz-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.quiz-card-image { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-cream); margin-bottom: 16px; }
.quiz-card-image img { width: 100%; height: 100%; object-fit: cover; }
.quiz-card > * { padding-left: 20px; padding-right: 20px; }
.quiz-card-image { padding: 0; }
.quiz-card-eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.quiz-card h3 { font-size: 1rem; margin-bottom: 8px; }
.quiz-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.quiz-card-cta { font-weight: 700; font-size: .85rem; color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 2px; align-self: flex-start; }

/* BUNDLE GRID */
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .bundle-grid { grid-template-columns: 1fr; } }
.bundle-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; padding: 0 0 24px; transition: transform .15s, border-color .15s; display: flex; flex-direction: column; }
.bundle-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.bundle-card > *:not(.bundle-card-image) { padding-left: 24px; padding-right: 24px; }
.bundle-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-cream); margin-bottom: 20px; }
.bundle-card-image img { width: 100%; height: 100%; object-fit: cover; }
.bundle-card-eyebrow { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-strong); margin-bottom: 8px; background: var(--ink); display: inline-block; padding: 4px 10px; border-radius: 4px; color: var(--accent); }
.bundle-card h3 { font-size: 1.2rem; margin: 12px 0 10px; }
.bundle-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; flex: 1; margin-bottom: 16px; }
.bundle-card-price { display: flex; gap: 12px; align-items: baseline; }
.bundle-was { color: var(--ink-muted); text-decoration: line-through; font-size: 1rem; }
.bundle-now { font-weight: 800; font-size: 1.4rem; }

/* LISTICLE GRID */
.listicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px) { .listicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .listicle-grid { grid-template-columns: 1fr; } }
.listicle-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; padding: 0 0 20px; transition: transform .15s; display: flex; flex-direction: column; }
.listicle-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.listicle-card > *:not(.listicle-card-image) { padding-left: 20px; padding-right: 20px; }
.listicle-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-cream); margin-bottom: 16px; }
.listicle-card-image img { width: 100%; height: 100%; object-fit: cover; }
.listicle-card-eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.listicle-card h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.listicle-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }

/* GUIDE GRID */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .guide-grid { grid-template-columns: 1fr; } }
.guide-card { background: var(--bg-cream); border-radius: var(--radius); overflow: hidden; padding: 0 0 28px; transition: transform .15s; display: flex; flex-direction: column; border: 1px solid var(--border); }
.guide-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.guide-card > *:not(.guide-card-image) { padding-left: 28px; padding-right: 28px; }
.guide-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); margin-bottom: 24px; }
.guide-card-image img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.guide-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.guide-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }

/* FAQ */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 24px; margin-bottom: 12px; }
.faq-item summary { font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--ink-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 12px 0 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }

/* PROMO BAND */
.promo-band { background: var(--ink); color: #fff; padding: 22px 0; }
.promo-band p { margin: 0; text-align: center; font-weight: 700; letter-spacing: .04em; font-size: .92rem; }

/* NEWSLETTER */
.newsletter-band { background: var(--bg-dark); color: #fff; padding: 64px 0; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-trust { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.newsletter-trust > div { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.85); }
.newsletter-band h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; margin-bottom: 12px; }
.newsletter-band p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.newsletter-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--ink); color: rgba(255,255,255,.85); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-contact { font-size: .85rem; line-height: 1.5; }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; gap: 16px; }
.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-methods span { background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 4px; font-size: .8rem; color: rgba(255,255,255,.7); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); font-size: .85rem; }

/* CART DRAWER */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 200; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 420px; max-width: 100%;
  background: #fff; z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%);
  box-shadow: -8px 0 24px rgba(0,0,0,.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-head h3 { margin: 0; font-size: 1.1rem; }
.cart-drawer-progress { padding: 14px 24px; background: var(--bg-cream); font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.cart-progress-bar { height: 6px; background: rgba(0,0,0,.08); border-radius: 100px; overflow: hidden; margin-top: 8px; }
.cart-progress-bar > div { height: 100%; background: var(--accent-strong); transition: width .3s; }
.cart-drawer-body { flex: 1; overflow: auto; padding: 16px 24px; }
.cart-drawer-foot { padding: 20px 24px; border-top: 1px solid var(--border); background: #fff; }
.cart-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-line:last-child { border-bottom: 0; }
.cart-line-image { width: 64px; height: 64px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--bg-cream); }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-weight: 600; font-size: .9rem; line-height: 1.3; margin-bottom: 4px; }
.cart-line-meta { font-size: .82rem; color: var(--ink-muted); margin-bottom: 6px; }
.cart-line-controls { display: flex; align-items: center; gap: 12px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 100px; display: inline-flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--ink); }
.qty-val { font-weight: 700; font-size: .9rem; min-width: 18px; text-align: center; }
.cart-line-remove { font-size: .75rem; color: var(--ink-muted); margin-left: auto; text-decoration: underline; }
.cart-line-price { font-weight: 700; font-size: .92rem; margin-left: 12px; flex-shrink: 0; }
.cart-empty { text-align: center; padding: 48px 16px; color: var(--ink-muted); }
.cart-totals { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cart-totals-row { display: flex; justify-content: space-between; font-size: .9rem; }
.cart-totals-row.total { font-weight: 800; font-size: 1.05rem; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 4px; }
.cart-actions { display: flex; gap: 8px; }
.cart-actions .btn-primary, .cart-actions .btn-secondary { flex: 1; }

/* CART PAGE */
.cart-page { display: grid; grid-template-columns: 1.6fr .9fr; gap: 32px; }
@media (max-width: 800px) { .cart-page { grid-template-columns: 1fr; } }
.cart-page-lines { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-page-line { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; padding: 20px; align-items: center; border-bottom: 1px solid var(--border); }
.cart-page-line:last-child { border-bottom: 0; }
.cart-page-line img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-page-summary { background: var(--bg-cream); border-radius: var(--radius); padding: 24px; height: fit-content; }
.cart-discount-row { display: flex; gap: 8px; margin-bottom: 16px; }
.cart-discount-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: .9rem; outline: 0; }
.cart-discount-row button { padding: 10px 18px; }

/* CHECKOUT */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: flex-start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-left fieldset { border: 0; padding: 24px 0; border-bottom: 1px solid var(--border); margin: 0; }
.checkout-left fieldset:last-of-type { border-bottom: 0; }
.checkout-left legend { font-size: 1.1rem; font-weight: 800; padding: 0; margin-bottom: 16px; }
.checkout-left label { display: block; margin-bottom: 14px; }
.checkout-left label > span { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.checkout-left input, .checkout-left select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: inherit; outline: 0; transition: border-color .15s; background: #fff; }
.checkout-left input:focus, .checkout-left select:focus { border-color: var(--ink); }
.checkout-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.checkout-row > label:first-child { grid-column: 1; }
.checkout-search { position: relative; }
.checkout-search input { padding-right: 40px; }
.addr-icon { position: absolute; right: 14px; top: 36px; color: var(--ink-muted); }
.checkout-pay-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.checkout-pay-tabs button { padding: 12px 20px; border: 2px solid var(--border); border-radius: 8px; font-weight: 700; background: #fff; }
.checkout-pay-tabs button.is-active { border-color: var(--ink); background: var(--bg-cream); }
.checkout-pay-note { font-size: .82rem; color: var(--ink-muted); margin-bottom: 12px; }
.checkout-fine { font-size: .82rem; color: var(--ink-muted); margin-top: 12px; padding: 12px; background: var(--bg-cream); border-radius: 8px; }
.checkout-right { background: var(--bg-cream); border-radius: var(--radius); padding: 24px; position: sticky; top: 96px; }
.checkout-right h3 { font-size: 1.05rem; margin-bottom: 16px; }
.checkout-right .cart-line-image { width: 56px; height: 56px; }
.checkout-right .cart-line { padding: 10px 0; }
.summary-discount-row { display: flex; gap: 8px; margin: 16px 0; }
.summary-discount-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: .9rem; }
.summary-discount-row button { padding: 10px 16px; }
.summary-totals .cart-totals-row { padding: 4px 0; }
.summary-reviews { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.summary-reviews h4 { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.summary-reviews .voice-card { background: #fff; padding: 16px; margin-bottom: 8px; }
.summary-reviews .voice-card p { font-size: .85rem; }
.summary-reviews .voice-card cite { font-size: .8rem; }

/* SUCCESS */
.success-card { max-width: 560px; margin: 64px auto; text-align: center; padding: 48px 24px; background: var(--bg-cream); border-radius: var(--radius-lg); }
.success-icon { width: 64px; height: 64px; background: var(--success); color: #fff; border-radius: 100px; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.success-orderid { font-family: monospace; font-size: .95rem; color: var(--ink-soft); margin: 8px 0 24px; }
.success-orderid strong { color: var(--ink); }
.pay-error { color: var(--danger); font-weight: 600; font-size: .9rem; margin: 8px 0 0; min-height: 1em; }

/* PAGE HERO */
.page-hero { padding: 56px 0 40px; background: var(--bg-cream); border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--ink-soft); margin: 0; }

/* FILTER ROW */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip { padding: 8px 18px; border: 1px solid var(--border); border-radius: 100px; font-weight: 600; font-size: .85rem; background: #fff; }
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* PDP */
.pdp { padding: 56px 0; }
.pdp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
@media (max-width: 800px) { .pdp-inner { grid-template-columns: 1fr; } }
.pdp-main { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--bg-cream); }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumb { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; padding: 0; border: 2px solid transparent; }
.pdp-thumb.is-active { border-color: var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-badge { position: static; display: inline-block; margin-bottom: 12px; }
.pdp h1 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.pdp-price { display: flex; gap: 12px; align-items: baseline; margin: 16px 0; }
.pdp-price > span:first-child { font-weight: 800; font-size: 1.8rem; }
.pdp-compare { color: var(--ink-muted); text-decoration: line-through; font-size: 1.2rem; }
.pdp-short { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; margin-bottom: 24px; }
.pdp-bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.pdp-bullets li { font-size: .92rem; color: var(--ink); }
.pdp-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.pdp-detail { background: var(--bg-cream); border-radius: var(--radius); padding: 16px 20px; }
.pdp-detail summary { font-weight: 700; cursor: pointer; }
.pdp-detail p { margin: 12px 0 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }

/* ARTICLE / GUIDE / LISTICLE / BUNDLE */
.article-hero { padding: 100px 0 80px; color: #fff; background-size: cover; background-position: center; }
.article-hero-inner { text-align: left; max-width: 720px; }
.article-eyebrow { display: inline-block; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); color: #fff; font-size: .75rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.article-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.article-kicker { font-size: 1.1rem; color: rgba(255,255,255,.9); margin: 0; }
.article-body { padding: 64px 24px; max-width: 800px; margin: 0 auto; }
.article-lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 40px; }
.article-closer { font-size: 1.1rem; font-style: italic; padding: 24px; background: var(--bg-cream); border-radius: var(--radius); border-left: 4px solid var(--accent); margin-top: 40px; }
.article-prose h2 { font-size: 1.5rem; margin-top: 36px; }
.article-prose p { font-size: 1rem; line-height: 1.75; color: var(--ink); margin-bottom: 1em; }
.prose-link { color: var(--ink); border-bottom: 2px solid var(--accent); font-weight: 600; }

.pick { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; padding: 32px 0; border-top: 1px solid var(--border); align-items: center; }
@media (max-width: 700px) { .pick { grid-template-columns: 1fr; gap: 20px; } }
.pick-image { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--bg-cream); }
.pick-image img { width: 100%; height: 100%; object-fit: cover; }
.pick-rank { display: inline-block; font-size: .85rem; font-weight: 800; color: var(--accent-strong); background: var(--ink); padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.pick-text h2 { font-size: 1.4rem; margin-bottom: 12px; }
.pick-text p { color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.pick-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pick-price { font-weight: 800; font-size: 1.2rem; }

.bundle-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; background: var(--bg-cream); border-radius: var(--radius); margin-bottom: 32px; flex-wrap: wrap; }
.bundle-summary-price { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.bundle-summary .bundle-now { font-size: 2rem; }
.bundle-save { display: block; flex-basis: 100%; font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }

/* QUIZ APP */
.quiz-body { padding: 48px 0; }
.quiz-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; max-width: 640px; margin: 0 auto; }
.quiz-progress { font-size: .82rem; color: var(--ink-muted); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.quiz-step h2 { font-size: 1.6rem; margin-bottom: 24px; }
.quiz-options { display: grid; grid-template-columns: 1fr; gap: 12px; }
.quiz-option { display: flex; gap: 16px; align-items: center; background: var(--bg-cream); border: 2px solid transparent; border-radius: var(--radius); padding: 16px 20px; font-weight: 600; font-size: 1rem; transition: border-color .15s, background .15s; text-align: left; }
.quiz-option:hover { border-color: var(--ink); }
.quiz-option-emoji { font-size: 1.5rem; }
.quiz-result { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; max-width: 760px; margin: 0 auto; }
.quiz-result h2 { font-size: 1.8rem; margin-bottom: 12px; }
.quiz-result-why { color: var(--ink-soft); margin-bottom: 32px; font-size: 1.05rem; }

/* EMAIL POPUP */
.email-popup-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 300; }
.email-popup-backdrop.open { opacity: 1; pointer-events: auto; }
.email-popup {
  position: fixed; top: 50%; left: 50%; width: 92%; max-width: 440px;
  background: #fff; border-radius: var(--radius-lg); padding: 36px 28px 28px;
  z-index: 301; text-align: center;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow-lg);
}
.email-popup.open { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.email-popup-icon { font-size: 3rem; margin-bottom: 12px; }
.email-popup h3 { font-size: 1.4rem; margin-bottom: 12px; }
.email-popup p { color: var(--ink-soft); font-size: .95rem; }
.code-pill { display: inline-block; background: var(--accent); color: var(--ink); padding: 4px 12px; border-radius: 6px; font-family: monospace; font-size: 1rem; letter-spacing: .04em; }
.email-popup-actions { display: flex; gap: 8px; margin: 20px 0 12px; flex-wrap: wrap; justify-content: center; }
.email-popup-actions button { flex: 1; min-width: 140px; }
.email-popup-fine { font-size: .8rem; color: var(--ink-muted); margin: 0; }
.email-popup-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 100px; font-size: 1.4rem; color: var(--ink-muted); }
.email-popup-close:hover { background: var(--bg-cream); color: var(--ink); }

/* CMS CONTENT */
.cms-content { max-width: 800px; margin: 0 auto; }
.cms-content p { font-size: 1rem; line-height: 1.7; color: var(--ink); margin-bottom: 1em; }
.cms-content h2, .cms-content h3 { margin-top: 32px; margin-bottom: 12px; }
.cms-content ul, .cms-content ol { padding-left: 1.4em; line-height: 1.7; margin-bottom: 1em; }
.cms-content li { margin-bottom: .4em; }
.track-form { max-width: 480px; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.track-form label { display: block; }
.track-form label > span { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 4px; }
.track-form input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .95rem; }
.track-form button { align-self: flex-start; margin-top: 8px; }

@media (max-width: 760px) {
  .section { padding: 48px 0; }
  .topbar { font-size: .78rem; }
  .topbar-inner { gap: 14px; }
  .footer-grid { gap: 24px; }
}
