/* ══════════════════════════════════════════════════════════
   STYLES.CSS — Be Kind Site

   ⚠️  THEME: All colors live in :root below.
       Change the palette by editing ONLY the :root block.
       You should not need to edit any other color in this file.
══════════════════════════════════════════════════════════ */

:root {
  /* ─── BRAND — PURPLE (links, accents, hover states) ─── */
  --brand: #8b5cf6;
  --brand-hover: #7c3aed;
  --brand-dark: #6d28d9;
  --brand-soft: #ede9fe;
  --brand-softer: #f5f3ff;
  --brand-border: #e9d5ff;
  --brand-shadow: rgba(139, 92, 246, 0.15);
  --brand-shadow-strong: rgba(139, 92, 246, 0.3);

  /* ─── ACCENT — PURPLE (deals, urgency) ─── */
  --accent: #a855f7;
  --accent-hover: #9333ea;
  --accent-amber: #c084fc;

  /* ─── SALE — HOT PINK (discount pct) ─── */
  --sale: #ec4899;

  /* ─── BUY — DEEP PURPLE (CTA, trust signals) ─── */
  --buy: #6d28d9;
  --buy-hover: #5b21b6;
  --buy-shadow: rgba(109, 40, 217, 0.25);
  --buy-shadow-strong: rgba(109, 40, 217, 0.35);
  --buy-soft: #f5f3ff;
  --buy-soft-border: #ddd6fe;
  --buy-text-dark: #4c1d95;
  --buy-text-mid: #5b21b6;

  /* ─── DARK / TEXT ─── */
  --dark: #1e1b4b;
  --dark-shadow: rgba(30, 27, 75, 0.06);
  --dark-shadow-md: rgba(30, 27, 75, 0.08);
  --dark-shadow-lg: rgba(30, 27, 75, 0.1);
  --dark-shadow-modal: rgba(30, 27, 75, 0.25);
  --dark-overlay: rgba(30, 27, 75, 0.7);
  --text: #3f3d56;
  --text-muted: #7c6fa0;
  --text-subtle: #999999;
  --text-black: #111111;

  /* ─── SURFACES ─── */
  --surface-white: #ffffff;
  --surface-cream: #fffdf7;
  --surface-soft: #faf5ff;
  --surface-stage: #fafafa;
  --surface-thumb: #fdfdfd;
  --surface-payment: #faf5ff;
  --surface-footer: #1e1b4b;

  /* ─── BORDERS ─── */
  --border: #e9d5ff;
  --border-light: #ede9fe;
  --border-thumb: #dcdcdc;
  --border-stage: #ebebeb;
  --border-divider: #e7e7e7;
  --border-footer: #2e2a5c;

  /* ─── FOOTER ─── */
  --footer-text: #c4b5fd;
  --footer-text-hover: #ffffff;

  /* ─── PAYMENT STRIP ─── */
  --payment-label: #7c6fa0;

  /* ─── SCROLLBAR ─── */
  --scrollbar-track: #f1f5f9;
  --scrollbar-thumb: #8b5cf6;
  --scrollbar-thumb-hover: #7c3aed;

  /* ─── RADIUS ─── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* ─── SHADOWS ─── */
  --shadow-sm: 0 1px 3px var(--dark-shadow);
  --shadow-md: 0 4px 14px var(--dark-shadow-md);
  --shadow-lg: 0 10px 25px var(--dark-shadow-lg);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background-color: var(--surface-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.leaf-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.22em;
  flex-shrink: 0;
  object-fit: contain;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  border: none;
  text-decoration: none;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 8px;
}

.section-header p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--surface-white);
  box-shadow: 0 2px 10px var(--dark-shadow);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-leaf {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.logo-leaf .leaf-icon {
  width: 1.55rem;
  height: 1.55rem;
  vertical-align: middle;
}

.logo-text {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.logo-text-accent {
  color: var(--brand);
  font-weight: 900;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brand);
}

.btn-nav {
  background: var(--brand-softer);
  border: 1.5px solid var(--brand-border);
  color: var(--brand-dark);
  font-size: 0.86rem;
  padding: 7px 14px;
  border-radius: 99px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  user-select: none;
  box-shadow: 0 2px 8px var(--brand-shadow);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn-nav:hover {
  background: var(--brand-soft);
  transform: translateY(-1px);
  text-decoration: none;
}

.price-strikethrough-nav {
  text-decoration: line-through;
  opacity: 0.75;
  margin-right: 4px;
}

/* ══════════════════════════════════════════
   HERO PRODUCT DETAIL
   Grid areas: gallery / cta / info
══════════════════════════════════════════ */
.hero-ecom {
  background: var(--surface-white);
  padding-top: 85px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.hero-ecom-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "gallery info"
    "cta     cta";
  gap: 24px 40px;
  align-items: start;
  min-width: 0;
}

.hero-gallery   { grid-area: gallery; }
.hero-info-col  { grid-area: info; }
.hero-cta       { grid-area: cta; text-align: center; padding-top: 8px; }

.hero-gallery {
  display: flex;
  gap: 16px;
  position: sticky;
  top: 85px;
  min-width: 0;
  width: 100%;
}

.hero-thumbs-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  flex-shrink: 0;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}

.hero-thumbs-col::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.hero-thumbs-col::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 99px;
}

.hero-thumbs-col::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 99px;
}

.hero-thumbs-col::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

.thumb-btn {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1.5px solid var(--border-thumb);
  background: var(--surface-thumb);
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-shadow-strong);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-main-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface-stage);
  border: 1px solid var(--border-stage);
  border-radius: 16px;
  padding: 20px;
  min-height: 420px;
  min-width: 0;
  width: 100%;
  position: relative;
}

.hero-zoom-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 380px;
  border-radius: 10px;
  background: var(--surface-stage);
}

.hero-zoom-container img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.18s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s ease;
  will-change: transform;
  cursor: pointer;
}

.zoom-hint-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 4px var(--dark-shadow);
}

@media (hover: hover) and (min-width: 901px) {
  .hero-zoom-container {
    cursor: crosshair;
  }

  .hero-zoom-container:hover img {
    transform: scale(1.65);
  }

  .hero-zoom-container:hover .zoom-hint-badge {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .zoom-hint-badge {
    display: none;
  }
}

.tap-hint-mobile {
  display: none;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .tap-hint-mobile {
    display: block;
  }
}

/* (stage-breed-pill kept for backwards compatibility — no longer used in HTML) */
.stage-breed-pill {
  margin-top: 14px;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--surface-white) !important;
  background: var(--buy);
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid var(--buy-hover);
  box-shadow: 0 4px 12px var(--buy-shadow);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

.stage-breed-pill:hover {
  background: var(--buy-hover);
  color: var(--surface-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--buy-shadow-strong);
}

.hero-info-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.ecom-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 6px;
}

.ecom-subhead {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.ecom-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ecom-rating-score {
  font-weight: 800;
  color: var(--dark);
}

.ecom-stars {
  color: var(--accent-amber);
  letter-spacing: 1px;
}

.ecom-rating-count {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.ecom-divider {
  border: 0;
  border-top: 1px solid var(--border-divider);
  margin: 4px 0 16px 0;
}

.ecom-deal-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--surface-white);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.ecom-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.ecom-discount-pct {
  color: var(--sale);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.ecom-price-main {
  color: var(--dark);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.ecom-price-main .curr-sym,
.ecom-price-main .curr-cents {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2px;
}

.ecom-typical-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ecom-typical-price strike {
  color: var(--text-muted);
}

.ecom-shipping-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--buy);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.ecom-bullets {
  margin: 8px 0 14px 0;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.ecom-bullets li {
  margin-bottom: 6px;
}

.btn-size-chart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  text-decoration: underline;
  width: fit-content;
  font-family: inherit;
}

.btn-size-chart-trigger:hover {
  color: var(--brand-hover);
}

.ecom-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ecom-buy-btn {
  background: var(--buy);
  color: var(--surface-white) !important;
  font-size: 1.08rem;
  font-weight: 800;
  padding: 15px 20px;
  border-radius: 99px;
  box-shadow: 0 4px 14px var(--buy-shadow-strong);
  width: 100%;
}

.ecom-buy-btn:hover {
  background: var(--buy-hover);
  transform: translateY(-1px);
}

.badge-discount-red {
  display: inline-block;
  background: var(--sale);
  color: var(--surface-white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-right: 4px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  background: var(--surface-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.trust-icon .leaf-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.25;
}

.trust-item small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   LIFESTYLE SPOTLIGHT
══════════════════════════════════════════ */
.lifestyle-section {
  padding: 60px 0 50px;
  background: var(--surface-white);
}

.lifestyle-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.lifestyle-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
  background: var(--brand-softer);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.lifestyle-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-stage);
}

.lifestyle-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 570px;
  object-fit: contain;
  background: var(--surface-stage);
}

.lifestyle-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--dark-overlay);
  color: var(--surface-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.lifestyle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.lifestyle-badge .leaf-icon {
  width: 1.1em;
  height: 1.1em;
}

.lifestyle-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.lifestyle-details p {
  font-size: 0.96rem;
  color: var(--text);
  margin-bottom: 20px;
}

.lifestyle-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.lifestyle-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-section {
  padding: 50px 0 60px;
  background: var(--surface-soft);
  border-top: 1px solid var(--border-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blurb-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.blurb-stars {
  color: var(--accent-amber);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.blurb-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  opacity: 0.9;
}

.blurb-logo .logo-leaf {
  margin-right: 4px;
}

.blurb-logo .logo-leaf .leaf-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.blurb-logo .logo-text {
  font-size: 0.95rem;
  color: var(--dark);
}

.blurb-logo .logo-text strong {
  color: var(--brand);
}

.blurb-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.blurb-card p {
  font-size: 0.91rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blurb-author {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 800;
  border-top: 1px solid var(--border-light);
  width: 100%;
  padding-top: 12px;
  margin-top: auto;
}

/* ══════════════════════════════════════════
   HOW IT WORKS & ECO
══════════════════════════════════════════ */
.how-it-works {
  padding: 60px 0 35px;
  background: var(--surface-soft);
  border-top: 1px solid var(--border-light);
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 36px;
  padding: 0 20px;
}

.step {
  text-align: center;
  padding: 16px;
}

.step-num {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon .leaf-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.step h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--brand-border);
}

.eco-initiative-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--brand-softer) 0%, var(--brand-soft) 100%);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.eco-mascot-wrap {
  flex-shrink: 0;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.eco-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--surface-white);
  border: 3px solid var(--brand);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-avatar img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center center;
}

.eco-badge-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  background: var(--brand);
  border: 2px solid var(--surface-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-white);
  font-size: 0.95rem;
}

.eco-initiative-text h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.eco-initiative-text p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   ORDER CTA
══════════════════════════════════════════ */
.order-section {
  padding: 50px 0;
  background: var(--surface-white);
  border-top: 1px solid var(--border-light);
}

.order-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.order-content {
  background: var(--surface-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.order-badge {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.order-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 6px;
}

.order-summary-box {
  background: var(--surface-cream);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  max-width: 520px;
  margin: 20px auto 24px;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.92rem;
  gap: 10px;
}

.summary-row.total-row {
  padding-top: 10px;
  border-top: 1.5px solid var(--brand-border);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 0;
}

.btn-checkout {
  background: var(--buy);
  color: var(--surface-white) !important;
  font-size: 1.08rem;
  padding: 15px 28px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 4px 14px var(--buy-shadow-strong);
}

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

.checkout-trust {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.checkout-trust .leaf-icon {
  width: 1em;
  height: 1em;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section {
  padding: 60px 0;
  background: var(--surface-soft);
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface-white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--brand-border);
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  gap: 12px;
}

.faq-chevron {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.25s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron,
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(90deg);
  color: var(--brand);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-item.active .faq-a,
.faq-q[aria-expanded="true"] + .faq-a {
  display: block;
}

.faq-guarantee-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-cream);
  border: 1.5px solid var(--brand-border);
  border-radius: 10px;
  padding: 14px 16px;
}

.faq-seal-mini {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  margin: 0 auto;
}

.faq-seal-mini svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px var(--dark-shadow-lg));
}

.btn-faq-contact {
  background: var(--dark);
  color: var(--surface-white) !important;
  font-size: 0.92rem;
  padding: 10px 20px;
  margin-top: 10px;
}

/* ══════════════════════════════════════════
   MODALS
══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark-overlay);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 20px 40px var(--dark-shadow-modal);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(15px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}

.modal-close-btn:hover {
  color: var(--dark);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.unit-toggle-wrap {
  display: inline-flex;
  background: var(--scrollbar-track);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}

.unit-toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s ease;
  font-family: inherit;
}

.unit-toggle-btn.active {
  background: var(--surface-white);
  color: var(--dark);
  box-shadow: 0 1px 3px var(--dark-shadow-lg);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.size-table th {
  border-bottom: 2px solid var(--border-light);
  padding: 10px 8px;
  font-weight: 800;
  color: var(--dark);
}

.size-table td {
  border-bottom: 1px solid var(--scrollbar-track);
  padding: 10px 8px;
  color: var(--text);
}

.size-table tr:hover td {
  background: var(--surface-soft);
}

.size-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.45;
}

.care-instructions-box {
  margin-top: 20px;
  padding: 18px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.care-instructions-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.care-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.45;
}

.care-icon-wrap {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  margin-top: 1px;
}

.care-icon-wrap svg {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--surface-footer);
  color: var(--footer-text);
  padding: 40px 0 24px;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 30px;
}

.footer-brand .logo-leaf .leaf-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.footer-brand-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--footer-text);
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.footer-brand-text-accent {
  color: #ffffff;
  font-weight: 900;
  font-style: italic;
}

.footer-links h4, .footer-payment h4 {
  color: var(--footer-text-hover);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
  color: var(--footer-text);
}

.footer-links a:hover {
  color: var(--footer-text-hover);
}

.payment-strip-img {
  max-width: 260px;
  margin-bottom: 8px;
}

.footer-bottom-legal {
  border-top: 1px solid var(--border-footer);
  padding-top: 20px;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-legal-links a {
  color: var(--footer-text);
}

.footer-legal-links a:hover {
  color: var(--footer-text-hover);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-ecom {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  /* Mobile order: gallery → cta → info */
  .hero-ecom-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "cta"
      "info";
    gap: 20px;
  }

  .hero-gallery {
    flex-direction: column-reverse;
    position: static;
    gap: 12px;
  }

  .hero-thumbs-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-thumbs-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 8px;
    width: 28px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.95));
    pointer-events: none;
  }

  .hero-thumbs-col {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
    gap: 10px;
  }

  .thumb-btn {
    width: 60px;
    height: 60px;
  }

  .thumb-btn.active {
    border-color: var(--border-thumb);
    box-shadow: none;
    background: var(--surface-thumb);
  }

  .hero-main-stage {
    min-height: 280px;
    padding: 16px;
  }

  .hero-zoom-container {
    height: 280px;
  }

  .hero-zoom-container img {
    max-height: 280px;
  }

  .lifestyle-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-connector {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-strip-img {
    margin: 0 auto 8px;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .footer-brand-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .lifestyle-img-wrap img {
    max-height: 400px;
    object-fit: contain;
  }
}

@media (max-width: 650px) {
  html {
    scroll-padding-top: 65px;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .nav-links {
    display: none;
  }

  .logo-text {
    font-size: 0.78rem;
  }

  .btn-nav {
    font-size: 0.78rem;
    padding: 5px 10px;
  }

  .hero-ecom {
    padding-top: 70px;
  }

  .hero-main-stage {
    min-height: 240px;
    padding: 12px;
  }

  .hero-zoom-container {
    height: 50vh;
    max-height: 500px;
    min-height: 280px;
  }

  .hero-zoom-container img {
    max-height: 50vh;
  }

  .ecom-title {
    font-size: 1.4rem;
  }

  .ecom-subhead {
    font-size: 0.88rem;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .trust-item {
    gap: 8px;
  }

  .trust-icon {
    font-size: 1.35rem;
  }

  .trust-item strong {
    font-size: 0.85rem;
  }

  .trust-item small {
    font-size: 0.74rem;
  }

  .eco-initiative-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .faq-guarantee-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .summary-row {
    font-size: 0.85rem;
  }

  .summary-row.total-row {
    font-size: 0.95rem;
    flex-wrap: wrap;
  }

  .order-content {
    padding: 24px 16px;
  }

  .checkout-trust {
    font-size: 0.76rem;
  }

  .lifestyle-img-wrap img {
    max-height: 420px;
    object-fit: contain;
  }

  .footer-brand-text {
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding: 8px 10px;
  }

  .logo-text {
    font-size: 0.72rem;
  }

  .btn-nav {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .price-strikethrough-nav {
    display: none;
  }

  .hero-main-stage {
    min-height: 210px;
  }

  .hero-zoom-container {
    height: 50vh;
    max-height: 450px;
    min-height: 240px;
  }

  .hero-zoom-container img {
    max-height: 50vh;
  }

  .thumb-btn {
    width: 52px;
    height: 52px;
  }

  .lifestyle-img-wrap img {
    max-height: 360px;
    object-fit: contain;
  }

  .footer-brand-text {
    font-size: 0.8rem;
  }
}

/* ══════════════════════════════════════════
   PAYMENT TRUST STRIP
══════════════════════════════════════════ */
.payment-trust-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background-color: var(--surface-payment);
  border-radius: 8px;
}

.trust-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--payment-label);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.payment-icon {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.payment-icon:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

@media (max-width: 650px) {
  .payment-trust-strip {
    padding: 12px;
    gap: 8px;
  }

  .payment-icons {
    gap: 6px;
  }

  .payment-icon {
    width: 30px;
    height: 20px;
  }
}

/* ══════════════════════════════════════════
   ONLY LABEL & STRIKE-THRU
══════════════════════════════════════════ */
.only-label {
  display: inline-block;
  background: var(--accent);
  color: var(--surface-white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
  vertical-align: middle;
}

.ecom-price-row .only-label {
  font-size: 0.9rem;
  padding: 3px 8px;
  align-self: center;
}

.summary-row.total-row .only-label {
  font-size: 0.8rem;
  padding: 2px 6px;
}

.price-strikethrough {
  text-decoration: line-through;
  color: var(--text-subtle);
}

/* ══════════════════════════════════════════
   ACCORDION / DETAILS
══════════════════════════════════════════ */
details {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--surface-white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

details summary {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] summary {
  background: var(--brand-softer);
  border-bottom: 1px solid var(--border-light);
}

details > div {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  background: var(--surface-white);
}

details a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}

#support {
  background: var(--surface-soft);
  padding: 40px 20px;
  border-top: 1px solid var(--border-light);
}

#support .section-header {
  margin-bottom: 24px;
}

#support details {
  max-width: 820px;
  margin: 0 auto 12px;
}

/* ══════════════════════════════════════════
   ACCORDION "READ FULL" LINK
══════════════════════════════════════════ */
.accordion-more-link {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand);
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.18s ease;
}

.accordion-more-link:hover {
  color: var(--brand-hover);
}

/* ══════════════════════════════════════════
   LEGAL DOC STYLES IN MODALS
══════════════════════════════════════════ */
.modal-box.legal-doc {
  max-width: 680px;
  padding: 32px 32px 28px;
}

.modal-box.legal-doc > p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.modal-box.legal-doc h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 22px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}

.modal-box.legal-doc h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin: 18px 0 8px;
}

.modal-box.legal-doc ul {
  margin: 8px 0 16px 22px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text);
}

.modal-box.legal-doc li {
  margin-bottom: 8px;
}

.modal-box.legal-doc a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 650px) {
  .modal-box.legal-doc {
    padding: 24px 20px 20px;
  }
}