@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ============================================================
   SAFFRON DESIGN SYSTEM — TOKENS
   ============================================================ */
:root {
  /* Saffron yellow (accent) */
  --saffron-300:#FFE88A; --saffron-400:#FFDD63; --saffron-500:#FFD23F;
  --saffron-600:#F5C518; --saffron-700:#D9A800;

  /* Ink (dark text + buttons) */
  --ink-900:#1B2235; --ink-800:#232B40; --ink-700:#3A4358;
  --ink-500:#6B7387; --ink-300:#B7BCC9; --ink-100:#E4E6EC;

  /* Cream (page surfaces) */
  --cream-50:#FAF6EC; --cream-100:#F3EEDD; --cream-200:#EAE3CB;

  /* Mint (secondary accent) */
  --mint-200:#DDEDDE; --mint-600:#5A9466;

  /* Charcoal (footer + dark surfaces) */
  --charcoal-800:#22303C;

  --bg:var(--cream-50); --fg:var(--ink-900);
  --border:rgba(27,34,53,.08); --border-strong:rgba(27,34,53,.16);

  --radius-md:14px; --radius-xl:28px; --radius-pill:999px;
  --shadow-sm:0 1px 2px rgba(27,34,53,.06),0 1px 1px rgba(27,34,53,.04);
  --shadow-md:0 6px 16px rgba(27,34,53,.08),0 2px 4px rgba(27,34,53,.05);
  --shadow-lg:0 16px 40px rgba(27,34,53,.12),0 4px 8px rgba(27,34,53,.06);
  --shadow-yellow:0 10px 28px rgba(255,210,63,.45);

  --font-display:"Newsreader","Cormorant Garamond",Georgia,serif;
  --font-sans:"DM Sans",ui-sans-serif,system-ui,sans-serif;
  --font-mono:"JetBrains Mono",ui-monospace,Menlo,monospace;

  --ease:cubic-bezier(.2,.7,.2,1);
  --dur-micro:150ms; --dur-base:220ms;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 16px;
  text-wrap: balance;
  line-height: 1.12;
}
h1 { font-size: clamp(48px, 7.2vw, 96px); line-height: 1.02; }
h2 { font-size: clamp(36px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; }
p { margin: 0 0 16px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
  margin-bottom: 16px;
}
a { color: var(--ink-900); text-decoration: none; transition: background var(--dur-micro) var(--ease); }
.prose a, .blog-post-body a, .legal-body a {
  border-bottom: 2px solid var(--saffron-500);
  padding: 0 2px;
}
.prose a:hover, .blog-post-body a:hover, .legal-body a:hover {
  background: var(--saffron-300);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap, .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section-head, .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head p, .section-header p {
  font-size: 19px;
  color: var(--ink-700);
}
.section-head.light, .section-header.light { color: var(--cream-50); }
.section-head.light h2, .section-head.light p,
.section-header.light h2, .section-header.light p { color: var(--cream-50); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-ink, .btn-pill, .btn-hero-yellow, .btn-hero-ghost, .btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
  cursor: pointer;
}
.btn-ink, .btn-primary {
  background: var(--ink-900);
  color: var(--cream-50);
}
.btn-ink:hover, .btn-primary:hover {
  background: var(--ink-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-pill { border-radius: var(--radius-pill); background: var(--ink-900); color: var(--cream-50); }
.btn-pill:hover { background: var(--ink-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-hero-yellow {
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
  padding: 16px 28px;
}
.btn-hero-yellow:hover { background: var(--saffron-600); transform: translateY(-2px); }
.btn-hero-ghost, .btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 16px 28px;
}
.btn-hero-ghost:hover, .btn-outline:hover {
  background: rgba(27,34,53,0.04);
  border-color: var(--ink-900);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER — STICKY PILL NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 16px;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  padding: 10px 14px 10px 28px;
}
.site-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  white-space: nowrap;
}
.site-brand:hover { background: transparent; }
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 6px 4px;
  transition: color var(--dur-micro) var(--ease);
}
.main-nav a:hover { color: var(--ink-900); background: transparent; }
.header-cta {
  background: var(--ink-900);
  color: var(--cream-50);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.header-cta:hover { background: var(--ink-800); transform: translateY(-1px); }

/* Burger button (mobile only) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--ink-900);
  border: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,34,53,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 24px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream-50);
  letter-spacing: -0.02em;
  padding: 6px 12px;
  border-radius: 8px;
}
.mobile-nav-link:hover {
  background: rgba(255,210,63,0.16);
  color: var(--saffron-300);
}
.mobile-cta {
  margin-top: 16px;
  background: var(--saffron-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.mobile-close:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  text-align: center;
  padding: 72px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,0.32), transparent 70%),
    var(--cream-50);
  overflow: hidden;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 32px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-600);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(90,148,102,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(90,148,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,148,102,0); }
}
.hero h1 { margin-bottom: 24px; }
.hero .swatch {
  display: inline-block;
  background: var(--saffron-500);
  padding: 0 14px;
  border-radius: 12px;
  transform: rotate(-1.5deg);
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-700);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}
.hero-cta-row, .hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-row { gap: 12px; margin-top: 36px; }
.hero-trust   { gap: 14px 22px; margin-top: 24px; font-size: 15px; color: var(--ink-700); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span + span::before {
  content: "·";
  color: var(--ink-300);
  margin-right: 22px;
  font-weight: 700;
}
.hero-trust svg { color: var(--ink-700); flex-shrink: 0; }

/* ============================================================
   SHOP BY COUNTRY
   ============================================================ */
.shop-country { background: var(--cream-50); }
.country-search-wrap {
  max-width: 560px;
  margin: 0 auto 48px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.search-box:focus-within {
  border-color: var(--saffron-500);
  box-shadow: 0 0 0 4px rgba(255,210,63,0.18);
}
.search-box svg { color: var(--ink-500); flex-shrink: 0; }
.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
}
.search-box input::placeholder { color: var(--ink-500); }
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 24px 28px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  overflow: hidden;
}
.country-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--saffron-300), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.country-card:hover::after { opacity: 0.85; }
.country-card[data-featured="true"] {
  background: var(--ink-900);
  color: var(--cream-50);
  border-color: transparent;
}
.country-card[data-featured="true"] .country-info h3 { color: var(--cream-50); }
.country-card[data-featured="true"] .country-info p { color: rgba(250,246,236,0.7); }
.country-card[data-featured="true"] .country-shop-btn {
  background: var(--saffron-500);
  color: var(--ink-900);
}
.country-flag {
  width: 88px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
}
.country-flag svg { width: 100%; height: auto; display: block; }
.country-info { width: 100%; position: relative; z-index: 1; }
.country-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.country-info p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 0;
}
.country-shop-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 12px 26px;
  background: var(--ink-900);
  color: var(--cream-50);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: background var(--dur-base) var(--ease);
}
.country-card:hover .country-shop-btn { background: var(--ink-800); }
.country-no-result {
  text-align: center;
  color: var(--ink-500);
  padding: 32px;
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 14px;
}

/* ============================================================
   BENEFITS / FEATURES GRID
   ============================================================ */
.benefits { background: var(--cream-100); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--saffron-500);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 24px; margin-bottom: 10px; }
.benefit-card p { color: var(--ink-700); font-size: 16px; margin-bottom: 0; }

/* ============================================================
   SOCIAL PROOF / REVIEWS
   ============================================================ */
.reviews { background: var(--cream-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--saffron-600);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-800);
  margin-bottom: 20px;
}
.review-author { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.review-author span {
  display: block;
  font-weight: 400;
  color: var(--ink-500);
  font-size: 13px;
  margin-top: 2px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream-100); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 18px; color: var(--ink-700); margin-bottom: 16px; }
.about-image-col img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FIFI MASCOT (MINT)
   ============================================================ */
.fifi {
  background: var(--mint-200);
  position: relative;
  overflow: hidden;
}
.fifi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27,34,53,0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}
.fifi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fifi-text h2 { margin-bottom: 20px; }
.fifi-text p { font-size: 18px; color: var(--ink-800); margin-bottom: 16px; }
.fifi-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.fifi-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.fifi-images .fifi-main {
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}
.fifi-secondary-imgs { display: contents; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-50); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-strong);
  padding: 8px 0;
}
.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq-item button h3 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  text-align: left;
}
.faq-item .faq-chevron { display: none; }
.faq-item button::after {
  content: "+";
  font-size: 26px;
  color: var(--ink-500);
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open button::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.faq-item.open .faq-answer { max-height: 1200px; }
.faq-answer p {
  padding: 0 0 24px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.65;
}

/* ============================================================
   BUYING GUIDE / COMPANY DETAILS
   ============================================================ */
.buying-guide { background: var(--cream-100); }
.buying-guide .container > p { font-size: 17px; color: var(--ink-700); margin-bottom: 16px; max-width: 820px; }
.buying-guide h3 { margin-top: 32px; }
.company-details { background: var(--cream-50); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.detail-card h3 { font-size: 22px; margin-bottom: 12px; }
.detail-card p { color: var(--ink-700); font-size: 16px; margin-bottom: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream-100); }
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px;
  min-width: 260px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 16px; color: var(--ink-700); }
.contact-card a { border-bottom: 2px solid var(--saffron-500); }
.contact-card a:hover { background: var(--saffron-300); }

/* ============================================================
   FINAL CTA (SAFFRON STRIP)
   ============================================================ */
.final-cta {
  background: var(--saffron-500);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27,34,53,0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--ink-900); margin-bottom: 16px; }
.final-cta p { color: var(--ink-800); font-size: 19px; margin-bottom: 28px; }
.final-cta .btn-primary, .final-cta .btn-ink {
  background: var(--ink-900);
  color: var(--cream-50);
  font-size: 17px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   FOOTER (CHARCOAL)
   ============================================================ */
.site-footer {
  background: var(--charcoal-800);
  color: var(--cream-50);
  padding: 80px 0 40px;
  margin-top: 96px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron-500);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col li,
.footer-col a {
  font-family: var(--font-sans);
  color: rgba(250,246,236,0.85);
  font-size: 15px;
  line-height: 1.65;
}
.footer-col p { color: rgba(250,246,236,0.70); margin-bottom: 8px; }
.footer-col a { transition: color var(--dur-micro) var(--ease); }
.footer-col a:hover { color: var(--saffron-500); background: transparent; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-50);
  margin-top: 16px;
}
.delivery-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p,
.footer-bottom a {
  color: rgba(250,246,236,0.55);
  font-size: 13px;
  margin: 0;
}
.footer-bottom a:hover { color: var(--saffron-500); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   STICKY SHOP-NOW CTA (BOTTOM-RIGHT)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--saffron-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
  text-transform: uppercase;
  transition: transform var(--dur-base) var(--ease);
}
.sticky-cta:hover {
  transform: translateY(-2px);
  background: var(--saffron-600);
}

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.blog-archive-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 80px;
}
.blog-archive-page h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 12px;
}
.blog-archive-page .subtitle {
  color: var(--ink-700);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 640px;
}
#blog-search { max-width: 560px; margin-bottom: 40px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .blog-card-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.blog-card h2,
.blog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.blog-card h2 a,
.blog-card h3 a {
  color: inherit;
}
.blog-card h2 a:hover,
.blog-card h3 a:hover {
  background: transparent;
  color: var(--ink-700);
}
.blog-card p {
  font-size: 15px;
  color: var(--ink-700);
  margin-bottom: 0;
  flex: 1;
}
.blog-no-result {
  text-align: center;
  color: var(--ink-500);
  font-family: var(--font-mono);
  padding: 32px;
  grid-column: 1 / -1;
}

/* ============================================================
   ARTICLE / BLOG POST PAGES
   ============================================================ */
.article-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,0.28), transparent 70%),
    var(--cream-50);
  padding: 56px 0 40px;
  margin-bottom: 32px;
}
.article-hero .wrap { max-width: 760px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-700); }
.breadcrumb a:hover { color: var(--ink-900); background: transparent; }
.breadcrumb .sep { margin: 0 6px; color: var(--ink-300); }
.article-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.article-meta, .post-meta-bar {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-500);
}
.post-meta-bar {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.blog-post-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 24px;
  transition: color var(--dur-micro) var(--ease);
}
.back-to-blog:hover { color: var(--ink-900); background: transparent; }
.blog-post-body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-800);
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin: 48px 0 16px;
}
.blog-post-body h3 {
  font-size: 24px;
  margin: 32px 0 12px;
}
.blog-post-body a {
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
  padding: 0 2px;
}
.blog-post-body a:hover { background: var(--saffron-300); }
.blog-post-body .btn-primary,
.blog-post-body .btn-ink {
  border-bottom: none;
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 14px 24px;
}
.blog-post-body .btn-primary:hover { background: var(--ink-800); }

/* ============================================================
   LEGAL PAGES (privacy / terms / shipping)
   ============================================================ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px 80px;
}
.legal-page h1 {
  font-size: clamp(40px, 5vw, 56px);
  margin-bottom: 28px;
}
.legal-page h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page p, .legal-page li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-800);
  margin-bottom: 14px;
}
.legal-page a {
  color: var(--ink-900);
  border-bottom: 2px solid var(--saffron-500);
}
.legal-page a:hover { background: var(--saffron-300); }
.legal-page ul { margin: 0 0 16px 24px; list-style: disc; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 880px) {
  .site-header { top: 12px; padding: 0 12px; }
  .site-header-inner { padding: 8px 8px 8px 18px; gap: 12px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .site-brand { font-size: 18px; }

  .about-grid, .fifi-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-col, .fifi-images { order: -1; }
  .benefits-grid, .reviews-grid, .details-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }

  .blog-post-page { padding: 0 24px 60px; }
  .article-hero { padding: 48px 0 24px; }
  .legal-page { padding: 60px 24px 60px; }
  .blog-archive-page { padding: 60px 24px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .wrap, .container { padding: 0 20px; }
  .site-brand { font-size: 17px; }
  .country-search-wrap { padding: 0 4px; }
  .search-box { padding: 12px 18px; gap: 10px; }
  .country-grid { grid-template-columns: 1fr; }
  .country-card { padding: 28px 20px 24px; }
  .country-info h3 { font-size: 22px; }
  .hero { padding: 56px 0 72px; }
  .hero-cta-row { gap: 10px; }
  .hero-cta-row .btn-hero-yellow,
  .hero-cta-row .btn-hero-ghost { padding: 14px 22px; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 12px; }
  .final-cta .btn-primary,
  .final-cta .btn-ink { font-size: 15px; padding: 14px 24px; }
}

@media (max-width: 420px) {
  .site-brand { font-size: 16px; }
}

/* ============================================================
   BATHROBE.STORE EXTENSIONS
   ============================================================ */
.blog-card-img {
  display: block;
  margin: -28px -28px 18px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.03); }

.read-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 2px solid var(--saffron-500);
  align-self: flex-start;
}
.read-more:hover { background: rgba(255,210,63,.25); }


.footer-locations li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  opacity: .85;
}

.blog-post-body img {
  border-radius: var(--radius-md);
  margin: 8px auto 24px;
}
.blog-post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15.5px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-post-body th {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
}
.blog-post-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.blog-post-body tr:nth-child(even) td { background: var(--cream-50); }
.blog-post-body blockquote {
  border-left: 3px solid var(--saffron-500);
  background: var(--cream-100);
  padding: 18px 22px;
  margin: 26px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--ink-700);
}

@media (max-width: 720px) {
  .blog-post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
