/* ============================================================
   NEWCOUPONFINDER.COM — base.css
   Design System: Clean, Trust-forward, UK+US Coupon Site
   Font: Syne (headings) + DM Sans (body)
   Accent: #F5C518 (gold/yellow) — inspired by VoucherCodes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --clr-accent:      #F5C518;
  --clr-accent-dk:   #d4a800;
  --clr-accent-lt:   #FEF3C1;
  --clr-dark:        #0F0F0F;
  --clr-navy:        #1A1F36;
  --clr-body:        #3B3F50;
  --clr-muted:       #6B7280;
  --clr-border:      #E5E7EB;
  --clr-bg:          #F9FAFB;
  --clr-white:       #FFFFFF;
  --clr-success:     #10B981;
  --clr-danger:      #EF4444;
  --clr-exclusive:   #FF6B35;

  --font-head:       'DM Sans', sans-serif;
  --font-body:       'Inter', sans-serif;

  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --radius-pill:     999px;

  --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);

  --nav-h:           64px;
  --container:       1200px;
  --gap:             24px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-body);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.gap-1      { gap: 8px; }
.gap-2      { gap: 16px; }
.gap-3      { gap: 24px; }
.text-muted { color: var(--clr-muted); }
.text-sm    { font-size: 13px; }
.text-xs    { font-size: 12px; }
.fw-600     { font-weight: 600; }
.fw-700     { font-weight: 700; }
.mt-1       { margin-top: 8px; }
.mt-2       { margin-top: 16px; }
.mt-3       { margin-top: 24px; }
.mb-1       { margin-bottom: 8px; }
.mb-2       { margin-bottom: 16px; }
.mb-3       { margin-bottom: 24px; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.announcement-bar {
  background: var(--clr-navy);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.announcement-bar a { color: var(--clr-accent); font-weight: 600; }

/* ── SITE HEADER / NAV ───────────────────────────────────── */
.site-header {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  height: var(--nav-h);
}
.site-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--clr-dark);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--clr-accent); }
.site-logo em   { color: var(--clr-exclusive); font-style: normal; }

/* Header Search */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--clr-dark);
  background: var(--clr-bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.header-search input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(245,197,24,.15);
}
.header-search .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-muted);
  font-size: 16px;
  pointer-events: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.currency-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-body);
  background: var(--clr-white);
  transition: border-color .2s;
}
.currency-switcher:hover { border-color: var(--clr-accent); color: var(--clr-dark); }
.currency-switcher .flag { font-size: 16px; }

.btn-login {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, transform .1s;
}
.btn-login:hover { background: var(--clr-accent-dk); transform: translateY(-1px); }

/* Primary Nav */
.primary-nav {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-nav ul::-webkit-scrollbar { display: none; }
.primary-nav li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--clr-body);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.primary-nav li a:hover,
.primary-nav li a.active {
  background: var(--clr-accent-lt);
  color: var(--clr-dark);
}
.primary-nav li a .nav-icon { font-size: 15px; }

/* ── HERO / BANNER AREA ──────────────────────────────────── */
.hero-banner {
  background: var(--clr-navy);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,197,24,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,.15);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--clr-accent); }
.hero-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  margin-bottom: 28px;
}
.hero-search-form {
  display: flex;
  gap: 0;
  max-width: 500px;
}
.hero-search-form input {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  font-size: 15px;
  outline: none;
  background: var(--clr-white);
  color: var(--clr-dark);
}
.hero-search-form button {
  height: 50px;
  padding: 0 28px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: background .2s;
}
.hero-search-form button:hover { background: var(--clr-accent-dk); }

/* Trust bar */
.trust-bar {
  background: var(--clr-accent);
  padding: 10px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-dark);
}
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
}

/* ── SECTION LAYOUT ──────────────────────────────────────── */
.section { padding: 40px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title .icon { font-size: 20px; }
.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.view-all:hover { gap: 8px; color: var(--clr-accent-dk); }

/* ── CATEGORY PHOTO CARDS (like Image 1 style) ───────────── */
.category-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cat-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.cat-photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cat-photo-card:hover img { transform: scale(1.06); }
.cat-photo-card .cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 32px 14px 14px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-head);
}

/* ── CATEGORY PILL TABS ──────────────────────────────────── */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cat-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-body);
  transition: all .18s;
  cursor: pointer;
}
.cat-tab:hover,
.cat-tab.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-dark);
}

/* ── STORE LOGO GRID (Popular Stores) ────────────────────── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.store-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}
.store-card:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 4px 20px rgba(245,197,24,.2);
  transform: translateY(-2px);
}
.store-logo-wrap {
  width: 72px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.store-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.store-name { font-size: 12px; font-weight: 600; color: var(--clr-body); }
.store-count { font-size: 11px; color: var(--clr-muted); }

/* Featured store card (big + dark) */
.store-card-featured {
  background: var(--clr-navy);
  border-color: var(--clr-navy);
  color: #fff;
  padding: 24px 16px;
}
.store-card-featured .store-name { color: #fff; font-size: 14px; }
.store-card-featured .store-count { color: rgba(255,255,255,.6); }
.store-card-featured .featured-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 4px;
}
.store-card-featured .store-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 10px;
  width: 100%;
  justify-content: center;
}
.store-card-featured .stat-item { font-size: 11px; color: rgba(255,255,255,.7); text-align: center; }
.store-card-featured .stat-num { font-size: 14px; font-weight: 700; color: #fff; display: block; }

/* ── COUPON CARDS ────────────────────────────────────────── */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.coupon-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.coupon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.coupon-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--clr-border);
}
.coupon-store-logo {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  object-fit: contain;
  padding: 4px;
  background: var(--clr-white);
}
.coupon-store-info .name { font-size: 13px; font-weight: 700; color: var(--clr-dark); }
.coupon-store-info .cat  { font-size: 11px; color: var(--clr-muted); }
.coupon-card-body { padding: 14px 16px; }
.coupon-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.coupon-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}
.badge-discount { background: var(--clr-accent-lt); color: #92400E; }
.badge-verified  { background: #D1FAE5; color: #065F46; }
.badge-exclusive { background: #FEE2E2; color: #991B1B; }
.badge-exclusive::before { content: 'EXCLUSIVE'; font-size: 10px; letter-spacing: .05em; }
.badge-vip { background: var(--clr-navy); color: var(--clr-accent); }
.badge-expiry { background: var(--clr-bg); color: var(--clr-muted); }
.badge-flash { background: #FF6B35; color: #fff; }

/* Coupon code reveal button — clicks go to single coupon page */
.coupon-code-btn {
  width: 100%;
  height: 42px;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-md);
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(245,197,24,.3);
}
.coupon-code-btn:hover {
  background: var(--clr-accent-dk);
  border-color: var(--clr-accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,197,24,.4);
}
.coupon-code-btn:active { transform: translateY(0); }

.coupon-expiry {
  margin-top: 8px;
  font-size: 11px;
  color: var(--clr-muted);
  text-align: center;
}
.coupon-expiry.urgent { color: var(--clr-danger); font-weight: 600; }

/* CTA button on coupon */
.btn-get-deal {
  width: 100%;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--clr-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px;
}
.btn-get-deal:hover { background: #2d3561; }

/* ── IMAGE DEAL CARDS (VoucherCodes style Image 4) ───────── */
.image-deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.image-deal-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .25s;
}
.image-deal-card:hover { transform: scale(1.02); }
.image-deal-card img { width: 100%; height: 100%; object-fit: cover; }
.image-deal-card .store-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--clr-dark);
}
.image-deal-card .deal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 28px 12px 12px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}

/* Featured image deal (full-width dark banner) */
.featured-banner {
  background: var(--clr-navy);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.featured-banner::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: rgba(245,197,24,.08);
  border-radius: 50%;
}
.featured-banner-text h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.featured-banner-text p { font-size: 13px; color: rgba(255,255,255,.65); }
.btn-featured {
  padding: 10px 24px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.btn-featured:hover { background: var(--clr-accent-dk); }

/* ── SINGLE STORE / COUPON PAGE ──────────────────────────── */
.store-page-header {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 28px 0;
}
.store-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.store-page-logo {
  width: 100px; height: 72px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 8px;
  object-fit: contain;
  background: var(--clr-white);
  flex-shrink: 0;
}
.store-page-info h1 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.store-page-info .store-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--clr-muted); margin-bottom: 10px;
}
.store-meta-item { display: flex; align-items: center; gap: 4px; }
.store-meta-item .dot { color: var(--clr-success); font-size: 20px; line-height: 0; }
.store-rating { display: flex; align-items: center; gap: 4px; }
.star { color: var(--clr-accent); font-size: 14px; }

/* Store page layout */
.store-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 28px 0;
}

/* Sidebar */
.sidebar {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.sidebar-box h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.filter-list { display: flex; flex-direction: column; gap: 2px; }
.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--clr-body);
  cursor: pointer;
  transition: background .15s;
}
.filter-item:hover { background: var(--clr-bg); }
.filter-item input[type="checkbox"] { accent-color: var(--clr-accent); }
.filter-item.active { font-weight: 600; color: var(--clr-dark); }

/* Coupon list (single store page) */
.coupon-list { display: flex; flex-direction: column; gap: 12px; }
.coupon-list-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: border-color .2s, box-shadow .2s;
}
.coupon-list-item:hover { border-color: var(--clr-accent); box-shadow: 0 2px 12px rgba(245,197,24,.15); }
.coupon-list-item.flash { border-left: 4px solid var(--clr-exclusive); }
.coupon-list-item.recommended { border-left: 4px solid var(--clr-navy); }

.coupon-discount-big {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-exclusive);
  line-height: 1.1;
  text-align: center;
}
.coupon-discount-big span { display: block; font-size: 11px; font-weight: 600; color: var(--clr-muted); text-transform: uppercase; letter-spacing: .06em; }

.coupon-list-info .title { font-size: 14px; font-weight: 600; color: var(--clr-dark); margin-bottom: 4px; }
.coupon-list-info .meta {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 12px; color: var(--clr-muted);
}
.verified-tick { color: var(--clr-success); font-size: 14px; }
.uses-count { font-size: 12px; color: var(--clr-muted); }

.coupon-list-action { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; min-width: 130px; }
.btn-reveal {
  width: 130px; height: 38px;
  border: 2px dashed var(--clr-accent);
  border-radius: var(--radius-md);
  background: var(--clr-accent-lt);
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--clr-dark);
  text-transform: uppercase;
  transition: background .2s;
  position: relative;
}
.btn-reveal:hover { background: var(--clr-accent); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-muted);
  padding: 12px 0;
}
.breadcrumb a { color: var(--clr-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--clr-dark); }
.breadcrumb .sep { font-size: 10px; }
.breadcrumb .current { color: var(--clr-dark); font-weight: 500; }

/* ── CATEGORY ARCHIVE PAGE ───────────────────────────────── */
.archive-header {
  background: var(--clr-navy);
  padding: 32px 0;
}
.archive-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.archive-subtitle { color: rgba(255,255,255,.6); font-size: 15px; margin-top: 4px; }

/* Filter bar (GrabOn style) */
.filter-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}
.filter-bar-inner { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-pill {
  padding: 5px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--clr-body);
  white-space: nowrap;
  background: var(--clr-white);
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--clr-dark);
  border-color: var(--clr-dark);
  color: #fff;
}
.filter-pill.flash.active { background: var(--clr-exclusive); border-color: var(--clr-exclusive); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-section {
  background: var(--clr-navy);
  padding: 48px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.newsletter-text p { color: rgba(255,255,255,.6); font-size: 15px; }
.newsletter-form { display: flex; gap: 0; max-width: 360px; flex: 1; min-width: 260px; }
.newsletter-form input {
  flex: 1; height: 46px;
  padding: 0 16px;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 14px; outline: none;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { background: rgba(255,255,255,.15); }
.newsletter-form button {
  height: 46px; padding: 0 20px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 13px; font-weight: 700;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--clr-accent-dk); }

/* ── SITE FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.65);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand .logo span { color: var(--clr-accent); }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col li a:hover { color: var(--clr-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom a:hover { color: var(--clr-accent); }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}
.page-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-body);
  background: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.page-btn:hover, .page-btn.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-dark);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .category-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .image-deals-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .header-search    { display: none; }
  .primary-nav ul   { padding: 0 16px; }
  .hero-banner      { padding: 28px 0; }
  .category-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .stores-grid      { grid-template-columns: repeat(3, 1fr); }
  .coupons-grid     { grid-template-columns: 1fr; }
  .store-page-layout { grid-template-columns: 1fr; }
  .sidebar          { position: static; }
  .image-deals-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .coupon-list-item { grid-template-columns: 60px 1fr; }
  .coupon-list-action { grid-column: 1/-1; flex-direction: row; }
  .newsletter-inner { flex-direction: column; }
  .trust-bar-inner  { gap: 16px; }
	
	.ncf-slide-container .ncf-slide-inner {
    pointer-events: auto;
    text-align: center;
}
	.ncf-slide-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
    justify-content: center;
}
}

@media (max-width: 480px) {
  .category-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title          { font-size: 26px; }
  .image-deals-grid    { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   ADDITIONS — v2
   Banner placeholders, About section, Login, User dashboard,
   Single coupon detail page, Store CPT cards
   ============================================================ */

/* ── BANNER PLACEHOLDERS ─────────────────────────────────── */
.banners-3col { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:14px; }
.banners-1col { display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:14px; }
.banners-2col { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:14px; }

.banner-placeholder {
  position:relative; border-radius: 0; overflow:hidden;
  background:var(--clr-navy); min-height:180px; display:flex;
  align-items:center; justify-content:center; text-align:center;
  cursor:pointer; transition:opacity .2s;
}
.banner-placeholder:hover { opacity:.92; }
.banner-placeholder img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.banner-placeholder .banner-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(26,31,54,.6) 0%,rgba(26,31,54,.2) 100%);
}
.banner-placeholder .banner-text {
  position:relative; z-index:1; padding:16px;
}
.banner-placeholder .banner-text h3 {
  font-family:var(--font-head); font-size:18px; font-weight:700;
  color:#fff; margin-bottom:6px; line-height:1.2;
}
.banner-placeholder .banner-text p { font-size:13px; color:rgba(255,255,255,.75); }
.banner-placeholder .banner-btn {
  display:inline-block; margin-top:10px; padding:7px 20px;
  background:var(--clr-accent); color:var(--clr-dark);
  border-radius:var(--radius-pill); font-size:12px; font-weight:700;
}
/* Admin placeholder state */
.banner-placeholder.empty {
  border:2px dashed var(--clr-border); background:var(--clr-bg);
  min-height:120px;
}
.banner-placeholder.empty .banner-text h3 { color:var(--clr-muted); font-size:14px; }

/* ── ABOUT + DISCLAIMER SECTION ──────────────────────────── */
.about-section {
  background:var(--clr-white);
  border-top:1px solid var(--clr-border);
  padding:48px 0;
}
.about-grid {
  display:grid; grid-template-columns:2fr 1fr; gap:48px; align-items:start;
}
.about-title {
  font-family:var(--font-head); font-size:22px; font-weight:700;
  color:var(--clr-dark); margin-bottom:14px; letter-spacing:-.3px;
}
.about-body { font-size:14px; line-height:1.8; color:var(--clr-body); }
.about-body p { margin-bottom:12px; }
.about-body a { color:var(--clr-accent-dk); font-weight:500; }
.disclaimer-box {
  background:var(--clr-bg); border:1px solid var(--clr-border);
  border-radius:var(--radius-lg); padding:20px;
}
.disclaimer-box h4 {
  font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--clr-muted); margin-bottom:10px;
}
.disclaimer-box p { font-size:12px; line-height:1.7; color:var(--clr-muted); }

/* ── COUPON DETAIL MODAL / PAGE ───────────────────────────── */
.coupon-detail-wrap {
  max-width:760px; margin:32px auto;
  background:var(--clr-white); border-radius:var(--radius-xl);
  border:1px solid var(--clr-border); overflow:hidden;
}
.coupon-detail-header {
  display:flex; align-items:center; gap:20px;
  padding:24px 28px; border-bottom:1px solid var(--clr-border);
}
.coupon-detail-discount {
  font-family:var(--font-head); font-size:28px; font-weight:700;
  color:var(--clr-exclusive); min-width:100px; text-align:center;
  line-height:1.1;
}
.coupon-detail-discount span { display:block; font-size:11px; font-weight:600; color:var(--clr-muted); text-transform:uppercase; letter-spacing:.06em; }
.coupon-detail-info h2 { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--clr-dark); margin-bottom:4px; }
.coupon-detail-info .meta { font-size:13px; color:var(--clr-muted); display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.coupon-detail-store-logo { width:56px; height:56px; object-fit:contain; border:1px solid var(--clr-border); border-radius:var(--radius-md); padding:6px; margin-left:auto; flex-shrink:0; }

.coupon-detail-body { padding:24px 28px; }
.coupon-code-display {
  border:2px dashed var(--clr-accent); border-radius:var(--radius-lg);
  padding:18px 24px; display:flex; align-items:center; justify-content:space-between;
  background:var(--clr-accent-lt); margin-bottom:20px;
}
.coupon-code-display .code-text {
  font-family:var(--font-head); font-size:26px; font-weight:800;
  letter-spacing:3px; color:var(--clr-dark);
}
.btn-copy-code {
  padding:8px 18px; background:var(--clr-white);
  border:1.5px solid var(--clr-accent); border-radius:var(--radius-md);
  font-size:13px; font-weight:700; color:var(--clr-dark);
  display:flex; align-items:center; gap:6px; transition:background .2s;
}
.btn-copy-code:hover { background:var(--clr-accent); }
.btn-go-store {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 28px; background:var(--clr-navy); color:#fff;
  border-radius:var(--radius-md); font-size:14px; font-weight:700;
  width:100%; margin-bottom:16px; transition:background .2s;
}
.btn-go-store:hover { background:#2d3561; }

.coupon-meta-row {
  display:flex; gap:20px; flex-wrap:wrap;
  font-size:13px; color:var(--clr-muted);
  padding:14px 0; border-top:1px solid var(--clr-border);
}
.coupon-meta-row .meta-item { display:flex; align-items:center; gap:5px; }

.tnc-table { width:100%; border-collapse:collapse; margin:16px 0; font-size:14px; }
.tnc-table tr { border-bottom:1px solid var(--clr-border); }
.tnc-table td { padding:10px 14px; }
.tnc-table td:first-child { color:var(--clr-muted); width:130px; font-weight:500; }

.coupon-steps { list-style:decimal; padding-left:20px; }
.coupon-steps li { font-size:13px; padding:5px 0; color:var(--clr-body); line-height:1.6; }
.coupon-steps li a { color:var(--clr-exclusive); font-weight:600; }

.vote-row { display:flex; align-items:center; justify-content:center; gap:12px; padding:20px 0; border-top:1px solid var(--clr-border); margin-top:16px; }
.vote-row span { font-size:14px; color:var(--clr-muted); }
.btn-vote {
  padding:8px 20px; border:1.5px solid var(--clr-border);
  border-radius:var(--radius-pill); font-size:13px; font-weight:600;
  background:var(--clr-white); color:var(--clr-body);
  display:flex; align-items:center; gap:6px; transition:all .2s;
}
.btn-vote:hover { border-color:var(--clr-success); color:var(--clr-success); }
.btn-vote.no:hover { border-color:var(--clr-danger); color:var(--clr-danger); }

/* Related coupons sidebar */
.related-coupons { display:flex; flex-direction:column; gap:10px; }
.related-coupon-card {
  background:var(--clr-white); border:1px solid var(--clr-border);
  border-radius:var(--radius-md); padding:12px; cursor:pointer;
  transition:border-color .2s;
}
.related-coupon-card:hover { border-color:var(--clr-accent); }
.related-coupon-card .r-store { font-size:11px; font-weight:700; color:var(--clr-muted); margin-bottom:2px; }
.related-coupon-card .r-disc { font-size:14px; font-weight:700; color:var(--clr-exclusive); }
.related-coupon-card .r-title { font-size:12px; color:var(--clr-body); margin-top:2px; line-height:1.4; }
.related-coupon-card .r-logo { width:36px; height:24px; object-fit:contain; float:right; margin-left:8px; }

/* ── LOGIN / REGISTER MODAL ──────────────────────────────── */
.auth-modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.5);
  z-index:2000; display:none; align-items:center; justify-content:center;
}
.auth-modal-overlay.open { display:flex; }
.auth-modal {
  background:var(--clr-white); border-radius:var(--radius-xl);
  padding:36px; width:100%; max-width:420px;
  box-shadow:var(--shadow-lg); position:relative;
}
.auth-modal h2 { font-family:var(--font-head); font-size:22px; font-weight:700; color:var(--clr-dark); margin-bottom:6px; }
.auth-modal p { font-size:13px; color:var(--clr-muted); margin-bottom:24px; }
.auth-close { position:absolute; top:16px; right:16px; font-size:20px; color:var(--clr-muted); background:none; border:none; cursor:pointer; }
.auth-tabs { display:flex; gap:0; margin-bottom:24px; border:1.5px solid var(--clr-border); border-radius:var(--radius-md); overflow:hidden; }
.auth-tab { flex:1; padding:9px; font-size:13px; font-weight:600; background:var(--clr-white); color:var(--clr-muted); border:none; cursor:pointer; transition:all .2s; }
.auth-tab.active { background:var(--clr-navy); color:#fff; }
.auth-field { margin-bottom:16px; }
.auth-field label { display:block; font-size:12px; font-weight:600; color:var(--clr-body); margin-bottom:6px; }
.auth-field input {
  width:100%; height:42px; padding:0 14px;
  border:1.5px solid var(--clr-border); border-radius:var(--radius-md);
  font-size:14px; color:var(--clr-dark); outline:none;
  font-family:var(--font-body); transition:border-color .2s;
}
.auth-field input:focus { border-color:var(--clr-accent); }
.btn-auth-submit {
  width:100%; height:44px; background:var(--clr-accent);
  color:var(--clr-dark); border-radius:var(--radius-md);
  font-size:14px; font-weight:700; border:none; cursor:pointer; margin-top:4px;
  transition:background .2s;
}
.btn-auth-submit:hover { background:var(--clr-accent-dk); }
.auth-divider { text-align:center; font-size:12px; color:var(--clr-muted); margin:16px 0; }
.btn-social-login {
  width:100%; height:40px; border:1.5px solid var(--clr-border);
  border-radius:var(--radius-md); font-size:13px; font-weight:600;
  background:var(--clr-white); color:var(--clr-body); cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-bottom:8px; transition:border-color .2s;
}
.btn-social-login:hover { border-color:var(--clr-accent); }

/* ── USER DASHBOARD ──────────────────────────────────────── */
.dashboard-wrap { padding:32px 0; }
.dashboard-grid { display:grid; grid-template-columns:240px 1fr; gap:28px; }
.dashboard-sidebar { display:flex; flex-direction:column; gap:8px; }
.dashboard-nav-item {
  display:flex; align-items:center; gap:10px; padding:10px 14px;
  border-radius:var(--radius-md); font-size:14px; font-weight:500;
  color:var(--clr-body); cursor:pointer; transition:background .15s;
}
.dashboard-nav-item:hover, .dashboard-nav-item.active {
  background:var(--clr-accent-lt); color:var(--clr-dark); font-weight:600;
}
.dashboard-nav-item .icon { font-size:16px; }
.dashboard-stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:24px; }
.dashboard-stat {
  background:var(--clr-white); border:1px solid var(--clr-border);
  border-radius:var(--radius-lg); padding:16px; text-align:center;
}
.dashboard-stat .stat-number { font-family:var(--font-head); font-size:28px; font-weight:700; color:var(--clr-dark); }
.dashboard-stat .stat-label { font-size:12px; color:var(--clr-muted); margin-top:4px; }
.dashboard-stat .stat-sub { font-size:13px; font-weight:600; color:var(--clr-success); margin-top:2px; }

/* Coupon history table */
.history-table { width:100%; border-collapse:collapse; font-size:13px; }
.history-table th { text-align:left; padding:10px 14px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--clr-muted); border-bottom:1px solid var(--clr-border); }
.history-table td { padding:12px 14px; border-bottom:1px solid var(--clr-border); color:var(--clr-body); vertical-align:middle; }
.history-table tr:hover td { background:var(--clr-bg); }
.status-pill { padding:3px 10px; border-radius:var(--radius-pill); font-size:11px; font-weight:700; }
.status-pill.active { background:#D1FAE5; color:#065F46; }
.status-pill.expired { background:#FEE2E2; color:#991B1B; }
.status-pill.used { background:var(--clr-accent-lt); color:#92400E; }

/* ── STORES PAGE ─────────────────────────────────────────── */
.stores-page-header { background:var(--clr-navy); padding:36px 0; }
.az-filter { display:flex; flex-wrap:wrap; gap:4px; padding:16px 0; }
.az-btn { width:32px; height:32px; border-radius:var(--radius-sm); border:1.5px solid var(--clr-border); background:var(--clr-white); font-size:13px; font-weight:600; color:var(--clr-body); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .15s; }
.az-btn:hover, .az-btn.active { background:var(--clr-accent); border-color:var(--clr-accent); color:var(--clr-dark); }
.stores-alpha-section { margin-bottom:28px; }
.stores-alpha-section h3 { font-family:var(--font-head); font-size:20px; font-weight:700; color:var(--clr-dark); padding:12px 0; border-bottom:1px solid var(--clr-border); margin-bottom:14px; }

/* ── ADMIN META BOX STYLES ───────────────────────────────── */
.ncf-meta-table { width:100%; border-collapse:collapse; }
.ncf-meta-table tr { border-bottom:1px solid #f0f0f0; }
.ncf-meta-table td { padding:10px 8px; vertical-align:top; }
.ncf-meta-table td:first-child { font-weight:600; width:200px; font-size:13px; color:#444; padding-top:14px; }
.ncf-meta-table input[type=text],
.ncf-meta-table input[type=url],
.ncf-meta-table input[type=date],
.ncf-meta-table input[type=number],
.ncf-meta-table textarea,
.ncf-meta-table select { width:100%; padding:7px 10px; border:1px solid #ddd; border-radius:4px; font-size:13px; }
.ncf-meta-table textarea { height:70px; resize:vertical; }
.ncf-checkbox-group { display:flex; flex-wrap:wrap; gap:12px; padding-top:6px; }
.ncf-checkbox-group label { display:flex; align-items:center; gap:6px; font-size:13px; font-weight:500; cursor:pointer; }
.ncf-checkbox-group input[type=checkbox] { width:15px; height:15px; accent-color:#F5C518; }
.ncf-image-preview { width:80px; height:50px; object-fit:contain; border:1px solid #ddd; border-radius:4px; margin-top:6px; display:block; }

/* ── RESPONSIVE ADDITIONS ────────────────────────────────── */
@media(max-width:768px){
  .banners-3col { grid-template-columns:1fr; }
  .banners-2col { grid-template-columns:1fr; }
  .about-grid { grid-template-columns:1fr; }
  .dashboard-grid { grid-template-columns:1fr; }
  .dashboard-stat-grid { grid-template-columns:repeat(2,1fr); }
  .coupon-detail-wrap { margin:0; border-radius:0; }
  .coupon-code-display { flex-direction:column; gap:12px; text-align:center; }
  .stores-page-header { padding:24px 0; }
}

/* ── COUPON LIST ITEM VARIANTS (exclusive/recommended borders) ── */
.coupon-list-item.exclusive   { border-left: 4px solid #92400E; background: linear-gradient(to right, #FFFBEB 0%, #fff 80px); }
.coupon-list-item.recommended { border-left: 4px solid var(--clr-navy); }
.coupon-list-item.flash       { border-left: 4px solid var(--clr-exclusive); }

/* ── SHOW DETAILS BUTTON ──────────────────────────────────── */
.show-details-btn {
  background:none;border:none;color:var(--clr-muted);font-size:12px;
  cursor:pointer;padding:4px 0;font-family:var(--font-body);
  display:flex;align-items:center;gap:4px;
}
.show-details-btn:hover { color:var(--clr-dark); }

/* ── TNC CONTENT STYLES ──────────────────────────────────── */
.ncf-tnc-content ul,
.tnc-rendered ul  { list-style: disc; padding-left: 20px; margin: 8px 0; }
.ncf-tnc-content ol,
.tnc-rendered ol  { list-style: decimal; padding-left: 20px; margin: 8px 0; }
.ncf-tnc-content li,
.tnc-rendered li  { padding: 3px 0; line-height: 1.7; font-size: 13.5px; }
.ncf-tnc-content a,
.tnc-rendered a   { color: var(--clr-exclusive); font-weight: 600; }
.ncf-tnc-content strong,
.tnc-rendered strong { color: var(--clr-dark); }
.ncf-tnc-content p,
.tnc-rendered p   { margin-bottom: 8px; }

/* ============================================================
   PAGE TEMPLATES — About, Contact, FAQ, Legal Pages
   ============================================================ */

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--clr-navy) 0%, #2d3561 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero-badge {
  display: inline-block;
  background: rgba(245,197,24,.15);
  color: var(--clr-accent);
  border: 1px solid rgba(245,197,24,.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px,5vw,44px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto;
}

/* ── CONTENT WRAP ────────────────────────────────────────── */
.page-content-wrap { padding: 60px 0 80px; }

.page-section { margin-bottom: 64px; }
.page-section--shaded {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
/* Legal pages don't use shaded sections — override padding */
.legal-content-wrap .page-section--shaded { padding: 0; background: none; border-radius: 0; }
.page-section h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.page-section p { margin-bottom: 14px; line-height: 1.75; }
.text-center { text-align: center; }

/* ── TWO COLUMN LAYOUT ───────────────────────────────────── */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.section-two-col--reverse { direction: rtl; }
.section-two-col--reverse > * { direction: ltr; }
@media(max-width:768px) {
  .section-two-col { grid-template-columns: 1fr; }
  .section-two-col--reverse { direction: ltr; }
}

/* ── STATS HIGHLIGHT CARD ────────────────────────────────── */
.section-highlight-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  box-shadow: var(--shadow-md);
}
.highlight-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--clr-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--clr-dark); margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--clr-body); line-height: 1.65; }

/* ── HOW IT WORKS STEPS ──────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--clr-dark); margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: var(--clr-body); line-height: 1.65; margin: 0; }

/* ── NOTICE BOX ──────────────────────────────────────────── */
.notice-box {
  background: var(--clr-accent-lt);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--clr-body);
  line-height: 1.65;
}

/* ── COMMITMENT LIST ─────────────────────────────────────── */
.commitment-list { display: flex; flex-direction: column; gap: 12px; }
.commitment-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
}
.commitment-item span {
  width: 28px; height: 28px;
  background: var(--clr-success);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── CTA STRIP ───────────────────────────────────────────── */
.page-cta-strip {
  background: linear-gradient(135deg, var(--clr-navy) 0%, #2d3561 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
}
.page-cta-strip h2 { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.page-cta-strip p  { color: rgba(255,255,255,.75); margin-bottom: 28px; font-size: 16px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.btn-cta-primary:hover { background: var(--clr-accent-dk); transform: translateY(-1px); }
.btn-cta-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.2); }
.btn-primary-link {
  display: inline-flex;
  align-items: center;
  color: var(--clr-navy);
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 2px;
  transition: color .2s;
}
.btn-primary-link:hover { color: var(--clr-accent-dk); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:768px) { .contact-cards-row { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card-icon { font-size: 36px; margin-bottom: 14px; }
.contact-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--clr-dark); margin-bottom: 10px; }
.contact-card p  { font-size: 14px; color: var(--clr-body); line-height: 1.65; margin-bottom: 14px; }
.contact-link { color: var(--clr-navy); font-weight: 600; font-size: 14px; word-break: break-all; }
.contact-link:hover { color: var(--clr-accent-dk); }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form-wrap { max-width: 700px; margin: 0 auto; }
.contact-form-intro { text-align: center; margin-bottom: 36px; }
.contact-form-intro h2 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--clr-dark); margin-bottom: 10px; }
.ncf-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px) { .ncf-contact-form .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--clr-dark); }
.form-group .req { color: var(--clr-danger); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--clr-dark);
  background: var(--clr-white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clr-navy); }
.form-group textarea { resize: vertical; }
.btn-form-submit {
  background: var(--clr-navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: background .2s, transform .2s;
  display: block;
  width: 100%;
}
.btn-form-submit:hover { background: var(--clr-accent); color: var(--clr-dark); transform: translateY(-1px); }
.form-privacy-note { font-size: 12px; color: var(--clr-muted); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-privacy-note a { color: var(--clr-navy); }

/* ── CONTACT FAQ PROMPT ──────────────────────────────────── */
.contact-faq-prompt {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--clr-accent-lt);
  border: 1px solid rgba(245,197,24,.4);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
@media(max-width:680px) { .contact-faq-prompt { flex-direction: column; text-align: center; } }
.faq-prompt-icon { font-size: 36px; flex-shrink: 0; }
.contact-faq-prompt h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--clr-dark); margin-bottom: 4px; }
.contact-faq-prompt p  { font-size: 14px; color: var(--clr-body); margin: 0; }
.contact-faq-prompt .btn-cta-primary,
.contact-faq-prompt .btn-cta-secondary {
  flex-shrink: 0;
  background: var(--clr-navy);
  color: #fff;
  padding: 12px 22px;
  font-size: 14px;
}
.contact-faq-prompt .btn-cta-primary:hover { background: var(--clr-accent); color: var(--clr-dark); }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-content-wrap { max-width: 820px; margin: 0 auto; }
.legal-summary-box {
  background: var(--clr-navy);
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.legal-summary-box strong { color: var(--clr-accent); }
.legal-toc {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-toc h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--clr-dark); margin-bottom: 12px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { color: var(--clr-navy); font-size: 14px; font-weight: 500; }
.legal-toc a:hover { color: var(--clr-accent-dk); }

.legal-section { margin-bottom: 40px; border-bottom: 1px solid var(--clr-border); padding-bottom: 40px; }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2::before {
  content: '';
  width: 4px; height: 22px;
  background: var(--clr-accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-section h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--clr-dark); margin: 16px 0 8px; }
.legal-section p  { font-size: 15px; line-height: 1.8; color: var(--clr-body); margin-bottom: 12px; }
.legal-section a  { color: var(--clr-navy); font-weight: 600; text-decoration: underline; }
.legal-list { padding-left: 20px; margin: 10px 0 14px; }
.legal-list li { font-size: 15px; line-height: 1.75; color: var(--clr-body); margin-bottom: 8px; list-style: disc; }
.legal-contact-block {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 12px;
}
.legal-contact-block p { margin-bottom: 6px !important; }

/* ── FAQ PAGE ────────────────────────────────────────────── */
.faq-search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto 36px;
}
.faq-search-bar input {
  width: 100%;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 14px 20px 14px 48px;
  font-size: 15px;
  color: var(--clr-dark);
  outline: none;
  transition: border-color .2s;
}
.faq-search-bar input:focus { border-color: var(--clr-navy); }
.faq-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 16px; }

.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--clr-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-body);
  background: var(--clr-white);
  transition: all .2s;
}
.faq-tab:hover, .faq-tab.active {
  background: var(--clr-navy);
  color: #fff;
  border-color: var(--clr-navy);
}

.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-border);
}
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--clr-white);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-dark);
  gap: 12px;
  background: none;
  border: none;
}
.faq-question:hover { color: var(--clr-navy); }
.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-muted);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--clr-body);
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p  { margin-bottom: 10px; }
.faq-answer ul,
.faq-answer ol { padding-left: 20px; margin: 8px 0 12px; }
.faq-answer li { margin-bottom: 6px; list-style: disc; }
.faq-answer ol li { list-style: decimal; }
.faq-answer a  { color: var(--clr-navy); font-weight: 600; text-decoration: underline; }

/* ── ABOUT PAGE EXTRAS ───────────────────────────────────── */
.about-hero { background: linear-gradient(135deg,var(--clr-navy) 0%,#1e3a5f 100%); }
.about-image-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 64px;
  height: 340px;
}
.about-image-banner img { width:100%; height:100%; object-fit:cover; }
.about-image-overlay {
  position: absolute; inset:0;
  background: linear-gradient(to right, rgba(15,15,15,.55) 0%, transparent 70%);
  display: flex; align-items: flex-end; padding: 28px 36px;
}
.about-image-pill {
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
}
.about-how-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-how-img img {
  width:100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-how-content h2 { font-family:var(--font-head); font-size:26px; font-weight:800; color:var(--clr-dark); margin-bottom:8px; }
.about-how-wrap .steps-list { gap:14px; margin-bottom:0; }
.about-how-wrap .step-item { padding:16px 20px; }

.about-cats-strip { margin-bottom:64px; }
.about-cats-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
}
@media(max-width:900px) { .about-cats-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:560px) { .about-cats-grid { grid-template-columns: repeat(2,1fr); } }
.about-cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-cat-card img { width:100%; height:100%; object-fit:cover; transition: transform .35s; }
.about-cat-card:hover img { transform: scale(1.06); }
.about-cat-label {
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color:#fff; font-weight:700; font-size:13px;
  padding:20px 10px 10px; text-align:center;
}
.about-commitment-img img {
  width:100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit:cover;
}
@media(max-width:768px) {
  .about-how-wrap { grid-template-columns:1fr; }
  .about-image-banner { height:220px; }
}

/* Form success banner */
.form-success-banner {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  color: #065f46;
  margin-bottom: 24px;
}

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-featured { margin-bottom: 40px; }
.blog-featured-inner {
  display: block;
  height: 420px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,.85) 0%, rgba(10,10,20,.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
}
.blog-featured-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-cat-tag {
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.blog-date { color: rgba(255,255,255,.7); font-size: 13px; }
.blog-featured-title { font-family:var(--font-head); font-size:clamp(22px,3vw,34px); font-weight:800; color:#fff; margin-bottom:10px; line-height:1.2; }
.blog-featured-excerpt { color:rgba(255,255,255,.75); font-size:15px; margin-bottom:16px; max-width:640px; }
.blog-read-more {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 700; font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
}

.blog-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.blog-filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--clr-border);
  font-size: 13px; font-weight: 600;
  color: var(--clr-body); background: var(--clr-white);
  transition: all .2s;
}
.blog-filter-btn:hover, .blog-filter-btn.active { background:var(--clr-navy); color:#fff; border-color:var(--clr-navy); }
.blog-filter-count { background:rgba(255,255,255,.2); padding:1px 6px; border-radius:var(--radius-pill); font-size:11px; }
.blog-filter-btn:not(.active) .blog-filter-count { background:var(--clr-bg); color:var(--clr-muted); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media(max-width:900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--clr-bg);
}
.blog-card-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .35s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-thumb-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:40px; background:var(--clr-bg); }
.blog-card-thumb .blog-cat-tag { position:absolute; top:12px; left:12px; }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 12px; color:var(--clr-muted); margin-bottom: 8px; display:flex; gap:6px; }
.blog-card-title { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--clr-dark); margin-bottom:8px; line-height:1.35; }
.blog-card-title a:hover { color: var(--clr-navy); }
.blog-card-excerpt { font-size:14px; color:var(--clr-body); line-height:1.65; margin-bottom:14px; flex:1; }
.blog-card-link { font-size:13px; font-weight:700; color:var(--clr-navy); margin-top:auto; }
.blog-card-link:hover { color:var(--clr-accent-dk); }

.blog-pagination { display:flex; gap:8px; justify-content:center; margin-bottom:48px; flex-wrap:wrap; }
.blog-pagination .page-numbers {
  padding:8px 16px; border-radius:var(--radius-md);
  border:1px solid var(--clr-border); font-size:14px;
  color:var(--clr-body); background:var(--clr-white);
}
.blog-pagination .page-numbers.current { background:var(--clr-navy); color:#fff; border-color:var(--clr-navy); }
.blog-pagination .page-numbers:hover:not(.current) { background:var(--clr-bg); }

.blog-empty { text-align:center; padding:80px 24px; color:var(--clr-muted); }
.blog-empty h3 { font-family:var(--font-head); font-size:20px; color:var(--clr-dark); margin-bottom:8px; }

.blog-newsletter-cta {
  display: flex; align-items: center; gap: 32px;
  background: linear-gradient(135deg,var(--clr-navy) 0%,#2d3561 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  color: #fff;
}
@media(max-width:680px) { .blog-newsletter-cta { flex-direction:column; padding:32px 24px; text-align:center; } }
.blog-newsletter-text h3 { font-family:var(--font-head); font-size:20px; font-weight:800; margin-bottom:6px; }
.blog-newsletter-text p  { color:rgba(255,255,255,.75); font-size:14px; }
.blog-newsletter-form { display:flex; gap:0; flex-shrink:0; }
.blog-newsletter-form input {
  padding:12px 18px; border:none; border-radius:var(--radius-pill) 0 0 var(--radius-pill);
  font-size:14px; width:220px; outline:none;
}
.blog-newsletter-form button {
  padding:12px 20px;
  background:var(--clr-accent); color:var(--clr-dark);
  font-weight:700; font-size:14px;
  border-radius:0 var(--radius-pill) var(--radius-pill) 0;
}

/* ── SINGLE POST ─────────────────────────────────────────── */
.post-hero {
  background: var(--clr-navy);
  padding: 60px 0 48px;
  background-size: cover;
  background-position: center;
}
.post-hero--has-image { min-height: 420px; display:flex; align-items:flex-end; }
.post-hero-overlay {
  width: 100%;
  background: linear-gradient(to top, rgba(10,12,26,.9) 0%, rgba(10,12,26,.5) 60%, transparent 100%);
  padding: 40px 0;
}
.post-hero--has-image .post-hero-overlay { padding: 60px 0 40px; }
.post-hero-inner { max-width: 800px; }
.post-breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(255,255,255,.6); margin-bottom:14px; flex-wrap:wrap; }
.post-breadcrumb a { color:rgba(255,255,255,.6); } .post-breadcrumb a:hover { color:var(--clr-accent); }
.post-hero-meta { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.post-read-time { color:rgba(255,255,255,.65); font-size:13px; }
.post-hero-title { font-family:var(--font-head); font-size:clamp(24px,4vw,40px); font-weight:800; color:#fff; line-height:1.15; margin-bottom:20px; }
.post-author-bar { display:flex; align-items:center; gap:12px; }
.post-author-avatar { border-radius:50%; object-fit:cover; }
.post-author-name { display:block; font-weight:700; color:#fff; font-size:14px; }
.post-author-date { color:rgba(255,255,255,.55); font-size:12px; }

.post-content-wrap { padding: 56px 0 80px; }
.post-layout { display:grid; grid-template-columns: minmax(0,1fr) 340px; gap:48px; margin-bottom:56px; }
@media(max-width:1024px) { .post-layout { grid-template-columns:1fr; } .post-sidebar { display:none; } }

/* Article body */
.post-intro { font-size:18px; line-height:1.75; color:var(--clr-body); font-weight:400; border-left:4px solid var(--clr-accent); padding-left:20px; margin-bottom:32px; }
.post-body { font-size:16px; line-height:1.85; color:var(--clr-body); }
.post-body h2 { font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--clr-dark); margin:36px 0 12px; }
.post-body h3 { font-family:var(--font-head); font-size:18px; font-weight:700; color:var(--clr-dark); margin:28px 0 10px; }
.post-body p  { margin-bottom:18px; }
.post-body ul, .post-body ol { padding-left:22px; margin-bottom:18px; }
.post-body li { margin-bottom:8px; list-style:disc; }
.post-body ol li { list-style:decimal; }
.post-body a  { color:var(--clr-navy); font-weight:600; text-decoration:underline; }
.post-body img { border-radius:var(--radius-lg); margin:24px 0; max-width:100%; }
.post-body blockquote { border-left:4px solid var(--clr-accent); padding:16px 20px; background:var(--clr-accent-lt); border-radius:0 var(--radius-md) var(--radius-md) 0; margin:24px 0; font-style:italic; }
.post-body strong { color:var(--clr-dark); }

.post-tags { display:flex; gap:8px; flex-wrap:wrap; margin:32px 0; }
.post-tag { padding:5px 14px; border-radius:var(--radius-pill); background:var(--clr-bg); border:1px solid var(--clr-border); font-size:13px; color:var(--clr-body); }
.post-tag:hover { background:var(--clr-accent-lt); border-color:var(--clr-accent); }

.post-share-bar { display:flex; align-items:center; gap:10px; padding:20px 0; border-top:1px solid var(--clr-border); border-bottom:1px solid var(--clr-border); margin:32px 0; flex-wrap:wrap; }
.post-share-bar span { font-size:14px; font-weight:600; color:var(--clr-dark); }
.share-btn { padding:8px 16px; border-radius:var(--radius-pill); font-size:13px; font-weight:600; border:1px solid var(--clr-border); color:var(--clr-body); background:var(--clr-white); transition:all .2s; }
.share-btn:hover { background:var(--clr-navy); color:#fff; border-color:var(--clr-navy); }

.post-author-card { display:flex; gap:20px; align-items:flex-start; background:var(--clr-bg); border:1px solid var(--clr-border); border-radius:var(--radius-lg); padding:24px; margin:32px 0; }
.post-author-card-avatar { border-radius:50%; flex-shrink:0; object-fit:cover; }
.post-author-card-name { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--clr-dark); margin-bottom:6px; }
.post-author-card-bio { font-size:14px; color:var(--clr-muted); line-height:1.6; margin:0; }

.post-prev-next { display:flex; justify-content:space-between; gap:16px; margin-top:32px; }
.post-nav-link { flex:1; border:1px solid var(--clr-border); border-radius:var(--radius-md); padding:16px 20px; background:var(--clr-white); }
.post-nav-link--next { text-align:right; }
.post-nav-link span { display:block; font-size:12px; color:var(--clr-muted); margin-bottom:4px; }
.post-nav-link strong { font-size:14px; color:var(--clr-dark); font-weight:600; line-height:1.4; }
.post-nav-link:hover { background:var(--clr-bg); border-color:var(--clr-navy); }

/* Sidebar */
.post-sidebar { display:flex; flex-direction:column; gap:24px; }
.sidebar-widget { background:var(--clr-white); border:1px solid var(--clr-border); border-radius:var(--radius-lg); padding:24px; }
.sidebar-widget-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--clr-dark); margin-bottom:16px; }
.sidebar-cta { text-align:center; background:linear-gradient(135deg,var(--clr-navy) 0%,#2d3561 100%); color:#fff; border:none; }
.sidebar-cta-icon { font-size:40px; margin-bottom:10px; }
.sidebar-cta h3 { font-family:var(--font-head); font-size:17px; font-weight:800; margin-bottom:8px; }
.sidebar-cta p  { font-size:13px; color:rgba(255,255,255,.75); }
.sidebar-cta .btn-cta-primary { background:var(--clr-accent); color:var(--clr-dark); padding:12px 20px; }

.sidebar-related { display:flex; flex-direction:column; gap:14px; }
.sidebar-related-item { display:flex; gap:12px; align-items:center; }
.sidebar-related-item img, .sidebar-related-placeholder { width:56px; height:56px; border-radius:var(--radius-sm); object-fit:cover; flex-shrink:0; }
.sidebar-related-placeholder { background:var(--clr-bg); display:flex; align-items:center; justify-content:center; font-size:20px; }
.sidebar-related-title { display:block; font-size:13px; font-weight:600; color:var(--clr-dark); line-height:1.4; }
.sidebar-related-date  { display:block; font-size:11px; color:var(--clr-muted); margin-top:2px; }
.sidebar-related-item:hover .sidebar-related-title { color:var(--clr-navy); }

.sidebar-newsletter input { width:100%; border:1px solid var(--clr-border); border-radius:var(--radius-md) var(--radius-md) 0 0; padding:10px 14px; font-size:13px; outline:none; margin-top:10px; }
.sidebar-newsletter button { width:100%; background:var(--clr-navy); color:#fff; font-weight:700; font-size:13px; padding:10px; border-radius:0 0 var(--radius-md) var(--radius-md); }
.sidebar-newsletter button:hover { background:var(--clr-accent); color:var(--clr-dark); }

.post-related-strip { border-top:1px solid var(--clr-border); padding-top:48px; }

/* ============================================================
   HOMEPAGE PROMO BANNER SLIDER
   ============================================================ */
.ncf-slider-section { padding: 0; background: var(--clr-bg); }
.ncf-slider {
  position: relative;
  overflow: hidden;
  height: 450px;
  user-select: none;
  width: 100%;
}
@media(max-width:900px) { .ncf-slider { height: 360px; } }
@media(max-width:600px) { .ncf-slider { height: 280px; } }

/* Container wrapper inside each slide — centres content at 1200px */
.ncf-slide-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.ncf-slide-container .ncf-slide-inner { pointer-events: auto; }

/* ── SLIDES ────────────────────────────────────────────────── */
.ncf-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.ncf-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.ncf-slide.exit {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .45s ease, transform .45s ease;
}

/* Slide backgrounds (CSS gradient fallback) */
.ncf-slide-bg {
  position: absolute; inset: 0;
  background-size: cover !important; background-position: center;
  transition: transform 6s linear;
}
.ncf-slide.active .ncf-slide-bg { transform: scale(1.04); }

.ncf-slide--1 .ncf-slide-bg { background: linear-gradient(135deg, #1A1F36 0%, #2d1b4e 50%, #1a1f36 100%); }
.ncf-slide--2 .ncf-slide-bg { background: linear-gradient(135deg, #0f2b4e 0%, #1a3a6e 50%, #0d2040 100%); }
.ncf-slide--3 .ncf-slide-bg { background: linear-gradient(135deg, #0c3527 0%, #1a5c40 50%, #0a2e22 100%); }
.ncf-slide--4 .ncf-slide-bg { background: linear-gradient(135deg, #2d1b00 0%, #4a2f00 50%, #1a1000 100%); }

.ncf-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%);
}

/* ── SLIDE CONTENT ─────────────────────────────────────────── */
.ncf-slide-inner {
  max-width: 560px;
  padding: 0;
}
@media(max-width:768px) { .ncf-slide-inner { max-width: 100%; } }

.ncf-slide-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}
.ncf-slide-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.ncf-slide-title span { color: var(--clr-accent); }
.ncf-slide-sub {
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 420px;
}
@media(max-width:480px) { .ncf-slide-sub { display: none; } }

/* Slide CTA buttons */
.ncf-slide-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  background: var(--clr-accent);
  color: var(--clr-dark);
  box-shadow: 0 4px 20px rgba(245,197,24,.35);
}
.ncf-slide-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,197,24,.45); }
.ncf-slide-btn--blue  { background: #3b82f6; color: #fff; box-shadow: 0 4px 20px rgba(59,130,246,.35); }
.ncf-slide-btn--blue:hover { box-shadow: 0 6px 28px rgba(59,130,246,.5); }
.ncf-slide-btn--teal  { background: #10b981; color: #fff; box-shadow: 0 4px 20px rgba(16,185,129,.35); }
.ncf-slide-btn--teal:hover { box-shadow: 0 6px 28px rgba(16,185,129,.5); }
.ncf-slide-btn--gold  { background: var(--clr-accent); color: var(--clr-dark); box-shadow: 0 4px 20px rgba(245,197,24,.4); }

/* ── DECORATIVE ELEMENTS ───────────────────────────────────── */
.ncf-slide-deco {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.deco-circle {
  position: absolute; border-radius: 50%;
  opacity: .08;
}
.deco-c1 { width:320px;height:320px;background:#F5C518;top:-80px;right:-40px; }
.deco-c2 { width:180px;height:180px;background:#fff;bottom:-60px;right:120px;opacity:.05; }
.deco-c3 { width:360px;height:360px;background:#3b82f6;top:-100px;right:-60px; }
.deco-c4 { width:200px;height:200px;background:#fff;bottom:-80px;right:180px;opacity:.05; }
.deco-c5 { width:340px;height:340px;background:#10b981;top:-80px;right:-40px; }
.deco-c6 { width:200px;height:200px;background:#fff;bottom:-60px;right:140px;opacity:.05; }
.deco-c7 { width:360px;height:360px;background:#F5C518;top:-100px;right:-80px; }
.deco-c8 { width:220px;height:220px;background:#fff;bottom:-80px;right:200px;opacity:.05; }

.deco-tag {
  position: absolute; top: 28px; right: 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.deco-badge {
  position: absolute; bottom: 32px; right: 32px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-family: var(--font-head);
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.5px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(245,197,24,.4);
  transform: rotate(-2deg);
}
.deco-badge--blue { background:#3b82f6;color:#fff;box-shadow:0 8px 24px rgba(59,130,246,.4); }
.deco-badge--teal { background:#10b981;color:#fff;box-shadow:0 8px 24px rgba(16,185,129,.4); }
.deco-badge--gold { background:var(--clr-accent);color:var(--clr-dark); }
@media(max-width:680px) { .deco-badge { font-size:16px;padding:8px 16px;bottom:20px;right:20px; } .deco-tag { top:16px;right:16px; } }
@media(max-width:480px) { .deco-badge,.deco-tag { display:none; } }

/* ── PREV / NEXT BUTTONS ───────────────────────────────────── */
.ncf-slider-prev,
.ncf-slider-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.ncf-slider-prev { left: 16px; }
.ncf-slider-next { right: 16px; }
.ncf-slider-prev:hover,
.ncf-slider-next:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.08); }
@media(max-width:480px) { .ncf-slider-prev,.ncf-slider-next { width:36px;height:36px;font-size:20px; } }

/* ── DOTS ──────────────────────────────────────────────────── */
.ncf-slider-dots {
  position: absolute; bottom: 16px; left: 50%; z-index: 10;
  transform: translateX(-50%);
  display: flex; gap: 8px; align-items: center;
}
.ncf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; padding: 0; cursor: pointer;
  transition: background .25s, width .3s, border-radius .3s;
}
.ncf-dot.active {
  background: var(--clr-accent);
  width: 24px; border-radius: 4px;
}

/* ── PROGRESS BAR ──────────────────────────────────────────── */
.ncf-slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  height: 3px; background: rgba(255,255,255,.15);
}
.ncf-slider-progress-bar {
  height: 100%;
  background: var(--clr-accent);
  width: 0%;
  transition: none;
}

/* ── POPULAR STORES REDESIGN ─────────────────────────────── */
.ps-section { background: var(--clr-bg) !important; }
.ps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media(max-width:1100px) { .ps-grid { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:768px)  { .ps-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:480px)  { .ps-grid { grid-template-columns: repeat(2, 1fr); } }

/* Regular store card */
.ps-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  text-decoration: none;
  color: var(--clr-dark);
}
.ps-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--clr-accent);
}

/* Featured store card — spans 1 column, dark background */
.ps-card--featured {
  background: var(--clr-navy);
  border-color: var(--clr-navy);
  color: #fff;
  position: relative;
  padding-top: 36px;
}
.ps-card--featured:hover { border-color: var(--clr-accent); }
.ps-featured-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--clr-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* Logo area */
.ps-logo-wrap {
  width: 72px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ps-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--clr-navy);
}
.ps-card--featured .ps-logo-placeholder { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }
.ps-logo-text { font-weight: 800; font-size: 13px; color: #fff; }

.ps-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.3;
}
.ps-card--featured .ps-name { color: #fff; }

.ps-coupon-count {
  font-size: 12px;
  color: var(--clr-muted);
}
.ps-card--featured .ps-coupon-count { color: rgba(255,255,255,.6); }

/* Featured card big counter */
.ps-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}
.ps-count-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ps-count-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── CONTACT FORM SUCCESS STATE ──────────────────────────── */
.contact-success-state {
  position: relative;
  text-align: center;
  padding: 56px 40px 48px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #d1fae5 100%);
  border: 2px solid #6ee7b7;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

/* Confetti decorative elements */
.css-confetti {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.css-confetti span {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 2px;
  animation: confettiFall 4s infinite;
  opacity: 0;
}
.css-confetti span:nth-child(1)  { left:10%;  background:#F5C518; animation-delay:0s;    width:8px;height:8px; }
.css-confetti span:nth-child(2)  { left:25%;  background:#10b981; animation-delay:.4s;   border-radius:50%; }
.css-confetti span:nth-child(3)  { left:40%;  background:#3b82f6; animation-delay:.8s;   width:6px;height:14px; }
.css-confetti span:nth-child(4)  { left:55%;  background:#F5C518; animation-delay:1.2s;  border-radius:50%; }
.css-confetti span:nth-child(5)  { left:65%;  background:#ef4444; animation-delay:.2s;   width:12px;height:6px; }
.css-confetti span:nth-child(6)  { left:75%;  background:#8b5cf6; animation-delay:.6s;   }
.css-confetti span:nth-child(7)  { left:85%;  background:#10b981; animation-delay:1s;    width:7px;height:7px; }
.css-confetti span:nth-child(8)  { left:92%;  background:#F5C518; animation-delay:1.4s;  border-radius:50%;width:9px;height:9px; }

@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 1; }
  80%  { opacity: .8; }
  100% { transform: translateY(200px) rotate(360deg); opacity: 0; }
}

.contact-success-icon {
  font-size: 64px;
  margin-bottom: 16px;
  display: block;
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.contact-success-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 12px;
}
.contact-success-sub {
  font-size: 15px;
  color: #047857;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-success-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.contact-success-meta-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.meta-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-success-meta-item strong { display: block; font-size: 14px; font-weight: 700; color: #065f46; margin-bottom: 2px; }
.contact-success-meta-item p { font-size: 13px; color: #047857; line-height: 1.6; margin: 0; }
.contact-success-meta-item a { color: #065f46; font-weight: 700; text-decoration: underline; }

.contact-success-actions { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-success-actions .btn-cta-primary { background: #059669; color: #fff; padding: 12px 28px; border-radius: var(--radius-pill); font-weight: 700; }
.contact-success-actions .btn-cta-primary:hover { background: #047857; }
.contact-success-new-msg { font-size: 14px; font-weight: 600; color: #059669; text-decoration: underline; }

/* Submit button loading */
.btn-submit-loading { display: inline-flex; align-items: center; gap: 8px; }
.btn-submit-loading::before {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 404 PAGE ────────────────────────────────────────────── */
.error404-wrap {
  min-height: 80vh;
  background: var(--clr-bg);
  padding: 64px 0 80px;
}
.error404-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* Big 404 number */
.error404-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -6px;
}
.err-4 { color: var(--clr-navy); }
.err-0 {
  width: clamp(70px, 12vw, 140px);
  height: clamp(70px, 12vw, 140px);
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 6vw, 64px);
  animation: float404 3s ease-in-out infinite;
  letter-spacing: 0;
  flex-shrink: 0;
}
.err-tag-inner { display: block; }
@keyframes float404 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

.error404-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.error404-sub {
  font-size: 16px;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Search bar */
.error404-search { margin-bottom: 32px; }
.error404-search-inner {
  display: flex;
  align-items: center;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: border-color .2s;
  max-width: 500px;
  margin: 0 auto;
}
.error404-search-inner:focus-within { border-color: var(--clr-accent); }
.error404-search-icon { font-size: 18px; flex-shrink: 0; }
.error404-search-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--clr-dark);
  background: transparent;
}
.error404-search-inner button {
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.error404-search-inner button:hover { background: var(--clr-accent-dk); }

/* Quick links */
.error404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.error404-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-body);
  background: var(--clr-white);
  transition: all .2s;
}
.error404-link:hover { background: var(--clr-navy); color: #fff; border-color: var(--clr-navy); }
.error404-link--hot { background: var(--clr-accent); color: var(--clr-dark); border-color: var(--clr-accent); }
.error404-link--hot:hover { background: var(--clr-accent-dk); border-color: var(--clr-accent-dk); color: var(--clr-dark); }

/* Suggested deals */
.error404-suggestions { max-width: 960px; margin: 0 auto; }
.error404-suggest-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-dark);
  text-align: center;
  margin-bottom: 24px;
}
.error404-deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media(max-width:900px) { .error404-deals-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .error404-deals-grid { grid-template-columns: 1fr; } }

.error404-deal-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: var(--clr-dark);
}
.error404-deal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.error404-exclusive-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.error404-deal-top { width: 52px; height: 36px; display: flex; align-items: center; justify-content: center; }
.error404-deal-top img { max-width: 100%; max-height: 100%; object-fit: contain; }
.error404-deal-initials {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--clr-navy); color: #fff;
  font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.error404-deal-discount { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--clr-exclusive); }
.error404-deal-name { font-size: 12px; font-weight: 700; color: var(--clr-muted); }
.error404-deal-title { font-size: 13px; color: var(--clr-dark); line-height: 1.4; }
.error404-deal-cta {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-navy);
  background: var(--clr-accent-lt);
  border: 1px dashed var(--clr-accent);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  width: 100%;
}

/* ── POPULAR BRANDS — CashKaro Style ────────────────────── */
.pb-section { background: var(--clr-white) !important; }
.pb-section .section-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--clr-dark); }

.pb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media(max-width:1100px) { .pb-grid { grid-template-columns: repeat(4,1fr); } }
@media(max-width:768px)  { .pb-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:480px)  { .pb-grid { grid-template-columns: repeat(2,1fr); } }

.pb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--clr-white);
  border: 1.5px solid #f0e8ff;
  border-radius: var(--radius-lg);
  padding: 0 12px 14px;
  text-decoration: none;
  color: var(--clr-dark);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  min-height: 160px;
}
.pb-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: var(--clr-accent);
}

/* Deal label at top — pink/red like screenshot */
.pb-hot-label {
  width: calc(100% + 24px);
  margin: 0 -12px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #e91e8c;
  background: #fff0f8;
  padding: 5px 8px;
  border-bottom: 1px solid #fce4f5;
  margin-bottom: 12px;
}

/* Logo area */
.pb-logo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 0 12px;
}
.pb-logo-area img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.pb-logo-text {
  font-weight: 800;
  font-size: 14px;
  color: var(--clr-dark);
  text-align: center;
  line-height: 1.3;
}

/* CTA button at bottom — blue like screenshot */
.pb-cta-btn {
  width: 100%;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  line-height: 1.3;
  transition: background .2s;
}
.pb-card:hover .pb-cta-btn { background: #1d4ed8; }

/* ── STORE SINGLE PAGE HEADER ────────────────────────────── */
.store-archive-header {
  background: linear-gradient(135deg, var(--clr-navy) 0%, #1e2d4a 100%);
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Breadcrumb */
.store-archive-header .breadcrumb { display:flex;align-items:center;gap:6px;font-size:13px; }
.store-archive-header .breadcrumb a { color:rgba(255,255,255,.5); }
.store-archive-header .breadcrumb a:hover { color:var(--clr-accent); }
.store-archive-header .breadcrumb .sep { color:rgba(255,255,255,.3); }
.store-archive-header .breadcrumb span:last-child { color:rgba(255,255,255,.8); }

/* Inner layout */
.store-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
@media(max-width:768px) {
  .store-header-inner { grid-template-columns: auto 1fr; }
  .store-header-action { grid-column: 1 / -1; }
}
@media(max-width:480px) {
  .store-header-inner { grid-template-columns: 1fr; text-align:center; }
}

/* Store logo */
.store-header-logo {
  width: 96px; height: 72px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.store-header-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.store-logo-initials {
  font-weight: 900; font-size: 22px; color: var(--clr-navy);
  font-family: var(--font-head);
}

/* Store info */
.store-hot-chip {
  display: inline-block;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--clr-accent);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 12px; border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.store-header-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.store-header-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 560px;
}
.store-header-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}
.store-stat { text-align: center; padding: 0 16px; }
.store-stat:first-child { padding-left: 0; }
.store-stat strong { display: block; font-size: 18px; font-weight: 800; color: #fff; line-height: 1; }
.store-stat span    { display: block; font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }
.store-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.15); }
.store-cashback-pill {
  display: inline-block;
  background: var(--clr-success);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-top: 10px;
}

/* Visit store button */
.store-header-action { text-align: center; flex-shrink: 0; }
.store-visit-btn {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 700; font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(245,197,24,.35);
}
.store-visit-btn:hover { background: var(--clr-accent-dk); transform: translateY(-2px); }
.store-visit-note { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 6px; }

/* ── ABOUT US — clean check list (no highlight/pointer) ──── */
.about-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
}
.about-check-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--clr-success);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

/* ── STICKY HOW IT WORKS BUTTON ──────────────────────────── */
.hiw-sticky-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  background: var(--clr-navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  box-shadow: -3px 0 16px rgba(0,0,0,.15);
  transition: background .2s, padding .2s;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hiw-sticky-btn:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 14px 14px;
}
.hiw-sticky-icon {
  font-size: 18px;
  writing-mode: initial;
  text-orientation: initial;
}
.hiw-sticky-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media(max-width:600px) { .hiw-sticky-btn { display: none; } }

/* ── HOW IT WORKS — HOMEPAGE STRIP ──────────────────────── */
.hiw-home-section { background: var(--clr-bg) !important; }
.hiw-home-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}
.hiw-home-step {
  flex: 1;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.hiw-home-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hiw-home-step--gold { background: var(--clr-accent-lt); border-color: var(--clr-accent); }
.hiw-home-arrow {
  display: flex;
  align-items: center;
  color: var(--clr-muted);
  font-size: 20px;
  padding: 0 6px;
  flex-shrink: 0;
  margin-top: 16px;
}
.hiw-home-num {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px;
  background: var(--clr-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.hiw-home-num--gold { background: var(--clr-accent); color: var(--clr-dark); }
.hiw-home-icon { font-size: 32px; margin-top: 8px; }
.hiw-home-step h3 {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--clr-dark);
}
.hiw-home-step p {
  font-size: 12px; color: var(--clr-muted); line-height: 1.6;
  margin: 0;
}
@media(max-width:900px) {
  .hiw-home-steps { flex-wrap: wrap; gap: 16px; }
  .hiw-home-arrow { display: none; }
  .hiw-home-step { min-width: calc(50% - 8px); flex: unset; }
}
@media(max-width:480px) {
  .hiw-home-step { min-width: 100%; }
}

/* ── HOW IT WORKS PAGE ───────────────────────────────────── */
.hiw-hero { background: linear-gradient(135deg, #1a1f36 0%, #0f3460 100%); }

/* Steps grid */
.hiw-steps-section { padding-bottom: 0; }
.hiw-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
@media(max-width:900px) {
  .hiw-steps-grid { flex-direction: column; }
  .hiw-step-connector { transform: rotate(90deg); margin: 0 auto; }
}

.hiw-step {
  flex: 1;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
  z-index: 1;
}
.hiw-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.hiw-step-num {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--clr-navy);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(26,31,54,.3);
}
.hiw-step:last-of-type .hiw-step-num { background: var(--clr-accent); color: var(--clr-dark); }

.hiw-step-icon { font-size: 44px; margin-top: 8px; }
.hiw-step h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 800;
  color: var(--clr-dark);
}
.hiw-step p { font-size: 14px; color: var(--clr-muted); line-height: 1.7; flex: 1; }
.hiw-step-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--clr-navy);
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 2px;
}
.hiw-step-link--gold { color: var(--clr-accent-dk); }

/* Connector arrow */
.hiw-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  margin-top: 48px;
  z-index: 0;
}
.hiw-connector-line {
  width: 100%; height: 2px;
  background: var(--clr-border);
  position: relative;
}
.hiw-connector-line::after {
  content: '›';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px; color: var(--clr-muted); line-height: 1;
}

/* Demo section */
.hiw-demo-section { margin-top: 64px; }
.hiw-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media(max-width:768px) { .hiw-demo-inner { grid-template-columns: 1fr; } }
.hiw-demo-img img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.hiw-demo-text h2 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800;
  color: var(--clr-dark); margin-bottom: 14px;
}
.hiw-demo-text p { font-size: 15px; line-height: 1.8; color: var(--clr-body); margin-bottom: 20px; }

/* Check list (used on both How It Works and About Us) */
.hiw-check-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.hiw-check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--clr-dark);
}
.hiw-check-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--clr-success); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

/* Deal types */
.hiw-types-section { margin-top: 64px; }
.hiw-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width:900px) { .hiw-types-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .hiw-types-grid { grid-template-columns: 1fr; } }
.hiw-type-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: box-shadow .2s, transform .2s;
}
.hiw-type-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hiw-type-icon { font-size: 32px; margin-bottom: 12px; }
.hiw-type-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--clr-dark); margin-bottom: 8px; }
.hiw-type-card p  { font-size: 13px; color: var(--clr-muted); line-height: 1.65; }

/* FAQs on How It Works */
.hiw-faqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media(max-width:768px) { .hiw-faqs { grid-template-columns: 1fr; } }
.hiw-faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.hiw-faq-item h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--clr-dark); margin-bottom: 8px; }
.hiw-faq-item p  { font-size: 14px; color: var(--clr-muted); line-height: 1.7; }
