/* ============================================================
   style.css — europricedrop.com
   Mobile-first responsive design
   Breakpoints: 320px (base), 768px (tablet), 1024px (desktop)
   Color palette: Blue #1565c0 / Orange #f57c00 / Dark #1a1a2e
   ============================================================ */

/* ── Custom properties ─────────────────────────────────────── */
:root {
  --blue-dark:    #0d47a1;
  --blue:         #1565c0;
  --blue-light:   #1976d2;
  --blue-pale:    #e3f2fd;
  --orange:       #f57c00;
  --orange-light: #ff9800;
  --orange-pale:  #fff3e0;
  --dark:         #1a1a2e;
  --dark-2:       #2d2d44;
  --text:         #333344;
  --text-2:       #5a5a72;
  --muted:        #888899;
  --white:        #ffffff;
  --off-white:    #f8f9fc;
  --border:       #e0e0ef;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow:       0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.16);
  --radius:       10px;
  --radius-lg:    16px;
  --radius-pill:  100px;
  --max:          1100px;
  --nav-h:        64px;
  --transition:   .2s ease;
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); text-decoration: underline; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

/* ── Layout helpers ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

section { padding: 56px 0; }
@media (min-width: 768px)  { section { padding: 72px 0; } }
@media (min-width: 1024px) { section { padding: 88px 0; } }

.sec-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.sec-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.text-center .sec-sub { margin-left: auto; margin-right: auto; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--dark);
  box-shadow: var(--shadow);
  height: var(--nav-h);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-brand:hover { color: var(--orange-light); text-decoration: none; }
.brand-icon { font-size: 1.3rem; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav menu — mobile default */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark-2);
  padding: 16px 20px 20px;
  gap: 4px;
}
.nav-menu.open { display: flex; }
.nav-menu > li > a {
  display: block;
  color: #ccd;
  font-size: .95rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-menu > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
  text-decoration: none;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 6px 0 6px 20px;
  gap: 2px;
}
.nav-dropdown.open .dropdown-menu { display: flex; }
.dropdown-menu a {
  color: var(--muted);
  font-size: .88rem;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
  text-decoration: none;
}
.arrow { font-size: .7rem; }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    align-items: center;
    gap: 2px;
  }
  .nav-menu > li > a { padding: 8px 14px; }
  .nav-dropdown { position: relative; }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 12px 0 8px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu { display: flex; }
  .dropdown-menu a { padding: 10px 18px; }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: .01em;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,124,0,.3);
}
.btn-primary:hover {
  background: var(--orange-light);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(245,124,0,.4);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,101,192,.25);
}
.btn-secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-label {
  display: inline-block;
  background: rgba(245,124,0,.2);
  color: var(--orange-light);
  border: 1px solid rgba(245,124,0,.4);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 .highlight { color: var(--orange-light); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 36px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}

/* ── Cards ─────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 580px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.card-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.card-desc { color: var(--text-2); font-size: .9rem; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.card-discount {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.btn-block { display: block; width: 100%; text-align: center; margin-top: auto; }
.card-list {
  list-style: none;
  margin-bottom: 20px;
}
.card-list li {
  font-size: .88rem;
  color: var(--text-2);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── Promo code block ──────────────────────────────────────── */
.promo-box {
  background: linear-gradient(135deg, var(--blue-pale), #e8f5e9);
  border: 1px dashed var(--blue-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.promo-label { font-size: .78rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.promo-code {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: var(--blue-dark);
  letter-spacing: .12em;
  display: block;
  margin-bottom: 6px;
}
.promo-note { font-size: .82rem; color: var(--text-2); }

/* ── Why section ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: all var(--transition);
}
.why-item:hover { background: var(--blue-pale); box-shadow: var(--shadow); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.why-svg { width: 44px; height: 44px; margin-bottom: 14px; display: block; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { color: var(--text-2); font-size: .9rem; }

/* ── Featured / info sections ──────────────────────────────── */
.bg-alt { background: var(--off-white); }
.bg-dark { background: var(--dark); }
.bg-dark h2, .bg-dark h3, .bg-dark p { color: rgba(255,255,255,.9); }

.content-prose { max-width: 800px; }
.content-prose h2 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); margin: 36px 0 12px; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--blue); }
.content-prose p { margin-bottom: 16px; color: var(--text-2); }
.content-prose ul { padding-left: 20px; margin-bottom: 16px; list-style: disc; }
.content-prose ul li { color: var(--text-2); margin-bottom: 6px; }
.content-prose strong { color: var(--text); font-weight: 700; }

/* ── CTA banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e65100 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius-lg);
  margin: 0 20px;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 20px; font-size: 1.05rem; }
.cta-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 4px; margin-top: 8px; }
.cta-links a { color: var(--white); font-weight: 700; font-size: 1rem; text-decoration: none; opacity: .9; transition: opacity var(--transition); }
.cta-links a:hover { opacity: 1; text-decoration: underline; }
.cta-sep { color: rgba(255,255,255,.35); font-size: .9rem; }
.btn-white { background: var(--white); color: var(--orange); font-weight: 800; }
.btn-white:hover { background: var(--off-white); color: var(--orange); }

/* ── Update date bar ───────────────────────────────────────── */
.update-bar {
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: .82rem;
  padding: 8px 20px;
  text-align: center;
  font-weight: 600;
}

/* ── Internal links strip ──────────────────────────────────── */
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.related-links a {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.related-links a:hover { background: var(--blue); color: var(--white); text-decoration: none; }

/* ── Contact form ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.3fr; } }

.contact-info h3 { font-size: 1.1rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-2); margin-bottom: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .85rem; color: var(--text-2); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.contact-item span { color: var(--text); font-size: .95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(21,101,192,.1);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 6px; }

/* ── FAQ accordion ─────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  padding: 18px 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary { background: var(--blue-pale); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--blue-pale); }
.faq-body { padding: 16px 20px 20px; background: var(--white); }
.faq-body p { color: var(--text-2); font-size: .93rem; margin: 0; }

/* ── Info badges / highlights ──────────────────────────────── */
.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}
.info-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  flex: 1;
  min-width: 180px;
}
.info-badge-icon { font-size: 1.5rem; }
.info-badge strong { display: block; font-size: .82rem; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; }
.info-badge span { font-size: .95rem; font-weight: 700; color: var(--dark); }

/* ── Steps / process ───────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 20px; counter-reset: step; }
@media (min-width: 768px) { .steps { flex-direction: row; } }
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 20px;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
}
.step h4 { font-size: .95rem; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: .87rem; }

/* ── Featured Deals grid ────────────────────────────────────── */
.deal-cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .deal-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .deal-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.deal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition);
}
.deal-card:hover { box-shadow: var(--shadow); }
.deal-card-brand { font-weight: 800; font-size: .95rem; color: var(--dark); }
.deal-card-desc { color: var(--text-2); font-size: .88rem; line-height: 1.65; flex: 1; margin: 0; }
.deal-card-link { color: var(--orange); font-weight: 700; font-size: .88rem; text-decoration: none; margin-top: 4px; }
.deal-card-link:hover { text-decoration: underline; }

/* ── Editor's Reviews grid ──────────────────────────────────── */
.reviews-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card h3 { font-size: 1.05rem; color: var(--dark); margin: 0; }
.review-card p { color: var(--text-2); font-size: .9rem; line-height: 1.7; flex: 1; margin: 0; }
.review-card-link { color: var(--orange); font-weight: 700; font-size: .88rem; text-decoration: none; margin-top: 4px; }
.review-card-link:hover { text-decoration: underline; }

/* ── SEO long-form content ──────────────────────────────────── */
.seo-content { max-width: 780px; margin: 0 auto; }
.seo-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--dark); margin-bottom: 14px; }
.seo-content h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--dark); margin: 32px 0 10px; }
.seo-content p { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; font-size: .96rem; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 320px; }

.footer h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.footer-bottom p:first-child { color: rgba(255,255,255,.6); }
.footer-disclaimer { font-style: italic; }

/* ── Utility ───────────────────────────────────────────────── */
.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;
}
.mt-0 { margin-top: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ── Shortcode loading state ───────────────────────────────── */
/* While JS has not yet replaced shortcodes, show a subtle pulse */
[data-shortcode]:empty::after {
  content: '…';
  color: var(--muted);
  animation: sc-pulse 1.2s infinite;
}
@keyframes sc-pulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1;  }
}

/* ── Promo cards list ──────────────────────────────────────── */
.promos-section { padding: 40px 0 48px; }

.promos-section-header { margin-bottom: 24px; }
.promos-section-header h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--dark);
  margin-bottom: 6px;
}
.promos-section-header p { color: var(--text-2); font-size: .93rem; }

.promos-list { display: flex; flex-direction: column; gap: 14px; }

.promo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.promo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.promo-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.promo-content { flex: 1; min-width: 0; }
.promo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.promo-description { font-size: .875rem; color: var(--text-2); margin-bottom: 4px; }
.promo-usage       { font-size: .78rem;  color: var(--muted);  font-style: italic; }

.promo-action {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  min-width: 130px;
}

.get-code-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #27ae60;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.get-code-btn:hover {
  background: #219a52;
  box-shadow: 0 4px 14px rgba(39,174,96,.35);
  transform: translateY(-1px);
}
.get-code-btn:active { transform: scale(.98); }

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

/* Promo card mobile: stack vertically */
@media (max-width: 479px) {
  .promo-card { flex-wrap: wrap; gap: 12px; }
  .promo-action { width: 100%; justify-content: flex-start; }
  .get-code-btn { width: 100%; justify-content: center; }
}

/* ── Modal ─────────────────────────────────────────────────── */
/* Popover API resets — remove UA defaults for border/margin/padding */
.modal-overlay {
  border: 0;
  margin: 0;
  padding: 0;
  max-width: none;
  max-height: none;
  overflow: visible;
  color: inherit;
}
/* Styled when the popover is open (top-layer) */
.modal-overlay:popover-open {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: mo-fade .25s ease;
}
/* Fallback for browsers without Popover API */
@supports not selector(:popover-open) {
  .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
  .modal-overlay[hidden] { display: none !important; }
}

@keyframes mo-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: mo-slide .25s ease;
  text-align: center;
}
@keyframes mo-slide {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--text); background: var(--off-white); }

.modal-brand-icon    { font-size: 2.4rem; margin-bottom: 8px; }
.modal-discount-pill {
  display: inline-block;
  background: linear-gradient(135deg, #27ae60, #1a7a42);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 6px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.modal-heading    { font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.modal-title-text { color: var(--text-2); font-size: .9rem; margin-bottom: 18px; }

.modal-code-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 2px dashed var(--blue-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 14px;
  justify-content: space-between;
}
.modal-code {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: .1em;
}
.modal-copy-btn {
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.modal-copy-btn:hover { background: #219a52; transform: translateY(-1px); }

.modal-description { color: var(--text-2); font-size: .875rem; margin-bottom: 8px; }
.modal-success {
  color: #27ae60;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 8px;
  animation: mo-fade .2s ease;
}
.modal-success[hidden] { display: none; }
.modal-usage { color: var(--muted); font-size: .8rem; font-style: italic; margin-bottom: 18px; }

.modal-shop-btn {
  background: var(--orange);
  color: #fff;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
  font-size: .95rem;
  padding: 13px 24px;
  box-shadow: 0 4px 14px rgba(245,124,0,.25);
}
.modal-shop-btn:hover {
  background: var(--orange-light);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,124,0,.35);
}

/* ══════════════════════════════════════════════════════════════
   FEATURE UPDATES — Bigger cards, reveal, calc, nav, table
   ══════════════════════════════════════════════════════════════ */

/* Larger, more CTA-friendly promo cards */
.promo-card {
  padding: 22px 24px;
  gap: 20px;
  align-items: flex-start;
}
.promo-logo {
  width: 68px;
  height: 68px;
  font-size: 2rem;
  margin-top: 2px;
}
.promo-title { font-size: 1.08rem; }
.promo-description { font-size: .9rem; }
.promo-action { min-width: 155px; align-self: center; }
.get-code-btn {
  font-size: .95rem;
  padding: 14px 22px;
  width: 100%;
  justify-content: center;
}
.discount-badge { width: 34px; height: 34px; font-size: .72rem; }

/* Full-width content prose */
.content-prose { max-width: 100%; }

/* Update bar at bottom — separator before footer */
.update-bar { border-top: 1px solid var(--border); padding: 14px 20px; }

/* Click-to-reveal promo code */
.promo-reveal-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 10px;
}
.promo-reveal-wrap .promo-code {
  filter: blur(8px);
  user-select: none;
  transition: filter .35s ease;
  pointer-events: none;
}
.promo-reveal-wrap.revealed .promo-code {
  filter: none;
  user-select: text;
  pointer-events: auto;
  cursor: text;
}
.promo-reveal-cover {
  position: absolute;
  inset: -10px -14px;
  background: rgba(13,71,161,.07);
  border: 1.5px dashed rgba(21,101,192,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  transition: background var(--transition), opacity .25s;
  white-space: nowrap;
}
.promo-reveal-cover:hover { background: rgba(13,71,161,.12); }
.promo-reveal-wrap.revealed .promo-reveal-cover { opacity: 0; pointer-events: none; }

/* Seasonal / promotions table */
.table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 20px 0 32px;
  box-shadow: var(--shadow-sm);
}
.promo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 500px;
}
.promo-table th {
  background: var(--blue);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 13px 16px;
  text-align: left;
}
.promo-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
  line-height: 1.5;
}
.promo-table tr:nth-child(even) td { background: var(--off-white); }
.promo-table tr:last-child td { border-bottom: none; }
.promo-table td:first-child { font-weight: 700; color: var(--dark); }
.badge-hot {
  display: inline-block;
  background: #ffebee;
  color: #c62828;
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
}
.badge-active {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
}

/* Savings calculator */
.calc-box {
  background: linear-gradient(135deg, #e8f5e9 0%, var(--blue-pale) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
}
.calc-box h3 { font-size: 1.08rem; margin-bottom: 4px; color: var(--dark); }
.calc-sub { font-size: .85rem; color: var(--text-2); margin-bottom: 18px; }
.calc-row { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.calc-input-wrap { flex: 1; min-width: 180px; }
.calc-input-wrap label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.calc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.calc-input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(21,101,192,.1);
}
.calc-result {
  background: var(--white);
  border-radius: var(--radius);
  padding: 13px 20px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.calc-result .save-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-2); }
.calc-result .save-amount { font-size: 1.5rem; font-weight: 800; color: #27ae60; }
.calc-result .final-price { font-size: .82rem; color: var(--text-2); }

/* How-to-redeem steps */
.how-to-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0 32px;
}
@media (min-width: 580px) { .how-to-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .how-to-steps { grid-template-columns: repeat(5, 1fr); } }
.how-to-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  flex-shrink: 0;
}
.how-to-step h4 { font-size: .92rem; color: var(--dark); margin: 0; line-height: 1.35; }
.how-to-step p { font-size: .83rem; color: var(--text-2); margin: 0; line-height: 1.55; }

/* FAQ overrides for full-width content pages */
.content-faq { margin-top: 48px; }
.content-faq > h2 { margin-bottom: 20px; }
.faq-list { max-width: 100%; margin: 0; }

/* Nav: bigger tap targets + CTA button */
.nav-cta { margin-left: 6px; }
.nav-cta > a {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
  padding: 9px 20px !important;
  font-size: .88rem !important;
  white-space: nowrap;
  letter-spacing: .02em;
}
.nav-cta > a:hover { background: var(--orange-light) !important; text-decoration: none !important; }
@media (min-width: 768px) {
  .nav-menu > li > a { padding: 10px 16px; }
  .dropdown-menu { min-width: 190px; }
  .dropdown-menu a { padding: 12px 20px; font-size: .92rem; }
}
@media (max-width: 767px) {
  .nav-menu > li > a { padding: 13px 14px; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 4px; }
  .nav-cta > a { display: block !important; text-align: center !important; padding: 14px 20px !important; font-size: 1rem !important; }
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb-nav {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 0;
  font-size: .82rem;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: var(--muted);
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: 4px;
  color: var(--muted);
}
.breadcrumb a { color: var(--blue-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-light); text-decoration: underline; }
.breadcrumb li:last-child { color: var(--text-2); }

/* ── Brand hero image inside content-prose ─────────────────── */
.brand-hero-img {
  width: 75%;
  margin: 36px auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}
.brand-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-hero-img figcaption {
  background: var(--dark);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-style: italic;
  text-align: center;
  padding: 10px 16px;
  border-top: 2px solid var(--orange);
  letter-spacing: .01em;
}
@media (max-width: 767px) {
  .brand-hero-img { width: 100%; }
}

/* ── Cookie consent bar ────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 2px solid var(--orange);
  z-index: 3000;
  padding: 14px 0;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-bar-inner p {
  margin: 0;
  color: var(--text-2);
  font-size: .85rem;
  flex: 1;
  min-width: 200px;
}
.cookie-bar-inner a { color: var(--blue-light); }
@media (max-width: 479px) {
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-bar-inner .btn { width: 100%; text-align: center; }
}

/* ── Country grid (homepage) ───────────────────────────────── */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.country-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.country-pill:hover { background: var(--blue-pale); border-color: var(--blue-light); color: var(--blue-dark); text-decoration: none; }
.country-pill.live { border-color: var(--orange); color: var(--dark); }
.country-pill.live:hover { background: var(--orange-pale); border-color: var(--orange); }
.country-pill.soon { opacity: .5; cursor: default; pointer-events: none; }

/* ── Brand strip (homepage) ────────────────────────────────── */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.brand-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.brand-chip:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; color: var(--dark); }
.brand-chip-icon { font-size: 1.5rem; }

/* ── No-code deal card (brand pages without a code) ────────── */
.no-code-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}
.no-code-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); text-decoration: none; }
