/* ===== Stash — Global Discount Platform by TipidNation ===== */
:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  /* Brand black (primary). --color-navy/--color-plum kept as aliases so existing rules work. */
  --color-plum: #000000;
  --color-navy: #000000;
  --color-navy-soft: #2a2a2a;
  --color-crimson: #cb2957;
  --color-accent: #cb2957;
  --color-accent-dark: #a81f46;
  --color-cream: #eeeeee;
  --color-text: #1a1a1a;
  --color-muted: #6a6a6a;
  --color-border: #dddddd;
  --color-success: #1f9d55;
  --max-width: 960px;
  --radius: 16px;
  --shadow-sm: var(--md-elevation-1);
  --shadow-md: var(--md-elevation-3);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;

  /* ===== Material Design 3 tokens (mapped onto brand palette) ===== */
  --md-primary: var(--color-navy);
  --md-on-primary: #ffffff;
  --md-secondary: var(--color-accent);
  --md-on-secondary: #ffffff;
  --md-surface: var(--color-bg);
  --md-surface-container-low: #f7f7f7;
  --md-surface-container: #f1f1f1;
  --md-surface-container-high: #ececec;
  --md-outline: var(--color-border);
  --md-outline-variant: #e6e6e6;

  --md-shape-xs: 4px;
  --md-shape-sm: 8px;
  --md-shape-md: 12px;
  --md-shape-lg: 16px;
  --md-shape-xl: 28px;
  --md-shape-full: 999px;

  --md-elevation-1: 0 1px 2px rgba(0,0,0,0.08), 0 1px 3px 1px rgba(0,0,0,0.06);
  --md-elevation-2: 0 1px 2px rgba(0,0,0,0.10), 0 2px 6px 2px rgba(0,0,0,0.08);
  --md-elevation-3: 0 4px 8px 3px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.12);
  --md-elevation-4: 0 6px 10px 4px rgba(0,0,0,0.08), 0 2px 3px rgba(0,0,0,0.14);

  --md-state-hover: 0.08;
  --md-state-press: 0.10;

  --md-motion-standard: cubic-bezier(0.2, 0, 0, 1);
  --md-motion-emphasized: cubic-bezier(0.3, 0, 0, 1);

  /* Dark-surface tonal elevation (footer, hero, nav pill) via overlay tint */
  --md-dark-1: rgba(255,255,255,0.05);
  --md-dark-2: rgba(255,255,255,0.08);
  --md-dark-3: rgba(255,255,255,0.11);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
body { padding-top: 62px; }

a { color: var(--color-navy); text-decoration: none; }
a:hover { color: var(--color-accent); }

img { max-width: 100%; height: auto; }

/* ===== NAV — dynamic island ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: top 0.32s var(--md-motion-emphasized), background 0.32s var(--md-motion-standard), border-color 0.32s;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  transition: max-width 0.36s var(--md-motion-emphasized), height 0.36s var(--md-motion-emphasized),
    padding 0.36s var(--md-motion-emphasized), border-radius 0.36s var(--md-motion-emphasized),
    background 0.36s var(--md-motion-standard), box-shadow 0.36s var(--md-motion-standard);
}
/* Condensed state: bar collapses into a floating pill (island) once the page scrolls */
.nav.nav-condensed { top: 10px; background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav.nav-condensed .nav-inner {
  max-width: fit-content;
  height: 50px;
  padding: 0 8px 0 22px;
  border-radius: var(--md-shape-full);
  background: var(--color-navy);
  box-shadow: var(--md-elevation-3);
}
.nav.nav-condensed .nav-logo { color: #fff; }
.nav.nav-condensed .nav-desktop { display: none; }
.nav.nav-condensed .hamburger { display: flex; }
.nav.nav-condensed .hamburger-line { background: #fff; }
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--color-accent); }
.nav-desktop { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
}
.nav-link:hover { color: var(--color-accent); }
.nav-search-form {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--color-muted);
}
.nav-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  width: 140px;
  color: var(--color-text);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger-line { width: 24px; height: 2px; background: var(--color-navy); border-radius: 2px; transition: 0.2s; }
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 74, 0.45);
  z-index: 40;
}
.mobile-overlay.active { display: block; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--color-surface);
  z-index: 60;
  padding: 80px 20px 24px;
  transition: right 0.25s ease;
  overflow-y: auto;
}
.mobile-menu.active { right: 0; box-shadow: var(--shadow-md); }
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  color: var(--color-muted);
}
.mobile-search-input { border: none; background: transparent; outline: none; width: 100%; font-size: 1rem; color: var(--color-text); }
.mobile-menu-item {
  display: block;
  padding: 13px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu-item.accent { color: var(--color-accent); font-weight: 600; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; width: 100%; }
main { min-height: 60vh; }

/* ===== HERO ===== */
.hero {
  background: var(--color-navy);
  color: #fff;
  padding: 54px 20px 48px;
  text-align: center;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.hero p { font-size: 1.1rem; color: #f3dcc4; margin: 0 auto 26px; max-width: 620px; }
.hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--md-shape-full);
  padding: 12px 20px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--md-elevation-2);
  transition: box-shadow 0.25s var(--md-motion-standard);
}
.hero-search:focus-within { box-shadow: var(--md-elevation-4); }
.hero-search svg { color: var(--color-muted); flex-shrink: 0; }
.hero-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #f3dcc4;
  background: var(--md-dark-2);
  border-radius: var(--md-shape-full);
  padding: 6px 16px;
}

/* ===== SECTION ===== */
.section { padding-top: 40px; padding-bottom: 40px; }
.section-head { margin-bottom: 22px; }
.section-head h1,
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}
.section-head p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }
#couponCount { font-size: 0.9rem; color: var(--color-muted); margin: 0 0 16px; }

/* ===== COUPON GRID (homepage compact cards) ===== */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.ccard {
  background: var(--md-surface-container-low);
  border: 1px solid var(--md-outline-variant);
  border-radius: var(--md-shape-lg);
  box-shadow: var(--md-elevation-1);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.22s var(--md-motion-standard), transform 0.22s var(--md-motion-standard), border-color 0.22s;
}
.ccard:hover { box-shadow: var(--md-elevation-3); transform: translateY(-2px); border-color: var(--color-accent); }
.ccard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.ccard-flag { font-size: 1.5rem; line-height: 1; }
.ccard-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-success);
  background: rgba(31, 157, 85, 0.1);
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.ccard-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-navy);
  margin: 0;
}
.ccard-title:hover { color: var(--color-accent); }
.ccard-offer { font-size: 0.82rem; color: var(--color-muted); margin: 0; line-height: 1.45; }
.ccard-meta { font-size: 0.74rem; color: #97a0b2; margin: 0; }
.ccard-btn {
  margin-top: 4px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--md-shape-full);
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.15s var(--md-motion-standard), transform 0.15s var(--md-motion-standard);
}
.ccard-btn:hover { background: var(--color-accent-dark); }
.ccard-btn:active { transform: scale(0.96); }

/* ===== COUPON LIST ===== */
.coupon-list { display: flex; flex-direction: column; gap: 14px; }

.coupon-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}
.coupon-item:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.coupon-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}
.coupon-left { min-width: 0; }
.coupon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-success);
  background: rgba(31, 157, 85, 0.1);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.coupon-flag { margin-right: 8px; }
.coupon-item-title {
  display: block;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.3;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
}
.coupon-item-title:hover,
.coupon-item-title:focus-visible { color: var(--color-accent); text-decoration: underline; }
.coupon-item-desc { font-size: 0.92rem; color: var(--color-muted); margin-top: 4px; }
.coupon-item-meta { font-size: 0.8rem; color: #97a0b2; margin-top: 6px; }
.coupon-right { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.coupon-code-preview {
  font-family: var(--font-sans);
  letter-spacing: 3px;
  color: #b9c0cd;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
}
.coupon-reveal-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  font-family: var(--font-sans);
}
.coupon-reveal-btn:hover { background: var(--color-accent-dark); }

/* ===== HOMEPAGE SALE EVENTS ===== */
.home-sales { padding: 36px 0 44px; border-bottom: 1px solid var(--color-border); margin-bottom: 40px; }
.home-sales-header { margin-bottom: 20px; }
.home-sales-heading { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--color-navy); margin: 0 0 8px; }
.home-sales-sub { font-size: 0.97rem; color: var(--color-muted); margin: 0; }
.home-country-header { margin-bottom: 16px; }
.home-country-heading { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--color-navy); margin: 0 0 6px; }
.home-country-sub { font-size: 0.95rem; color: var(--color-muted); margin: 0; }
.sale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.sale-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: var(--md-surface-container-low);
  border: 1px solid var(--md-outline-variant);
  border-radius: var(--md-shape-lg);
  box-shadow: var(--md-elevation-1);
  padding: 18px 18px 14px;
  text-decoration: none;
  transition: box-shadow 0.22s var(--md-motion-standard), border-color 0.22s, transform 0.22s var(--md-motion-standard);
}
.sale-card:hover { box-shadow: var(--md-elevation-3); border-color: var(--color-accent); transform: translateY(-2px); }
.sale-card-inner { display: flex; flex-direction: column; gap: 4px; }
.sale-card-title { font-family: var(--font-sans); font-weight: 600; font-size: 0.93rem; color: var(--color-navy); line-height: 1.35; }
.sale-card:hover .sale-card-title { color: var(--color-accent); }
.sale-card-period { font-size: 0.74rem; font-weight: 600; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.03em; }
.sale-card-desc { font-size: 0.8rem; color: var(--color-muted); line-height: 1.45; }
.sale-card-cta { font-size: 0.78rem; font-weight: 600; color: var(--color-accent); }

/* ===== HOMEPAGE SEO CONTENT ===== */
.home-seo {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.home-seo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.75;
  color: #2a3343;
}
.home-seo-inner h2 { font-family: var(--font-serif); font-weight: 700; font-size: 1.55rem; line-height: 1.3; margin: 40px 0 14px; color: var(--color-navy); }
.home-seo-inner h2:first-child { margin-top: 0; }
.home-seo-inner h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; margin: 28px 0 10px; color: var(--color-navy); }
.home-seo-inner p { margin: 0 0 22px; }
.home-seo-inner ol, .home-seo-inner ul { padding-left: 24px; margin: 0 0 22px; }
.home-seo-inner li { margin-bottom: 10px; }
.home-seo-inner strong { color: var(--color-navy); }
.home-seo-inner .faq-item { font-family: var(--font-serif); }
.home-seo-inner .faq-q { font-family: var(--font-serif); font-size: 1.1rem; }
.home-seo-inner .faq-a { font-size: 1.05rem; line-height: 1.7; }

/* ===== ARTICLE / COUNTRY PAGE ===== */
.article { padding-top: 40px; padding-bottom: 10px; }
.breadcrumb { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.article h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.22;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.rating-stars { color: var(--color-accent); font-weight: 600; }
.article-img {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin: 0 0 26px;
  width: 100%;
}
.article-img-inline { margin: 30px 0; }
.article .coupon-item { margin-bottom: 28px; }
.article-intro { padding-bottom: 14px; margin-bottom: 30px !important; border-bottom: 1px solid var(--color-border); }
.article-body { font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.75; color: #2a3343; }
.article-body p { margin: 0 0 24px; }
.article-body h2 { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; line-height: 1.3; margin: 40px 0 14px; color: var(--color-navy); }
.article-body h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; margin: 30px 0 12px; }
.article-body ul { padding-left: 24px; margin: 0 0 24px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--color-navy); }

.prose { max-width: var(--max-width); font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.75; color: #2a3343; }
.prose h1 { font-family: var(--font-serif); font-weight: 700; font-size: 2rem; line-height: 1.25; margin: 0 0 22px; color: var(--color-navy); }
.prose h2 { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; line-height: 1.3; margin: 40px 0 14px; color: var(--color-navy); }
.prose p { margin: 0 0 24px; }
.prose ul { padding-left: 24px; margin: 0 0 24px; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--color-navy); }

/* ===== FAQ — MD3 expansion list ===== */
.faq { margin: 30px 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--md-surface-container-low);
  border: 1px solid var(--md-outline-variant);
  border-radius: var(--md-shape-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.02rem;
  padding: 16px 18px;
  cursor: pointer;
  transition: background 0.2s var(--md-motion-standard);
}
.faq-q:hover { background: rgba(0, 0, 0, var(--md-state-hover)); }
.faq-chevron { flex-shrink: 0; color: var(--color-accent); transition: transform 0.28s var(--md-motion-emphasized); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  color: var(--color-muted);
  margin: 0;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--md-motion-emphasized), padding 0.3s var(--md-motion-emphasized);
}
.faq-item.open .faq-a { padding: 0 18px 18px; }

/* ===== INTERLINKS ===== */
.article-interlinks {
  background: var(--color-cream);
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
  padding: 14px 18px;
  margin: 32px 0;
  font-family: var(--font-sans);
  font-size: 0.97rem;
}
.article-interlinks p { margin: 0; color: var(--color-navy); }
.article-interlinks a { color: var(--color-accent); font-weight: 500; text-decoration: none; }
.article-interlinks a:hover { text-decoration: underline; }

/* ===== CTA INLINE ===== */
.inline-cta {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 30px 0;
}
.inline-cta p { margin: 0 0 14px; color: #c7d0e0; }
.btn-accent {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--md-shape-full);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: background 0.15s var(--md-motion-standard), transform 0.15s var(--md-motion-standard);
}
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; }
.btn-accent:active { transform: scale(0.97); }

/* ===== RELATED ===== */
.related { margin: 36px 0; }
.related h2 { font-family: var(--font-serif); font-size: 1.3rem; margin: 0 0 14px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.related-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 500;
}
.related-card:hover { border-color: var(--color-accent); }

/* ===== 404 ===== */
.notfound { text-align: center; padding: 60px 0 30px; }
.notfound-emoji { font-size: 4rem; line-height: 1; margin-bottom: 10px; }
.notfound h1 { font-family: var(--font-serif); font-size: 2.1rem; margin: 0 0 14px; color: var(--color-navy); }
.notfound-lead { font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.7; color: #2a3343; max-width: 600px; margin: 0 auto 10px; }
.notfound-sub { color: var(--color-muted); max-width: 560px; margin: 0 auto 26px; }
.notfound-actions { margin-bottom: 16px; }
.notfound-divider { border: none; border-top: 1px solid var(--color-border); max-width: 680px; margin: 36px auto; }
.country-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 820px; margin: 0 auto; }
.country-chip {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-navy);
}
.country-chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.coming-soon { background: var(--color-navy); color: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center; max-width: 680px; margin: 40px auto 0; }
.coming-soon h2 { font-family: var(--font-serif); color: #fff; margin: 0 0 10px; font-size: 1.35rem; }
.coming-soon p { color: #c7d0e0; margin: 0 0 16px; }
.coming-soon-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.coming-soon-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 6px 14px; font-size: 0.85rem; color: #fff; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 74, 0.6);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 26px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-bg);
  border: none;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-muted);
}
.modal-close:hover { background: var(--color-border); }
.modal-brand { font-family: var(--font-serif); font-weight: 700; color: var(--color-accent); font-size: 1.1rem; margin-bottom: 12px; }
.modal-title { font-size: 1.1rem; font-weight: 600; color: var(--color-navy); margin-bottom: 6px; }
.modal-desc { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 18px; }
.modal-code-box {
  background: var(--color-bg);
  border: 2px dashed var(--color-accent);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}
.modal-code-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-muted); margin-bottom: 6px; }
.modal-code { font-size: 1.7rem; font-weight: 700; letter-spacing: 2px; color: var(--color-navy); font-family: var(--font-sans); }
.modal-copy-btn {
  width: 100%;
  background: var(--color-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.modal-copy-btn.copied { background: var(--color-success); }
.modal-shop-btn {
  display: block;
  width: 100%;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.98rem;
}
.modal-shop-btn:hover { background: var(--color-accent-dark); color: #fff; }
.modal-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.modal-timer svg { width: 14px; height: 14px; }

/* ===== FOOTER — MD3 tonal surface groups ===== */
.site-footer { background: var(--color-navy); color: #c7d0e0; margin-top: 64px; border-top-left-radius: var(--md-shape-xl); border-top-right-radius: var(--md-shape-xl); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 44px 20px 28px; }
.footer-brand-row {
  margin-bottom: 24px;
  background: var(--md-dark-1);
  border-radius: var(--md-shape-lg);
  padding: 20px 22px;
}
.footer-brand { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.footer-tagline { font-size: 0.92rem; max-width: 620px; margin: 0; color: #95a3bd; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 14px; padding-bottom: 26px; }
.footer-col {
  background: var(--md-dark-1);
  border-radius: var(--md-shape-lg);
  padding: 20px 22px;
  transition: background 0.2s var(--md-motion-standard);
}
.footer-col:hover { background: var(--md-dark-2); }
.footer-col-title { font-weight: 600; color: #fff; margin-bottom: 12px; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #c7d0e0; font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-accent); }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
.footer-disclaimer {
  font-size: 0.82rem;
  color: #8d9bb6;
  margin: 14px 0 0;
  line-height: 1.55;
  background: var(--md-dark-1);
  border-radius: var(--md-shape-md);
  padding: 16px 20px;
}
.footer-disclaimer strong { color: #c7d0e0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; color: #7d8aa5; }

/* ===== MOBILE ===== */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1rem; }
  .coupon-item-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .coupon-right { flex-direction: row; justify-content: space-between; align-items: center; }
  .coupon-reveal-btn { flex: 1; padding: 12px; }
  .article h1 { font-size: 1.55rem; }
  .article-body, .prose { font-size: 1.1rem; line-height: 1.72; }
  .container { padding-left: 18px; padding-right: 18px; }
  .home-seo-inner { padding-left: 18px; padding-right: 18px; }
  .coupon-grid { grid-template-columns: 1fr; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
