/* =========================================
   PETTOK SHOP — CSS THEME
   Warm, playful pet store aesthetic
   ========================================= */

:root {
  --bg: #FDF8F3;
  --bg-warm: #FFF5EC;
  --bg-alt: #F7EDE1;
  --fg: #1A1612;
  --fg-muted: #6B5F55;
  --accent: #E8633A;
  --accent-hover: #D4522A;
  --accent-soft: #F5C4A8;
  --accent-glow: rgba(232, 99, 58, 0.12);
  --taupe: #9E8E82;
  --border: #E8D8C8;
  --surface: #FFFFFF;
  --success: #3A9E5C;
  --amber: #E8A030;
}

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

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon { font-size: 24px; }

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 40px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--fg); background: var(--bg-alt); }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 20px;
  background: var(--accent-glow);
  border-radius: 40px;
  border: 1.5px solid var(--accent-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.nav-hamburger { display: none; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232, 99, 58, 0.28); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-large { font-size: 17px; padding: 18px 36px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vh, 100px);
  padding-top: 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 22, 18, 0.58) 0%,
    rgba(26, 22, 18, 0.40) 50%,
    rgba(26, 22, 18, 0.62) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 40px;
  width: fit-content;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6EE7A0;
  box-shadow: 0 0 0 3px rgba(110, 231, 160, 0.25);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(110, 231, 160, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(110, 231, 160, 0.08); }
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-highlight { color: #FFB88C; }

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-sp-item {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

/* =========================================
   CATEGORIES
   ========================================= */
.categories {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 80px);
  background: var(--bg);
}

.categories-inner { max-width: 1200px; margin: 0 auto; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26, 22, 18, 0.1);
}

.cat-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cat-card:hover .cat-img { transform: scale(1.04); }

.cat-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cat-emoji { font-size: 32px; line-height: 1; }

.cat-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.cat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.cat-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  padding-top: 12px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 80px);
  background: var(--bg-warm);
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials .section-header { margin-bottom: 48px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 26px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s;
}

.review-card:hover { box-shadow: 0 12px 32px rgba(26, 22, 18, 0.06); }

.review-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }

.review-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bg-alt);
  flex-wrap: wrap;
}

.review-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.review-pet { font-size: 13px; color: var(--taupe); }

/* =========================================
   TRUST
   ========================================= */
.trust {
  padding: clamp(60px, 10vh, 90px) clamp(20px, 5vw, 80px);
  background: var(--fg);
}

.trust-inner { max-width: 1100px; margin: 0 auto; }

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}

.trust-icon { font-size: 36px; flex-shrink: 0; }

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.trust-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* =========================================
   CTA
   ========================================= */
.cta-section {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 80px);
  background: var(--bg-warm);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-pets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-pet-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.1);
}

.cta-pet-img:first-child { border-radius: 24px; }

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.cta-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--fg); color: #fff; }

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px clamp(20px, 5vw, 80px) 40px; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-logo-icon { font-size: 22px; }

.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); }

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 28px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
}

.footer-social { display: flex; align-items: center; gap: 16px; }

.footer-tiktok {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-tiktok:hover { color: #fff; }

/* =========================================
   NEWSLETTER (footer form + modal)
   ========================================= */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.footer-newsletter {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.footer-newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-newsletter-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-newsletter-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-newsletter-fields {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(180px, 1.4fr) auto;
  gap: 10px;
  align-items: stretch;
}

.footer-newsletter-input { display: flex; }

.footer-newsletter-fields input,
.footer-newsletter-submit {
  height: 44px;
  font-family: inherit;
  font-size: 14px;
}

.footer-newsletter-fields input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.15s, background 0.15s;
}

.footer-newsletter-fields input::placeholder { color: rgba(255,255,255,0.4); }

.footer-newsletter-fields input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.footer-newsletter-submit {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.footer-newsletter-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.footer-newsletter-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.footer-newsletter-status {
  font-size: 13px;
  min-height: 18px;
  color: rgba(255,255,255,0.55);
}
.footer-newsletter-status[data-kind="error"] { color: var(--accent-soft); }
.footer-newsletter-status[data-kind="success"] { color: rgba(140, 220, 180, 0.95); }

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.newsletter-modal[hidden] { display: none; }

.newsletter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.55);
  backdrop-filter: blur(4px);
}

.newsletter-modal-panel {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--surface);
  border-radius: 22px;
  padding: 28px 28px 22px;
  box-shadow: 0 30px 60px rgba(26, 22, 18, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: newsletter-pop 0.18s ease-out;
}

@keyframes newsletter-pop {
  from { transform: translateY(8px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.newsletter-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: transparent;
  border: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.newsletter-modal-close:hover { background: var(--bg-alt); color: var(--fg); }

.newsletter-modal-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.newsletter-modal-copy {
  font-size: 14px;
  color: var(--fg-muted);
}

.newsletter-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.newsletter-modal-field { display: flex; }

.newsletter-modal-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-alt);
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
}

.newsletter-modal-field input::placeholder { color: var(--fg-muted); }

.newsletter-modal-field input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.newsletter-modal-submit {
  height: 46px;
  margin-top: 4px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.newsletter-modal-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.newsletter-modal-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.newsletter-modal-status {
  font-size: 13px;
  min-height: 18px;
  color: var(--fg-muted);
}
.newsletter-modal-status[data-kind="error"] { color: var(--accent-hover); }
.newsletter-modal-status[data-kind="success"] { color: #2E9B69; }

.newsletter-modal-skip {
  align-self: center;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 6px 10px;
  margin-top: 2px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.newsletter-modal-skip:hover { color: var(--fg); background: var(--bg-alt); }

@media (max-width: 640px) {
  .footer-newsletter { padding: 18px 18px; }
  .footer-newsletter-fields {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-newsletter-fields input,
  .footer-newsletter-submit { width: 100%; }
}

@media (max-width: 720px) {
  .newsletter-modal-panel { padding: 22px 20px 18px; border-radius: 18px; }
  .newsletter-modal-title { font-size: 21px; }
}

/* =========================================
   KIDDEE GALLERY
   ========================================= */
.kiddee-gallery {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 80px);
  background: var(--bg-alt);
}

.kg-inner { max-width: 1200px; margin: 0 auto; }

.kg-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.kg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.kg-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kg-img-wrap {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.kg-card:hover .kg-img-wrap {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(26, 22, 18, 0.15);
}

.kg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.kg-card:hover .kg-img { transform: scale(1.06); }

.kg-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kg-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.kg-note {
  font-size: 13px;
  color: var(--fg-muted);
}

.kg-credit {
  font-size: 12px;
  color: var(--taupe);
  text-align: center;
  margin-top: 40px;
  opacity: 0.7;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .kg-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .kg-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-pets { order: -1; }
  .trust-badges { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-top { flex-direction: column; }

  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    margin-left: auto;
  }
  .nav-hamburger:hover { background: var(--bg-alt); }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav panel */
  .nav-mobile-panel {
    display: none;
    position: fixed;
    top: 56px;
    left: 0; right: 0;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px clamp(20px, 4vw, 48px) 20px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile-panel.open { display: flex; }
  .nav-mobile-panel .nav-link {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    display: block;
  }
}

@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .kg-grid { grid-template-columns: 1fr; }
  .hero { align-items: center; }
  .hero-headline { font-size: 38px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

/* =========================================
   INFO PAGES (About, Contact, Shipping, Returns)
   ========================================= */
.info-page {
  padding-top: 56px;
}

.info-hero {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 10vw, 100px) clamp(20px, 4vw, 48px);
}

.info-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.info-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.info-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.info-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.info-body {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 48px);
}

/* About page */
.info-section {
  margin-bottom: 64px;
}

.info-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}

.info-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.2;
}

/* Loyalty page */
.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0 24px;
}

.loyalty-tier-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 24px;
}

.loyalty-tier-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 6px;
}

.loyalty-tier-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.loyalty-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  max-width: 520px;
}

.loyalty-form-input { display: flex; flex: 1 1 260px; min-width: 0; }
.loyalty-form-input input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.loyalty-form-input input::placeholder { color: var(--fg-muted); }
.loyalty-form-input input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.loyalty-form-submit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.loyalty-form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.loyalty-form-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.loyalty-status {
  flex-basis: 100%;
  font-size: 14px;
  margin-top: 4px;
  min-height: 1.2em;
}
.loyalty-status[data-kind="error"]   { color: var(--accent-hover); }
.loyalty-status[data-kind="success"] { color: var(--success); }

.info-text-grid {
  display: grid;
  gap: 20px;
}

.info-text-grid p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
}

.info-text-grid em {
  font-style: italic;
  color: var(--fg);
}

.info-quote {
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 40px clamp(28px, 5vw, 60px);
  margin-bottom: 64px;
}

.info-quote-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.info-quote-mark {
  font-size: 72px;
  line-height: 0.6;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 20px;
}

.info-quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.info-quote-attr {
  font-size: 14px;
  color: var(--fg-muted);
}

.info-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.info-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.info-gallery-caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 20px;
}

.contact-method-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-method-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}

.contact-method-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.contact-method-value:hover { color: var(--accent); }

.contact-method-note {
  font-size: 14px;
  color: var(--fg-muted);
}

.contact-response-info {
  position: sticky;
  top: 88px;
}

.contact-response-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.contact-response-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.contact-response-items {
  display: grid;
  gap: 16px;
}

.contact-response-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-response-badge {
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.contact-response-badge--fast {
  background: #E8F5EC;
  color: var(--success);
}

.contact-response-badge--slow {
  background: #FFF3E0;
  color: #D97706;
}

.contact-response-desc {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Shipping & Returns - shared policy styles */
.policy-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child { border-bottom: none; }

.policy-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
}

.policy-content strong { color: var(--fg); }

.policy-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.policy-content a:hover { text-decoration: underline; }

.policy-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.policy-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.policy-table td {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.policy-table tr:last-child td { border-bottom: none; }

.policy-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--taupe);
  font-style: italic;
}

.policy-cta {
  background: var(--accent-glow);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  margin-top: 16px;
}

.policy-cta p {
  font-size: 16px;
  color: var(--fg-muted);
}

.policy-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.policy-cta a:hover { text-decoration: underline; }

/* Returns page */
.returns-promise {
  background: #E8F5EC;
  border: 1px solid #B9DFC3;
  border-radius: 20px;
  padding: 36px clamp(28px, 5vw, 48px);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 52px;
}

.returns-promise-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.returns-promise-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.returns-promise p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.returns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.returns-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.returns-card--yes { background: #F0FAF3; border-color: #B9DFC3; }
.returns-card--maybe { background: #FFF8EE; border-color: #F3D8A0; }
.returns-card--no { background: #FEF2F2; border-color: #F5B7B1; }

.returns-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.returns-card--yes .returns-card-icon { background: #B9DFC3; color: var(--success); }
.returns-card--maybe .returns-card-icon { background: #F3D8A0; color: #D97706; }
.returns-card--no .returns-card-icon { background: #F5B7B1; color: #DC2626; }

.returns-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}

.returns-card-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.returns-card-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.returns-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

/* FAQ page */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px clamp(18px, 3vw, 24px);
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] { border-color: var(--accent); background: var(--accent-soft); }
.faq-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { text-decoration-thickness: 2px; }

/* Responsive for info pages */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-response-info { position: static; }
  .info-gallery-row { grid-template-columns: repeat(2, 1fr); }
  .returns-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .info-gallery-row { grid-template-columns: 1fr; }
  .contact-method-card { flex-direction: column; gap: 12px; }
  .returns-promise { flex-direction: column; }
  .policy-cta { padding: 20px; }
}
/* =========================================
   CART / ADD-TO-CART
   ========================================= */
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-cart-icon { font-size: 16px; }

.nav-cart-count {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  line-height: 1.45;
}

.btn-add-to-cart {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-add-to-cart--added {
  background: var(--success) !important;
  border-color: var(--success) !important;
  transition: background 0.15s ease;
}

.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 64px) 56px;
  background: var(--bg);
  min-height: 70vh;
}

.cart-header {
  text-align: center;
  margin-bottom: 32px;
}

.cart-header .section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.cart-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
}

.cart-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: 24px;
}

.cart-empty-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.cart-empty-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.cart-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 16px 18px;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-warm);
}

.cart-table tbody td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-table tbody tr:last-child td { border-bottom: none; }

.cart-col-img { width: 80px; }

.cart-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.cart-name-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.cart-name-link:hover { color: var(--accent); }

.cart-cat {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: capitalize;
}

.cart-col-price,
.cart-col-total {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s;
}

.qty-btn:hover,
.qty-btn:active,
.qty-btn:focus-visible { background: var(--bg-alt); outline: none; }

.qty-input {
  width: 38px;
  border: none;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  color: var(--fg);
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  padding: 0 14px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  align-self: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cart-remove-icon { font-size: 18px; line-height: 1; }

.cart-remove-btn:hover,
.cart-remove-btn:active,
.cart-remove-btn:focus-visible {
  background: var(--bg-alt);
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.cart-summary {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Space Grotesk', sans-serif;
}

.cart-summary-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
}

.cart-summary-total {
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}

.cart-summary-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin: -2px 0 0;
}

/* CART FREE-SHIPPING PROGRESS BAR */
.cart-free-ship {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-free-ship-message {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
}

.cart-free-ship-track {
  height: 8px;
  width: 100%;
  background: var(--bg-warm);
  border-radius: 999px;
  overflow: hidden;
}

.cart-free-ship-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.cart-free-ship--qualified .cart-free-ship-message { color: var(--success); }
.cart-free-ship--qualified .cart-free-ship-fill { background: var(--success); }

/* CART CROSS-SELL */
.cart-recommendations {
  margin-top: 36px;
  padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 80px);
  background: var(--bg);
  border-radius: 24px;
}

.cart-recommendations-inner { max-width: 1200px; margin: 0 auto; }

.cart-recommendations .section-header {
  text-align: center;
  margin-bottom: 16px;
}

.cart-recommendations .section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.cart-rec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin: 0;
}

.cart-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cart-rec-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.cart-rec-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cart-rec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 22, 18, 0.08);
}

.cart-rec-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}

.cart-rec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cart-rec-card:hover .cart-rec-img { transform: scale(1.04); }

.cart-rec-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-rec-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
}

.cart-rec-price {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.cart-rec-btn {
  margin-top: 4px;
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cart-rec-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* "Complete the bundle" cross-sell block — visual sibling of .cart-recommendations,
   reuses the same tile vocabulary so the two sections read as a pair. */
.cart-bundle {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 clamp(20px, 5vw, 80px);
}

.cart-bundle-inner { max-width: 1200px; margin: 0 auto; }

.cart-bundle .section-header {
  text-align: left;
  margin-bottom: 8px;
}

.cart-bundle .section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.cart-bundle-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
  margin: 0 0 8px;
}

.cart-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.cart-bundle-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.cart-bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 22, 18, 0.08);
}

.cart-bundle-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cart-bundle-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}

.cart-bundle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cart-bundle-card:hover .cart-bundle-img { transform: scale(1.04); }

.cart-bundle-info {
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-bundle-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
}

.cart-bundle-price {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.cart-bundle-btn {
  margin: 4px 14px 14px;
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cart-bundle-btn:hover {
  background: var(--accent);
  color: #fff;
}

.cart-summary-shipping-link {
  font-size: 0.85rem;
  margin: -0.5rem 0 0.75rem;
}

.cart-summary-shipping-link a {
  color: var(--accent);
  text-decoration: underline;
}

.cart-checkout-btn {
  align-self: flex-start;
  min-width: 220px;
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cart-checkout-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

.cart-checkout-btn--loading {
  opacity: 0.7;
  pointer-events: none;
}

/* CART NEWSLETTER STRIP — single-field first-order 10%-off capture rendered
   above the existing email-for-order-row in views/cart.ejs. Tinted left edge
   keeps it readable as a distinct callout from the rest of the summary. */
.cart-newsletter-strip {
  margin: -2px 0 6px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-newsletter-strip[hidden] { display: none; }

.cart-newsletter-copy {
  margin: 0;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.cart-newsletter-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.cart-newsletter-input {
  flex: 1 1 240px;
  min-width: 0;
  display: flex;
}

.cart-newsletter-input input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg-alt);
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  transition: border-color 0.15s, background 0.15s;
}
.cart-newsletter-input input::placeholder { color: var(--fg-muted); }
.cart-newsletter-input input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.cart-newsletter-submit {
  height: 42px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cart-newsletter-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.cart-newsletter-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.cart-newsletter-status {
  font-size: 13px;
  min-height: 18px;
  color: var(--fg-muted);
}
.cart-newsletter-status[data-kind="error"] { color: var(--accent-hover); }
.cart-newsletter-status[data-kind="success"] { color: var(--success); }

.cart-newsletter-fineprint {
  margin: 0;
  font-size: 13px;
  color: var(--fg-muted);
}
.cart-newsletter-fineprint code {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--fg);
  background: var(--bg-warm);
  border: 1px dashed var(--accent-soft);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .cart-newsletter-form { flex-direction: column; }
  .cart-newsletter-input,
  .cart-newsletter-submit { width: 100%; }
}

.cart-continue-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 600;
}

.cart-continue-link:hover { color: var(--accent); }

.cart-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(232, 99, 58, 0.08);
  color: var(--accent-hover);
  border: 1px solid rgba(232, 99, 58, 0.25);
  border-radius: 12px;
  font-size: 14px;
}

/* Inline Stripe state chip rendered in cart-summary so the user sees
   the live account state without scrolling to the top site-banner. */
.cart-stripe-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--bg-warm);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.cart-stripe-chip--live { color: #1f9d55; background: rgba(31, 157, 85, 0.08); border-color: rgba(31, 157, 85, 0.25); }
.cart-stripe-chip--test { color: #b5770c; background: rgba(232, 167, 35, 0.10); border-color: rgba(232, 167, 35, 0.30); }
.cart-stripe-chip--error { color: var(--accent-hover); background: rgba(232, 99, 58, 0.08); border-color: rgba(232, 99, 58, 0.25); }

.cart-retrieve-error {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cart-retry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 40px;
  cursor: pointer;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: background 0.2s, color 0.2s;
}
.cart-retry-btn:hover { background: var(--accent); color: #fff; }

/* SITE BANNER — server-rendered truth about Stripe state. Driven by
   lib/stripe-status.js via views/partials/site-banner.ejs. Inserted by
   layout.ejs and cart.ejs so every page that can lead to checkout reflects
   the real Stripe API state, not a stale prefix-based heuristic. */
.site-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  /* 72px = 56px fixed-nav height + a little breathing room so the banner
     sits in-page, not under the floating nav. */
  margin: 72px auto 14px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.site-banner--live {
  background: #1f9d55;
  color: #ffffff;
  border: 1px solid #178244;
}

.site-banner--test {
  background: #e08502;
  color: #1a1300;
  border: 1px solid #b96a02;
}

.site-banner--error {
  background: #c0392b;
  color: #ffffff;
  border: 1px solid #962c20;
}

/* CHECKOUT TRUST STRIP */
.checkout-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px dashed var(--border);
}

.checkout-trust-blurb {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-trust-lock {
  width: 14px;
  height: 14px;
  color: var(--success);
  flex-shrink: 0;
}

.checkout-trust-cards {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-trust-card {
  height: 22px;
  min-width: 38px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--fg-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-trust-card-svg { display: none; }

.checkout-trust--inline {
  flex-direction: row;
  gap: 10px;
  border-top: none;
  padding: 0;
  margin: 0;
}

/* =========================================
   SOCIAL PROOF
   ========================================= */
.socialproof {
  padding: clamp(32px, 5vh, 56px) clamp(20px, 5vw, 80px);
  background: var(--bg-alt);
}

.socialproof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.socialproof .section-header {
  margin-bottom: 32px;
}

.socialproof-handles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.socialproof-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 12px 22px;
  border-radius: 40px;
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.socialproof-tiktok svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--fg);
  flex-shrink: 0;
}

.socialproof-tiktok:hover {
  background: var(--bg-warm);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .socialproof-tiktok {
    font-size: 14px;
    padding: 10px 18px;
  }
  .socialproof-strip { gap: 10px 18px; }
  .socialproof-strip li { font-size: 13px; }
}

/* Editable quiet strip driven by storefront_content table */
.socialproof-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
  text-align: center;
}
.socialproof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.socialproof-strip li {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}
.socialproof-strip a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.socialproof-strip a:hover { color: var(--fg); }
.socialproof-quote { font-style: italic; }
.socialproof-attribution {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: var(--taupe);
}

@media (max-width: 720px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    border-bottom: 1.5px solid var(--border);
    padding: 14px 0;
  }
  .cart-table td {
    padding: 8px 18px;
    border: none;
  }
  .cart-col-img, .cart-col-remove { display: inline-block; width: auto; }
  .cart-col-remove { float: none; display: flex; justify-content: flex-end; margin-top: 6px; }
  .cart-col-total { font-weight: 700; }
  .checkout-trust-cards { flex-wrap: wrap; justify-content: center; }
  .cart-rec-grid { grid-template-columns: repeat(2, 1fr); }
  /* Cart checkout button is too tall/wide under ~720px (Galaxy A16 ~360 CSS
     px), pushing into cart-recommendations below. Bring it back to .btn-primary
     sizing and drop the 220px min-width so it stays content-sized, then pad
     the recommendations section so it doesn't visually clip. */
  .cart-checkout-btn {
    min-width: 0;
    width: auto;
    font-size: 15px;
    padding: 14px 24px;
    align-self: flex-start;
  }
  /* Lift cart-page below the 56px fixed nav so the h1 "Your cart" header is
     not clipped on portrait phones. 64 = 56 nav + 8 gutter; the site-banner
     sits above this with its own 84px top-margin (see SITE BANNER block). */
  .cart-page { padding-top: 64px; }
  .cart-recommendations { margin-top: 32px; padding: clamp(20px, 4vh, 32px) clamp(20px, 5vw, 64px); }
}

@media (max-width: 600px) {
  .cart-rec-grid { grid-template-columns: 1fr; }
  .cart-bundle-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cart-recommendations { padding: clamp(36px, 7vh, 64px) clamp(20px, 5vw, 80px); }
  .cart-rec-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: clamp(-20px, -5vw, -80px);
    margin-right: clamp(-20px, -5vw, -80px);
    scrollbar-width: none;
  }
  .cart-rec-grid::-webkit-scrollbar { display: none; }
  .cart-rec-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }
  .cart-bundle-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: clamp(-20px, -5vw, -80px);
    margin-right: clamp(-20px, -5vw, -80px);
    scrollbar-width: none;
  }
  .cart-bundle-grid::-webkit-scrollbar { display: none; }
  .cart-bundle-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }
  .cart-remove-label { display: none; }
  .loyalty-tiers { grid-template-columns: 1fr; }
}

/* ─── Stripe verification dashboard widget (/dashboard) ────────────────────── */

.dashboard-header {
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
}

.dashboard-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--fg);
}

.dashboard-last-checked {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0;
}

.dashboard-cache-note {
  color: var(--fg);
  opacity: 0.6;
  margin-left: 0.4rem;
}

.stripe-status-widget {
  max-width: 640px;
  margin: 1rem auto 3rem;
  padding: 1.75rem;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 14, 8, 0.08);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stripe-status-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.stripe-status-badge--restricted {
  background: #FDECEC;
  color: #B23A3A;
  border: 1.5px solid #F4C2C2;
}

.stripe-status-badge--pending {
  background: #FFF4DC;
  color: #8A6312;
  border: 1.5px solid #F2D78A;
}

.stripe-status-badge--active {
  background: #E6F7E9;
  color: #2A7A3A;
  border: 1.5px solid #B6E1BF;
}

.stripe-banner-detail {
  font-size: 0.95rem;
  color: var(--fg);
  opacity: 0.85;
  margin: -0.25rem 0 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border-radius: 8px;
}

.stripe-checklist-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--fg);
}

.stripe-checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.stripe-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  margin: 0 0 0.35rem;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 0.95rem;
}

.stripe-checklist-item code {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--surface);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--accent);
}

.stripe-checklist-item--blocked {
  background: #FDECEC;
  border-left: 3px solid #B23A3A;
  color: #B23A3A;
}

.stripe-checklist-item--articles {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  font-size: 1rem;
}

.stripe-checklist-item--articles.stripe-checklist-item--blocked {
  background: #FDECEC;
  border-left: 3px solid #B23A3A;
}

.stripe-checklist-item--cleared {
  background: #E6F7E9;
  border-left: 3px solid #2A7A3A;
  color: #2A7A3A;
}

.stripe-account-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.9rem;
}

.stripe-account-meta dt {
  font-weight: 600;
  color: var(--fg);
  opacity: 0.7;
}

.stripe-account-meta dd {
  margin: 0;
  color: var(--fg);
}

.stripe-account-meta code {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--surface);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.stripe-account-meta-row--warning {
  color: #8A6312;
  font-weight: 600;
}

.stripe-cta {
  text-align: center;
  margin: 0;
}

@media (max-width: 600px) {
  .stripe-status-widget {
    margin: 1rem;
    padding: 1.25rem;
  }
  .dashboard-header h1 {
    font-size: 1.4rem;
  }
}
