/* ───────── Reset + tokens ───────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FBF7F2;
  color: #2A2422;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ───────── Tokens ───────── */
:root {
  --cream: #FBF7F2;
  --cream-deep: #F3ECE3;
  --paper: #FFFFFF;
  --ink: #2A2422;
  --ink-soft: #6B5E55;
  --ink-faint: #A89C92;
  --rose: #E8B4B8;
  --rose-deep: #C97D81;
  --blue: #B8D4E3;
  --blue-deep: #6FA3BE;
  --sage: #A8C0A0;
  --sage-deep: #6F8E66;
  --gold: #E8C97A;
  --line: rgba(42, 36, 34, 0.10);
  --shadow-sm: 0 2px 8px rgba(42, 36, 34, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 36, 34, 0.08);
  --shadow-lg: 0 20px 60px rgba(42, 36, 34, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
}

/* ───────── Layout ───────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--cream-deep); }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, #FBF7F2 0%, #F8EFE6 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; padding-top: 40px; }
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-title-accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.hero-orb--pink {
  width: 380px; height: 380px;
  background: var(--rose);
  top: -100px; left: -120px;
}
.hero-orb--blue {
  width: 420px; height: 420px;
  background: var(--blue);
  top: 40px; right: -140px;
}
.hero-orb--sage {
  width: 320px; height: 320px;
  background: var(--sage);
  bottom: -120px; left: 30%;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--link {
  padding: 10px 18px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 0.875rem;
}
.btn--link:hover { background: var(--ink); color: var(--cream); }

/* ───────── Country filter ───────── */
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ───────── Product grid ───────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card.is-hidden { display: none; }

.rank-ribbon {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 4;
}

/* ── carousel */
.carousel {
  position: relative;
  background: var(--cream-deep);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--ink);
  z-index: 3;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--ink); color: var(--cream); }
.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 3;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.carousel-dot.is-active { background: var(--ink); width: 18px; border-radius: 4px; }

/* ── card body */
.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.card-tagline {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}
.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.meta-pill {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-weight: 500;
}

/* ── why pick block */
.why-pick {
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.15), rgba(184, 212, 227, 0.15));
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
}
.why-pick strong { color: var(--ink); font-weight: 600; }

/* ── country pricing */
.pricing { margin-bottom: 24px; }
.pricing-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.pricing-row.is-hidden { display: none; }
.pricing-flag { font-size: 1.5rem; line-height: 1; }
.pricing-meat { flex: 1; min-width: 0; }
.pricing-country {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.pricing-bundle {
  font-size: 0.825rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.pricing-store {
  font-size: 0.825rem;
  color: var(--ink-soft);
  margin-top: 8px;
}
.pricing-store a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-faint);
  transition: border-color 0.2s;
}
.pricing-store a:hover { border-color: var(--rose-deep); color: var(--rose-deep); }

/* ── expandable details */
.details-toggle {
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: background 0.2s;
}
.details-toggle:hover { background: rgba(232, 180, 184, 0.25); }
.details-toggle .chev { transition: transform 0.3s; font-size: 0.85rem; }
.details-toggle.is-open .chev { transform: rotate(180deg); }
.details-body {
  display: none;
  padding-top: 20px;
}
.details-body.is-open { display: block; }

.specs-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.spec-key { color: var(--ink-faint); font-weight: 500; }
.spec-val { color: var(--ink); font-weight: 500; }

.pros-cons { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 600px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pro-block, .con-block {
  padding: 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.pro-block { background: rgba(168, 192, 160, 0.15); }
.con-block { background: rgba(232, 180, 184, 0.18); }
.pro-block h4, .con-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pro-block h4 { color: var(--sage-deep); }
.con-block h4 { color: var(--rose-deep); }
.pro-block ul, .con-block ul { list-style: none; }
.pro-block li, .con-block li {
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.5;
}
.pro-block li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-deep); font-weight: 700; }
.con-block li::before { content: '–'; position: absolute; left: 0; color: var(--rose-deep); font-weight: 700; }

.twin-note {
  background: var(--ink);
  color: var(--cream);
  padding: 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}
.twin-note strong { color: var(--gold); }

/* ───────── Comparison table ───────── */
.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table th {
  background: var(--cream);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.compare-table th:first-child { width: 28%; }
.compare-table tbody th {
  background: var(--cream-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.825rem;
  color: var(--ink-soft);
}
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }

/* ───────── Buying guide ───────── */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .guide-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.guide-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 0.2s;
}
.guide-card:hover { transform: translateY(-3px); }
.guide-icon { font-size: 2rem; margin-bottom: 14px; }
.guide-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.guide-body { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

/* ───────── Stores ───────── */
.stores-blocks { display: grid; gap: 48px; }
.stores-block.is-hidden { display: none; }
.stores-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.stores-block-flag { font-size: 2rem; }
.stores-block-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .stores-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .stores-grid { grid-template-columns: 1fr 1fr 1fr; } }
.store-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.store-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.store-pitch { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.55; }
.store-strength {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.store-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.store-link:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

/* ───────── Excluded ───────── */
.excluded-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .excluded-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .excluded-grid { grid-template-columns: 1fr 1fr 1fr; } }
.excluded-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--rose);
}
.excluded-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.excluded-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.55; }
.excluded-card strong { color: var(--rose-deep); }

/* ───────── Footer ───────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.footer-note {
  max-width: 640px;
  margin: 0 auto 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(251, 247, 242, 0.85);
}
.footer-meta {
  font-size: 0.825rem;
  color: rgba(251, 247, 242, 0.5);
}
.footer-meta code {
  background: rgba(251, 247, 242, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Inter', monospace;
  font-size: 0.8rem;
}

/* ───────── Small screens ───────── */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 60px 0 80px; }
  .card-body { padding: 22px; }
  .filter-bar .container { gap: 12px; }
  .filter-label { display: none; }
}
