/* =========================================
   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; }

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: 68px;
  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: 22px;
  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: 68px;
  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; }

/* =========================================
   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: 68px;
    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: 68px;
}

.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;
}

.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;
}

/* 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; }
}