/* ═══════════════════════════════════════════════════════════════
   FIZZ 8FNUZ – Main Stylesheet
   Warm coral/orange + white, clean, conversion-focused
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --fizz-orange:    #FF5A00;
  --fizz-orange-lt: #FF7A30;
  --fizz-orange-bg: #FFF3EC;
  --fizz-coral:     #FF4545;
  --fizz-teal:      #00B8A9;
  --fizz-teal-lt:   #E0F7F5;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #FAF9F7;
  --grey-50:        #F5F5F5;
  --grey-100:       #EBEBEB;
  --grey-200:       #D4D4D4;
  --grey-400:       #9CA3AF;
  --grey-600:       #6B7280;
  --grey-800:       #1F2937;
  --grey-900:       #111827;

  /* Status */
  --green:          #16A34A;
  --green-lt:       #DCFCE7;
  --red:            #DC2626;
  --yellow:         #F59E0B;

  /* Typography */
  --font-display:   'Sora', 'Inter', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-6: 1.5rem;   --space-8: 2rem;
  --space-10: 2.5rem;  --space-12: 3rem;    --space-16: 4rem;
  --space-20: 5rem;    --space-24: 6rem;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.13);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.16);
  --shadow-orange: 0 4px 20px rgba(255,90,0,.30);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  200ms;

  /* Layout */
  --container-max: 1200px;
  --container-pad: var(--space-6);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fizz-orange); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--fizz-orange-lt); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: var(--space-4);
  background: var(--fizz-orange); color: var(--white);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: var(--space-2); }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* ── Notification bar ────────────────────────────────────────── */
.notif-bar {
  background: linear-gradient(90deg, var(--fizz-orange), var(--fizz-coral));
  color: var(--white);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}
.notif-icon { font-size: var(--text-base); }
.notif-close {
  position: absolute; right: var(--space-4);
  color: rgba(255,255,255,.8); font-size: var(--text-lg);
  padding: 0 var(--space-2); transition: color var(--dur);
}
.notif-close:hover { color: var(--white); }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: var(--space-6);
  padding-block: var(--space-4);
}
.site-logo {
  display: flex; align-items: center; gap: var(--space-2);
  color: var(--grey-900); font-weight: 800;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  white-space: nowrap;
  text-decoration: none;
}
.logo-icon { font-size: 1.4rem; }
.logo-code {
  background: var(--fizz-orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0 5px;
  margin-left: 3px;
  font-size: 0.9em;
}

/* ── Site Nav ────────────────────────────────────────────────── */
.site-nav { flex: 1; }
.site-nav ul {
  display: flex; align-items: center; gap: var(--space-1);
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--grey-600);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--fizz-orange);
  background: var(--fizz-orange-bg);
}
/* Provinces parent link: only active when on provinces/province pages */
.site-nav .has-dropdown > a.active {
  color: var(--fizz-orange);
  background: var(--fizz-orange-bg);
}

/* Dropdown – single column, clean */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  min-width: 230px;
  width: max-content;
  z-index: 300;
  padding: var(--space-2) 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; animation: dropIn .14s ease; }
@keyframes dropIn { from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)} }
.dropdown li { display: block; width: 100%; }
.dropdown li a {
  display: block;
  padding: 0.55rem var(--space-5);
  color: var(--grey-700);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.dropdown li a:hover,
.dropdown li a.active {
  background: var(--fizz-orange-bg);
  color: var(--fizz-orange);
  border-left-color: var(--fizz-orange);
}
.dropdown-arrow {
  font-size: 0.65em;
  display: inline-block;
  transition: transform var(--dur);
  margin-left: 2px;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow { transform: rotate(180deg); }

/* Header controls */
.header-controls {
  display: flex; align-items: center; gap: var(--space-3);
  margin-left: auto;
}
.lang-toggle {
  display: flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--grey-600); padding: var(--space-1) var(--space-3);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-full);
  transition: all var(--dur);
}
.lang-toggle:hover { border-color: var(--fizz-orange); color: var(--fizz-orange); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: var(--space-2);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--grey-700); border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body); font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease);
  white-space: nowrap; text-decoration: none; cursor: pointer;
}
.btn-primary {
  background: var(--fizz-orange);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: var(--text-base);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--fizz-orange-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,90,0,.40);
}
.btn-secondary {
  background: var(--white);
  color: var(--fizz-orange);
  border: 2px solid var(--fizz-orange);
  padding: 0.7rem 1.5rem;
  font-size: var(--text-base);
}
.btn-secondary:hover {
  background: var(--fizz-orange-bg);
  color: var(--fizz-orange);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: var(--text-sm); }
.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-lg); }
.btn-xl { padding: 1.1rem 2.75rem; font-size: var(--text-xl); }
.btn-teal { background: var(--fizz-teal); color: var(--white); box-shadow: 0 4px 16px rgba(0,184,169,.3); }
.btn-teal:hover { background: #00a396; color: var(--white); transform: translateY(-2px); }

/* Copy button */
.copy-btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--grey-900); color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem; font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer; transition: all var(--dur);
}
.copy-btn:hover { background: var(--grey-700); }
.copy-btn.copied { background: var(--green); }
.copy-btn svg { width: 16px; height: 16px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #FFF7F2 0%, #FFFDF9 60%, #F0FAF9 100%);
  padding: var(--space-16) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF5A00' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--green-lt); color: var(--green);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-sm); font-weight: 600;
  margin-bottom: var(--space-4);
}
.hero-badge::before { content: '✓'; font-weight: 900; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 800;
  color: var(--grey-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.hero-headline .highlight {
  color: var(--fizz-orange);
  position: relative;
}
.hero-sub {
  font-size: var(--text-xl);
  color: var(--grey-600);
  margin-bottom: var(--space-8);
  max-width: 480px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex; align-items: center; gap: var(--space-6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--grey-600);
}
.trust-icon { font-size: 1.1rem; }

/* Code card */
.code-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--fizz-orange-bg);
  position: relative;
  overflow: hidden;
}
.code-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--fizz-orange), var(--fizz-coral), var(--fizz-teal));
}
.code-card-label {
  font-size: var(--text-sm); font-weight: 600;
  color: var(--grey-500); text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.code-display {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--fizz-orange-bg);
  border: 2px dashed var(--fizz-orange);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-4);
}
.code-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--fizz-orange);
  letter-spacing: 0.08em;
  flex: 1;
}
.code-verified-badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: var(--green-lt); color: var(--green);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs); font-weight: 700;
  margin-bottom: var(--space-4);
}
.code-savings {
  text-align: center;
  font-size: var(--text-sm); color: var(--grey-500);
  margin-top: var(--space-3);
}
.code-steps {
  margin: var(--space-4) 0;
  counter-reset: step;
}
.code-step {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: var(--text-sm);
}
.code-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--fizz-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 800;
}

/* ── Promo image slots ───────────────────────────────────────── */
.promo-image-slot {
  background: var(--grey-50);
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-2);
  color: var(--grey-400);
  font-size: var(--text-sm);
  min-height: 180px;
  overflow: hidden;
  position: relative;
}
.promo-image-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
}
.promo-image-slot .slot-label {
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── Section headings ────────────────────────────────────────── */
.section { padding: var(--space-20) 0; }
.section-alt { background: var(--white); }
.section-orange { background: var(--fizz-orange-bg); }
.section-teal { background: var(--fizz-teal-lt); }

.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fizz-orange);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  color: var(--grey-900);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--grey-600);
  max-width: 640px; margin: 0 auto;
}

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--fizz-orange);
  padding: var(--space-8) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  display: block;
}
.stat-label { font-size: var(--text-sm); opacity: 0.85; }

/* ── Province / City grid ────────────────────────────────────── */
.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-4);
}
.province-card {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column;
  gap: var(--space-2);
}
.province-card:hover {
  border-color: var(--fizz-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.province-flag { font-size: 2rem; }
.province-name { font-weight: 700; font-size: var(--text-lg); color: var(--grey-900); }
.province-code { font-size: var(--text-xs); font-weight: 600; color: var(--fizz-orange); }
.province-cities { font-size: var(--text-sm); color: var(--grey-500); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
.city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.city-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.city-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--fizz-orange-bg), #fff8f0);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
  overflow: hidden;
}
.city-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.city-featured-badge {
  position: absolute; top: var(--space-2); right: var(--space-2);
  background: var(--fizz-orange); color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700;
  padding: 2px 10px;
}
.city-card-body { padding: var(--space-4) var(--space-5); flex: 1; display: flex; flex-direction: column; gap: var(--space-2); }
.city-name { font-weight: 700; font-size: var(--text-lg); color: var(--grey-900); }
.city-province { font-size: var(--text-sm); color: var(--grey-500); }
.city-save { font-size: var(--text-sm); font-weight: 700; color: var(--green); }
.city-cta { margin-top: auto; }

/* ── Comparison table ────────────────────────────────────────── */
.compare-wrapper { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th {
  background: var(--grey-900);
  color: var(--white);
  padding: var(--space-4) var(--space-4);
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.compare-table th:first-child { border-radius: 0; }
.compare-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.fizz-row { background: var(--fizz-orange-bg); }
.compare-table tr.fizz-row td { font-weight: 600; }
.compare-table .best-badge {
  background: var(--fizz-orange);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: var(--text-xs); font-weight: 700;
  white-space: nowrap;
}
.compare-yes { color: var(--green); font-weight: 700; font-size: 1.1em; }
.compare-no  { color: var(--grey-400); }
.compare-price-highlight { color: var(--fizz-orange); font-weight: 800; font-size: var(--text-base); }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: box-shadow var(--dur);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: var(--space-3); }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fizz-orange), var(--fizz-coral));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); font-weight: 800;
  flex-shrink: 0;
}
.review-author { font-weight: 700; color: var(--grey-900); }
.review-meta   { font-size: var(--text-xs); color: var(--grey-500); }
.review-stars  { color: var(--yellow); font-size: var(--text-lg); letter-spacing: 2px; }
.review-title  { font-weight: 700; color: var(--grey-800); }
.review-body   { color: var(--grey-600); font-size: var(--text-sm); line-height: 1.7; }
.review-source {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs); color: var(--grey-400);
  margin-top: auto;
}
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-lt); color: var(--green);
  border-radius: var(--radius-full); padding: 2px 8px;
  font-size: var(--text-xs); font-weight: 700;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur);
}
.faq-item.open { border-color: var(--fizz-orange); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base); font-weight: 600;
  color: var(--grey-900);
  text-align: left;
  gap: var(--space-4);
  background: none;
  cursor: pointer;
  transition: color var(--dur);
}
.faq-question:hover { color: var(--fizz-orange); }
.faq-item.open .faq-question { color: var(--fizz-orange); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--grey-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur);
  font-size: 1.1rem;
}
.faq-item.open .faq-icon {
  background: var(--fizz-orange-bg);
  color: var(--fizz-orange);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s ease;
  padding: 0 var(--space-6);
}
.faq-answer p { padding: 0 0 var(--space-5); color: var(--grey-600); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  padding: var(--space-3) 0;
  font-size: var(--text-sm); color: var(--grey-500);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; list-style: none; }
.breadcrumb li + li::before { content: '›'; color: var(--grey-300); }
.breadcrumb a { color: var(--fizz-orange); }

/* ── Ad slots ────────────────────────────────────────────────── */
.ad-slot {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: var(--space-2);
}
.ad-slot-leaderboard { min-height: 90px; width: 100%; margin: var(--space-6) 0; }
.ad-slot-rectangle   { min-height: 250px; min-width: 300px; }
.ad-slot-custom img  { width: 100%; height: auto; border-radius: var(--radius-sm); }

/* ── Site footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: var(--space-16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xl); font-weight: 800;
  color: var(--white); text-decoration: none;
  margin-bottom: var(--space-3);
}
.footer-logo strong span { color: var(--fizz-orange); }
.footer-brand p { font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--space-4); }
.footer-col h3 {
  font-size: var(--text-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  color: var(--grey-400); font-size: var(--text-sm);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--fizz-orange); }
.footer-disclaimer {
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.disclaimer-badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs); font-weight: 700;
  color: var(--grey-300);
  margin-bottom: var(--space-2);
}
.footer-disclaimer p { font-size: var(--text-xs); line-height: 1.7; max-width: 820px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-xs);
}
.footer-bottom-links { display: flex; gap: var(--space-6); }
.footer-bottom-links a { color: var(--grey-500); }
.footer-bottom-links a:hover { color: var(--fizz-orange); }
.social-share { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.social-share span { font-size: var(--text-sm); }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--white); transition: opacity var(--dur);
}
.social-btn:hover { opacity: 0.8; }
.social-btn.facebook  { background: #1877F2; }
.social-btn.twitter   { background: #000; }
.social-btn.whatsapp  { background: #25D366; }

/* ── Back to top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  width: 44px; height: 44px;
  background: var(--fizz-orange); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur), transform var(--dur);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-2px); }

/* ── Sidebar layout ──────────────────────────────────────────── */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-10);
  padding: var(--space-10) 0;
  align-items: start;
}
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-code-widget {
  background: var(--white);
  border: 2px solid var(--fizz-orange-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.sidebar-code-widget .code-value {
  font-size: var(--text-3xl);
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--fizz-orange); }
.text-green  { color: var(--green); }
.mt-auto     { margin-top: auto; }
.hidden      { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.updated-label {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs); color: var(--grey-500);
  background: var(--grey-50); border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
}
.updated-label::before { content: '🕐'; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: block;
    position: fixed; inset: 0; top: 64px;
    background: var(--white);
    padding: var(--space-6);
    overflow-y: auto;
    z-index: 99;
    box-shadow: var(--shadow-xl);
  }
  .site-nav.open ul { flex-direction: column; gap: var(--space-1); }
  .site-nav.open a { font-size: var(--text-base); padding: var(--space-3) var(--space-4); }
  .site-nav.open .dropdown {
    display: block; position: static;
    box-shadow: none; border: none;
    padding: 0 var(--space-4);
  }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: var(--space-12) 0; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: var(--text-xs); }
  .compare-table th, .compare-table td { padding: var(--space-2) var(--space-3); }
}

@media (max-width: 480px) {
  :root { --container-pad: var(--space-4); }
  .hero-headline { font-size: var(--text-3xl); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .city-grid, .province-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .ad-slot, .back-to-top, .notif-bar { display: none; }
}
