/* ============================================================
   MyDealsWallet — Global Stylesheet  v3.0  (Red Edition)
   Unified design system for home.html + store pages
   Fonts: Outfit (display) + Plus Jakarta Sans (body)
   Primary: deep navy #0C1B3A   Accent: vivid red-orange #FF5C28
   Secondary accent: coral-pink #FF3D6B   Teal cashback: #00B09B
   ============================================================ */

/* ── IMPORTS ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand — deep navy */
  --primary:        #0C1B3A;
  --primary-mid:    #162548;
  --primary-light:  #1E3260;
  --primary-dark:   #081022;

  /* Accent — vivid red-orange */
  --accent:         #FF5C28;
  --accent-h:       #E04A1A;
  --accent-light:   #FFF0EB;
  --accent2:        #FF3D6B;

  /* Secondary — teal / cashback */
  --teal:           #00B09B;
  --teal-h:         #00957F;
  --teal-light:     #E0FDF9;

  /* Success / free shipping */
  --green:          #18A760;
  --green-h:        #148D52;
  --green-light:    #E8FAF0;

  /* Warning */
  --amber:          #F59E0B;
  --amber-light:    #FFF8E8;

  /* Danger / expired */
  --danger:         #B03030;
  --danger-light:   #FFF0F0;

  /* Surfaces */
  --surface:        #FFFFFF;
  --surface2:       #F4F6FB;
  --surface3:       #EBEEF8;
  --border:         #E3E7F1;
  --border2:        #CFD4E8;

  /* Typography */
  --text:           #0C1B3A;
  --text2:          #4A5378;
  --text3:          #8E94B8;

  /* Radius */
  --radius:         16px;
  --radius-sm:      10px;
  --radius-xs:      7px;

  /* Shadows (navy-tinted) */
  --shadow-xs:      0 1px 4px rgba(12,27,58,.06);
  --shadow:         0 2px 14px rgba(12,27,58,.08);
  --shadow-md:      0 4px 24px rgba(12,27,58,.11);
  --shadow-lg:      0 8px 40px rgba(12,27,58,.15);
  --shadow-card:    0 2px 10px rgba(12,27,58,.07), 0 0 0 1.5px var(--border);
  --shadow-hover:   0 8px 32px rgba(12,27,58,.14), 0 0 0 1.5px var(--border2);
  --shadow-accent:  0 4px 20px rgba(255,92,40,.38);

  /* Outer width */
  --max-w:          1280px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--surface2); color: var(--text); line-height: 1.55; -webkit-text-size-adjust: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--accent); color: #fff; padding: .5rem 1rem; z-index: 9999; font-size: .85rem; font-weight: 700; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header { background: var(--primary); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 20px rgba(0,0,0,.30); }
.header-top { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; height: 66px; display: flex; align-items: center; gap: 0; }

/* Logo */
.logo { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff; letter-spacing: -.5px; flex-shrink: 0; white-space: nowrap; align-items: center; gap: .25rem; }
.logo em { color: var(--accent); font-style: normal; }
.logo-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; display: inline-block; }

/* Search */
.search-wrapper { position: relative; flex: 0 1 440px; margin-left: 1.5rem; margin-right: 1.5rem; }
.search-form { display: flex; align-items: center; background: rgba(255,255,255,.10); border: 1.5px solid rgba(255,255,255,.15); border-radius: 50px; height: 42px; padding: 0 .5rem 0 1rem; gap: .5rem; transition: all .2s; }
.search-form:focus-within { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); box-shadow: 0 0 0 3px rgba(255,92,40,.25); }
.search-form svg { flex-shrink: 0; color: rgba(255,255,255,.55); width: 17px; height: 17px; }
.search-form input { background: none; border: none; outline: none; color: #fff; font-size: .875rem; font-family: 'Plus Jakarta Sans', sans-serif; width: 100%; font-weight: 500; }
.search-form input::placeholder { color: rgba(255,255,255,.40); }
.search-clear-btn { background: rgba(255,255,255,.15); border: none; color: #fff; width: 26px; height: 26px; border-radius: 50%; font-size: .75rem; display: none; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s; }
.search-clear-btn.visible { display: flex; }
.search-clear-btn:hover { background: rgba(255,255,255,.28); }

/* Search dropdown */
.search-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: var(--radius-sm); box-shadow: 0 8px 40px rgba(12,27,58,.18); z-index: 400; overflow: hidden; display: none; border: 1px solid var(--border); }
.search-suggestions.open { display: block; animation: dropIn .18s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.ss-section-head, .ss-header { padding: .55rem .875rem .3rem; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--text3); border-bottom: 1px solid var(--border); background: var(--surface2); }
.suggestion-item { display: flex; align-items: center; gap: .7rem; padding: .6rem .875rem; font-size: .84rem; color: var(--text); border-bottom: 1px solid var(--border); cursor: pointer; transition: background .1s; }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover, .suggestion-item:focus { background: var(--surface2); outline: none; }
.si-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--surface3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.si-icon img { width: 26px; height: auto; object-fit: contain; }
.si-icon svg { color: var(--text3); width: 16px; height: 16px; }
.si-info { flex: 1; min-width: 0; }
.si-label { font-weight: 600; font-size: .84rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.si-sub { font-size: .70rem; color: var(--text3); margin-top: 1px; }
.si-badge { font-size: .65rem; font-weight: 700; padding: .18rem .5rem; border-radius: 4px; background: #fff4ee; color: var(--accent); border: 1px solid rgba(255,92,40,.20); white-space: nowrap; flex-shrink: 0; }
.ss-footer { padding: .55rem .875rem; font-size: .74rem; color: var(--text3); background: var(--surface2); border-top: 1px solid var(--border); text-align: center; cursor: pointer; font-weight: 500; transition: color .15s; }
.ss-footer:hover { color: var(--accent); }
.ss-footer span { color: var(--accent); font-weight: 700; }

/* Desktop nav */
.header-nav { display: flex; align-items: center; gap: .15rem; margin-left: 0; flex: 1; }
.nav-link { color: rgba(255,255,255,.75); font-size: .82rem; padding: .4rem .7rem; border-radius: 7px; transition: all .15s; font-weight: 500; white-space: nowrap; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav-cashback { background: var(--accent) !important; color: #fff !important; font-weight: 700 !important; border-radius: 50px !important; padding: .4rem 1rem !important; font-size: .8rem !important; margin-left: 6rem !important; }
.nav-cashback:hover { background: var(--accent-h) !important; }
/* ── BLOG DROPDOWN ─────────────────────────────── */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 160px; background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10); border: 1px solid rgba(0,0,0,0.07); padding: 6px; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s; pointer-events: none; z-index: 500; }
.nav-dropdown::before { content:''; position:absolute; top:-6px; left:50%; transform:translateX(-50%); border:6px solid transparent; border-bottom-color:#fff; border-top:none; }
.nav-dropdown a { display: flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border-radius: 8px; color: var(--text); font-size: .82rem; font-weight: 500; transition: background .13s, color .13s; white-space: nowrap; }
.nav-dropdown a:hover { background: var(--surface2); color: var(--accent); }
.nav-dropdown a svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--text3); }

/* ── MOBILE BLOG SUBMENU ───────────────────────── */
.mobile-nav-submenu { display: none; flex-direction: column; padding-left: 2.25rem; gap: .1rem; margin-top: .1rem; }
.mobile-nav-submenu.open { display: flex; }
.mobile-nav-submenu a { color: rgba(255,255,255,.65); font-size: .82rem; font-weight: 400; padding: .4rem .75rem; border-radius: 7px; transition: all .15s; }
.mobile-nav-submenu a:hover { background: rgba(255,255,255,.07); color: #fff; }
.mobile-nav-toggle svg.chevron { transition: transform .2s; }
.mobile-nav-toggle.open svg.chevron { transform: rotate(180deg); }
.nav-signin { border: 1.5px solid rgba(255,255,255,.28) !important; border-radius: 50px !important; color: #fff !important; }
.nav-signin:hover { background: rgba(255,255,255,.08) !important; border-color: rgba(255,255,255,.5) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; margin-left: auto; padding: 6px; border-radius: 8px; transition: background .15s; }
.hamburger:hover { background: rgba(255,255,255,.10); }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav { display: none; background: var(--primary-dark); border-top: 1px solid rgba(255,255,255,.08); padding: .75rem 1.25rem 1.25rem; flex-direction: column; gap: .15rem; }
.mobile-nav.open { display: flex; }
.mobile-nav-link { color: rgba(255,255,255,.80); font-size: .9rem; font-weight: 500; padding: .6rem .75rem; border-radius: 8px; transition: all .15s; display: flex; align-items: center; gap: .5rem; }
.mobile-nav-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.mobile-nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-cashback-row { background: rgba(255,92,40,.15); border: 1px solid rgba(255,92,40,.30); border-radius: 10px; padding: .75rem; display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.mobile-cashback-row span { color: rgba(255,255,255,.90); font-size: .85rem; }
.mobile-cashback-btn { background: var(--accent); color: #fff; font-size: .8rem; font-weight: 700; padding: .35rem .875rem; border-radius: 40px; border: none; cursor: pointer; }

/* ══════════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════════ */
.breadcrumb-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb { max-width: var(--max-w); margin: 0 auto; padding: .6rem 1.5rem; font-size: .76rem; color: var(--text3); display: flex; align-items: center; gap: .3rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text2); transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: var(--text3); }

/* ══════════════════════════════════════════════════════════
   SHARED PAGE UTILS
══════════════════════════════════════════════════════════ */
.page-outer { max-width: var(--max-w); margin: 0 auto; padding: 1.25rem 1.5rem 3rem; }
.page-grid { display: grid; grid-template-columns: 288px 1fr; gap: 1.5rem; align-items: start; }
.w-full { width: 100%; }

/* Section heading (shared) */
.sec-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.sec-heading-left { display: flex; align-items: baseline; gap: .6rem; }
.sec-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--text); letter-spacing: -.3px; }
.sec-title span { color: var(--accent); }
.sec-count { font-size: .78rem; color: var(--text3); font-weight: 600; }
.sec-link { font-size: .82rem; color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; transition: gap .15s; white-space: nowrap; }
.sec-link:hover { gap: .4rem; }
.sec-link svg { width: 14px; height: 14px; }

/* Pill tags */
.pill { display: inline-flex; align-items: center; gap: .25rem; font-size: .65rem; font-weight: 700; padding: .2rem .6rem; border-radius: 40px; text-transform: uppercase; letter-spacing: .5px; }
.pill-red    { background: #fff0eb; color: var(--accent-h); border: 1px solid rgba(255,92,40,.22); }
.pill-teal   { background: var(--teal-light); color: var(--teal-h); border: 1px solid rgba(0,176,155,.20); }
.pill-amber  { background: var(--amber-light); color: var(--amber); border: 1px solid rgba(245,158,11,.20); }
.pill-danger { background: var(--danger-light); color: var(--danger); border: 1px solid rgba(176,48,48,.20); }
.pill-dark   { background: rgba(12,27,58,.08); color: var(--text2); border: 1px solid var(--border); }
/* Legacy green pill alias — keep green in home.html working */
.pill-green  { background: var(--green-light); color: var(--green-h); border: 1px solid rgba(24,167,96,.22); }

/* Stars */
.stars { color: var(--amber); letter-spacing: .5px; }

/* ══════════════════════════════════════════════════════════
   BUTTONS (global)
══════════════════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; border-radius: 50px; border: none; cursor: pointer; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; padding: .7rem 1.5rem; font-size: .875rem; }
.btn-primary:hover { background: var(--accent-h); box-shadow: var(--shadow-accent); transform: translateY(-1px); }
.btn-outline { background: none; border: 2px solid var(--border); color: var(--text2); padding: .6rem 1.25rem; font-size: .875rem; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: none; color: var(--text2); padding: .5rem .875rem; font-size: .82rem; }
.btn-ghost:hover { color: var(--accent); }
.btn-dark { background: var(--primary); color: #fff; padding: .7rem 1.5rem; font-size: .875rem; }
.btn-dark:hover { background: var(--primary-mid); box-shadow: 0 4px 16px rgba(12,27,58,.3); transform: translateY(-1px); }
.btn-sm { padding: .45rem .875rem; font-size: .78rem; }
.btn-lg { padding: .9rem 2rem; font-size: .95rem; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   COUPON CARDS (shared — home + store pages)
══════════════════════════════════════════════════════════ */
.coupons-list { display: flex; flex-direction: column; gap: .875rem; }
.coupon-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; transition: box-shadow .2s, transform .15s; position: relative; }
.coupon-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.coupon-card.exclusive { box-shadow: 0 2px 10px rgba(0,176,155,.15), 0 0 0 1.5px var(--teal); }
.coupon-card.exclusive:hover { box-shadow: 0 8px 32px rgba(0,176,155,.22), 0 0 0 1.5px var(--teal); }
.coupon-card.featured { box-shadow: 0 2px 10px rgba(255,92,40,.12), 0 0 0 1.5px var(--accent); }
.coupon-card.featured:hover { box-shadow: 0 8px 32px rgba(255,92,40,.20), 0 0 0 1.5px var(--accent); }

/* Corner ribbon tags */
.excl-tag { position: absolute; top: 0; right: 0; background: var(--teal); color: #fff; font-size: .62rem; font-weight: 700; padding: .2rem .6rem; border-bottom-left-radius: var(--radius-xs); text-transform: uppercase; letter-spacing: .5px; }
.feat-tag { position: absolute; top: 0; right: 0; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 700; padding: .2rem .6rem; border-bottom-left-radius: var(--radius-xs); text-transform: uppercase; letter-spacing: .5px; }

.coupon-inner { display: flex; align-items: stretch; min-height: 100px; }

/* Disc tear-off */
.coupon-disc { width: 96px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem .5rem; border-right: 2px dashed var(--border); position: relative; background: linear-gradient(180deg, var(--surface2) 0%, var(--surface) 100%); }
.coupon-card.exclusive .coupon-disc { border-color: rgba(0,176,155,.25); }
.coupon-card.featured .coupon-disc { border-color: rgba(255,92,40,.20); }
.coupon-disc::before, .coupon-disc::after { content: ''; position: absolute; right: -10px; width: 18px; height: 18px; background: var(--surface2); border-radius: 50%; border: 1.5px solid var(--border); }
.coupon-disc::before { top: -9px; }
.coupon-disc::after { bottom: -9px; }
.disc-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--accent); line-height: 1; }
.disc-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .72rem; color: var(--accent); letter-spacing: .5px; }
/* Colour modifiers used in HTML */
.disc-num.teal, .disc-label.teal { color: var(--teal); }
.disc-num.cyan, .disc-label.cyan { color: var(--teal); }
.disc-num.grn, .disc-label.grn { color: var(--green); }
.disc-num.green, .disc-label.green { color: var(--green); }
.disc-upto { font-size: .56rem; color: var(--text3); text-transform: uppercase; letter-spacing: .5px; margin-top: 1px; }
/* ── COUPON DISC: Store Image Style ──────────────────── */
.coupon-disc-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13), 0 1.5px 4px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.coupon-card:hover .coupon-disc-img-wrap {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.10);
}
.coupon-disc-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.coupon-disc-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .coupon-disc-img-wrap { width: 52px; height: 52px; border-radius: 10px; padding: 6px; }
}
@media (max-width: 400px) {
  .coupon-disc-img-wrap { width: 44px; height: 44px; border-radius: 8px; padding: 5px; }
}

/* Coupon body */
.coupon-body { flex: 1; min-width: 0; padding: .875rem .875rem .875rem 1rem; }
.coupon-type-badge { display: inline-flex; align-items: center; background: var(--surface3); color: var(--text2); font-size: .64rem; font-weight: 700; padding: .15rem .5rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem; }
.coupon-type-badge.cb { background: #e0fdf9; color: #00846e; }
.coupon-type-badge.code-type { background: #fff0eb; color: #c03800; }
.coupon-title { font-size: .92rem; font-weight: 700; color: var(--text); line-height: 1.38; margin-bottom: .35rem; }
.coupon-title-link { color: var(--text); text-decoration: none; display: block; transition: color .15s; line-height: 1.38; }
.coupon-title-link:hover { color: var(--accent); }
.coupon-meta { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .3rem; }
.mp { display: inline-flex; align-items: center; gap: .2rem; font-size: .68rem; font-weight: 600; padding: .16rem .52rem; border-radius: 40px; border: 1px solid; }
.mp-users  { background: #f0f0ff; color: #5046d0; border-color: #d5d0fa; }
.mp-time   { background: #fff8e8; color: #9c5c00; border-color: #ffd9a6; }
.mp-exp    { background: var(--danger-light); color: var(--danger); border-color: rgba(176,48,48,.20); }
.mp-ok     { background: #e8faf0; color: #0a7a4a; border-color: #a0ecc0; }
.mp-store  { background: var(--surface3); color: var(--text2); border-color: var(--border); }

/* Coupon action column */
.coupon-action { flex-shrink: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: .4rem; padding: .875rem 1rem; border-left: 1px solid var(--border); min-width: 136px; }
.btn-show-code, .btn-get-deal, .btn-activate { display: flex; align-items: center; justify-content: center; gap: .35rem; padding: .6rem .875rem; border-radius: 50px; border: none; font-size: .8rem; font-weight: 700; transition: all .2s; white-space: nowrap; min-height: 38px; cursor: pointer; }
.btn-show-code  { background: var(--accent); color: #fff; }
.btn-show-code:hover  { background: var(--accent-h); box-shadow: 0 4px 14px rgba(255,92,40,.40); transform: scale(1.02); }
.btn-get-deal   { background: var(--green); color: #fff; }
.btn-get-deal:hover   { background: var(--green-h); box-shadow: 0 4px 14px rgba(24,167,96,.40); transform: scale(1.02); }
.btn-activate   { background: var(--teal); color: #fff; }
.btn-activate:hover   { background: var(--teal-h); box-shadow: 0 4px 14px rgba(0,176,155,.40); transform: scale(1.02); }
.btn-see-details { background: none; border: 1.5px solid var(--border); color: var(--text2); padding: .42rem .875rem; border-radius: 50px; font-size: .72rem; font-weight: 600; text-align: center; transition: all .15s; cursor: pointer; }
.btn-see-details:hover { border-color: var(--accent); color: var(--accent); background: #fff5f2; }

/* Inline detail panel */
.coupon-detail-panel { display: none; border-top: 1.5px solid var(--border); background: var(--surface2); padding: 1rem 1.25rem; }
.coupon-detail-panel.open { display: block; animation: panelIn .2s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.dp-row { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-bottom: .6rem; }
.dp-item { font-size: .78rem; color: var(--text2); }
.dp-item strong { color: var(--text); font-weight: 600; }
.dp-terms { font-size: .76rem; color: var(--text3); line-height: 1.6; border-top: 1px solid var(--border); padding-top: .6rem; margin-top: .2rem; }
.dp-close { font-size: .71rem; color: var(--text3); cursor: pointer; display: flex; align-items: center; gap: .2rem; margin-top: .6rem; width: fit-content; background: none; border: none; padding: 0; font-family: 'Plus Jakarta Sans', sans-serif; transition: color .15s; }
.dp-close:hover { color: var(--accent); }
.dp-close svg { width: 12px; height: 12px; }

/* Store chip on coupon (home page cards) */
.coupon-store-chip { display: flex; align-items: center; gap: .45rem; margin-bottom: .35rem; }
.store-logo-float { position: absolute; bottom: -44px; left: 50%; transform: translateX(-50%); width: 110px; height: 110px; border-radius: 22px; background: #fff; border: 4px solid rgba(255,255,255,0.95); box-shadow: 0 10px 32px rgba(0,0,0,0.25), 0 3px 10px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; overflow: visible; padding: 0; box-sizing: border-box; transition: transform .2s, box-shadow .2s; }
.store-logo-float:hover { transform: translateX(-50%) translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.28), 0 4px 12px rgba(0,0,0,0.14); }
.store-logo-float img { width: 100%; height: 100%; object-fit: contain; display: block; }
.store-logo-float img { width: 110px; height: 110px; object-fit: cover; display: block; border-radius: 18px; }
.csc-name { font-size: .70rem; font-weight: 700; color: var(--text3); }
.store-id-body { padding: 3.8rem 1.25rem 1.25rem; text-align: center; }

/* ══════════════════════════════════════════════════════════
   SIDEBAR (store page)
══════════════════════════════════════════════════════════ */
.sidebar { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 1rem; }
.main-content { min-width: 0; }
.sb-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.sb-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .80rem; text-transform: uppercase; letter-spacing: .7px; color: var(--text); padding: 1rem 1.1rem .6rem; border-bottom: 1px solid var(--border); }
.sb-inner { padding: .75rem 1.1rem 1rem; }

/* Offer list */
.sb-offer-list { list-style: none; }
.sb-offer-item { display: flex; align-items: center; gap: .5rem; padding: .38rem 0; border-bottom: 1px solid var(--border); font-size: .79rem; color: var(--text2); cursor: pointer; transition: color .15s; }
.sb-offer-item:last-child { border-bottom: none; }
.sb-offer-item:hover { color: var(--accent); }
.sb-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Categories grid */
.sb-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.sb-cat { background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--radius-xs); padding: .4rem .5rem; font-size: .74rem; color: var(--text2); text-align: center; cursor: pointer; transition: all .15s; font-weight: 500; }
.sb-cat:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Related stores */
.sb-related-store { display: flex; align-items: center; gap: .6rem; padding: .42rem 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity .15s; }
.sb-related-store:last-child { border-bottom: none; }
.sb-related-store:hover { opacity: .72; }
.rel-logo { width: 34px; height: 34px; border-radius: 8px; background: var(--surface2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.rel-logo img { width: 26px; height: auto; object-fit: contain; }
.rel-logo-fb { font-size: .55rem; font-weight: 800; color: var(--text3); }
.rel-info { flex: 1; min-width: 0; }
.rel-name { font-size: .79rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rel-count { font-size: .68rem; color: var(--text3); }

/* Affiliate note */
.sb-affiliate { font-size: .69rem; color: var(--text3); line-height: 1.55; padding: .65rem .875rem; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.sb-affiliate a { color: var(--accent); }

/* ── Store Identity card (sidebar) ──────────────────────── */
.store-hero-card { background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 100%); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.store-hero-banner { height: 72px; background: linear-gradient(135deg, #FF5C28 0%, #FF3D6B 50%, #7B2FFF 100%); position: relative; overflow: visible; }
.store-hero-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.store-logo-float { position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; border-radius: 14px; background: #fff; border: 3px solid rgba(255,255,255,.2); box-shadow: 0 4px 20px rgba(0,0,0,.30); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.store-logo-float img { width: 48px; height: auto; object-fit: contain; }
/* support both class names from the two files */
.store-logo-fallback, .store-logo-fallback-text { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .65rem; color: var(--primary); text-align: center; letter-spacing: .5px; }
.store-id-body { padding: 2rem 1.25rem 1.25rem; text-align: center; }
.store-id-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: .2rem; }
.store-id-stars { color: var(--amber); font-size: .9rem; letter-spacing: 1px; margin-bottom: .15rem; }
.store-id-rating { font-size: .72rem; color: rgba(255,255,255,.55); margin-bottom: .875rem; }
.store-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .875rem; }
.store-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); border-radius: 9px; padding: .55rem .4rem; text-align: center; }
.store-stat-n { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent); }
.store-stat-l { font-size: .65rem; color: rgba(255,255,255,.50); margin-top: 1px; text-transform: uppercase; letter-spacing: .4px; }
.btn-visit-store { display: flex; align-items: center; justify-content: center; gap: .4rem; width: 100%; background: var(--accent); color: #fff; border: none; padding: .65rem 1rem; border-radius: 50px; font-size: .82rem; font-weight: 700; transition: all .2s; cursor: pointer; }
.btn-visit-store:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,92,40,.40); }
.btn-visit-store svg { width: 13px; height: 13px; }

/* ── Subscribe sidebar card ─────────────────────────────── */
/* Support both class naming conventions from home + store files */
.sb-subscribe-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.sb-sub-hd, .sb-subscribe-header { padding: .875rem 1.1rem .5rem; display: flex; align-items: center; gap: .5rem; }
.sb-sub-hd svg, .sb-subscribe-header svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }
.sb-sub-title, .sb-subscribe-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem; color: #fff; }
.sb-sub-body, .sb-subscribe-body { padding: .25rem 1.1rem 1.1rem; }
.sb-sub-desc, .sb-subscribe-desc { font-size: .75rem; color: rgba(255,255,255,.52); line-height: 1.5; margin-bottom: .875rem; }
.sb-field-group { display: flex; flex-direction: column; gap: .5rem; }
.sb-field { position: relative; }
.sb-field-icon { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: rgba(255,255,255,.38); pointer-events: none; }
.sb-field input { width: 100%; background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--radius-xs); padding: .6rem .75rem .6rem 2.25rem; font-size: .8rem; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: all .2s; }
.sb-field input::placeholder { color: rgba(255,255,255,.33); }
.sb-field input:focus { background: rgba(255,255,255,.13); border-color: rgba(255,92,40,.60); box-shadow: 0 0 0 3px rgba(255,92,40,.15); }
.sb-notify-btn { width: 100%; background: var(--accent); color: #fff; border: none; padding: .65rem; border-radius: var(--radius-xs); font-size: .82rem; font-weight: 700; margin-top: .2rem; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: .4rem; cursor: pointer; }
.sb-notify-btn:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,92,40,.40); }
.sb-notify-btn svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════
   STORE HERO + FILTER BAR (store page top)
   Supports both .store-hero (store4) and .store-hero-bar (home CSS)
══════════════════════════════════════════════════════════ */
.store-hero, .store-hero-bar { background: var(--surface); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1rem; box-shadow: var(--shadow-card); }
.hero-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: .875rem; }
.hero-h1 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -.4px; line-height: 1.2; margin-bottom: .35rem; }
.verified-chip { display: inline-flex; align-items: center; gap: .3rem; background: #fff0eb; color: #c03800; font-size: .71rem; font-weight: 700; padding: .22rem .6rem; border-radius: 40px; border: 1px solid rgba(255,92,40,.22); }
.verified-chip svg { width: 11px; height: 11px; }
.filter-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .875rem; }
.filter-pill { background: var(--surface2); border: 1.5px solid var(--border); border-radius: 50px; padding: .38rem .875rem; font-size: .77rem; font-weight: 600; color: var(--text2); transition: all .15s; min-height: 34px; cursor: pointer; }
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   EXPIRED COUPONS (store page)
══════════════════════════════════════════════════════════ */
.section-heading { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin: 1.75rem 0 .875rem; display: flex; align-items: center; gap: .5rem; color: var(--text); }
.section-heading svg { width: 18px; height: 18px; color: var(--text3); }
.expired-list { display: flex; flex-direction: column; gap: .6rem; }
.expired-card { background: var(--surface); border-radius: var(--radius-sm); box-shadow: var(--shadow-xs); border: 1.5px solid var(--border); overflow: hidden; opacity: .75; position: relative; }
.expired-card::after { content: 'EXPIRED'; position: absolute; top: 10px; right: -18px; background: var(--danger); color: #fff; font-size: .52rem; font-weight: 700; padding: .15rem 1.4rem; transform: rotate(35deg); letter-spacing: .8px; pointer-events: none; }
.exp-inner { display: flex; align-items: center; gap: .875rem; padding: .75rem 1rem; }
.exp-store-img { width: 46px; height: 46px; border-radius: 9px; background: var(--surface2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.exp-store-img img { width: 34px; height: auto; object-fit: contain; }
.exp-logo-fb { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .65rem; color: var(--text3); }
.exp-body { flex: 1; min-width: 0; }
.exp-badge { display: inline-flex; font-size: .59rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; background: var(--surface3); color: var(--text3); padding: .12rem .45rem; border-radius: 4px; margin-bottom: .2rem; }
.exp-title { font-size: .81rem; font-weight: 600; color: var(--text2); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.exp-meta { font-size: .68rem; color: var(--text3); margin-top: .15rem; }
.exp-disc-pill { flex-shrink: 0; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .90rem; color: var(--text3); background: var(--surface3); border-radius: 8px; padding: .3rem .6rem; text-align: center; border: 1.5px solid var(--border); }

/* ══════════════════════════════════════════════════════════
   STORE CONTENT SECTION (SEO copy)
══════════════════════════════════════════════════════════ */
.store-content-section { background: var(--surface); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; box-shadow: var(--shadow-card); }
.sc-heading { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; color: var(--text); }
.sc-body { font-size: .87rem; color: var(--text2); line-height: 1.75; }
.sc-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem; color: var(--text); margin: 1.1rem 0 .4rem; }
.sc-body p { margin-bottom: .75rem; }
.sc-body ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.sc-body ul li { margin-bottom: .3rem; }
.sc-faq { margin-top: 1.25rem; }

/* FAQ accordion (shared — store + home) */
.faq-item { border-bottom: 1px solid var(--border); padding: .75rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; font-size: .87rem; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: .5rem; background: none; border: none; width: 100%; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; padding: 0; }
.faq-q svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--text3); transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { font-size: .83rem; color: var(--text2); line-height: 1.65; margin-top: .5rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════════════════
   MODAL (shared)
══════════════════════════════════════════════════════════ */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(12,27,58,.60); z-index: 500; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(3px); }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--surface); border-radius: var(--radius); max-width: 480px; width: 100%; box-shadow: 0 24px 80px rgba(12,27,58,.25); overflow: hidden; animation: popIn .24s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from { opacity: 0; transform: scale(.88) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%); padding: 1.1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.modal-store-chip { display: flex; align-items: center; gap: .6rem; }
.modal-store-logo { width: 32px; height: 32px; border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 2px solid rgba(255,255,255,.15); }
.modal-store-logo img { width: 24px; height: auto; object-fit: contain; }
.modal-store-name { color: rgba(255,255,255,.90); font-size: .82rem; font-weight: 700; }
.modal-close-btn { background: rgba(255,255,255,.12); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background .15s; cursor: pointer; line-height: 1; }
.modal-close-btn:hover { background: rgba(255,255,255,.25); }
.modal-body { padding: 1.5rem 1.5rem 1.25rem; }
.modal-type-chip { display: inline-flex; align-items: center; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: .2rem .6rem; border-radius: 5px; background: #fff0eb; color: var(--accent); margin-bottom: .6rem; }
.modal-deal-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 1.1rem; line-height: 1.4; }
.modal-code-wrap { border: 2.5px dashed var(--accent); border-radius: 12px; padding: 1rem 1.25rem; background: linear-gradient(135deg, #fff5f2 0%, #fff8f0 100%); display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1rem; }
.modal-code-text { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.45rem; color: var(--accent); letter-spacing: 4px; }
.btn-copy-code { background: var(--accent); color: #fff; border: none; padding: .45rem 1rem; border-radius: 50px; font-size: .77rem; font-weight: 700; transition: all .15s; white-space: nowrap; cursor: pointer; }
.btn-copy-code:hover { background: var(--accent-h); }
.btn-copy-code.copied { background: var(--green); }
.modal-no-code-info { font-size: .82rem; color: var(--text2); background: var(--surface2); border-radius: var(--radius-xs); padding: .75rem; margin-bottom: 1rem; line-height: 1.5; border: 1px solid var(--border); }
.modal-exp-row { display: flex; align-items: center; gap: .4rem; font-size: .73rem; color: var(--text3); margin-bottom: 1rem; }
.modal-exp-row svg { width: 13px; height: 13px; }
.btn-modal-goto { display: flex; align-items: center; justify-content: center; gap: .4rem; width: 100%; background: var(--primary); color: #fff; border: none; padding: .85rem; border-radius: 50px; font-size: .9rem; font-weight: 700; margin-bottom: .75rem; transition: all .2s; cursor: pointer; }
.btn-modal-goto:hover { background: var(--primary-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(12,27,58,.30); }
.modal-skip { display: block; text-align: center; font-size: .73rem; color: var(--text3); cursor: pointer; background: none; border: none; width: 100%; transition: color .15s; font-family: 'Plus Jakarta Sans', sans-serif; }
.modal-skip:hover { color: var(--text); }
.modal-terms { font-size: .68rem; color: var(--text3); margin-top: .75rem; line-height: 1.55; padding: .65rem .875rem; background: var(--surface2); border-radius: var(--radius-xs); }

/* ══════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════ */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(16px); background: var(--green); color: #fff; padding: .65rem 1.4rem; border-radius: 50px; font-size: .83rem; font-weight: 700; z-index: 600; opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap; box-shadow: 0 4px 20px rgba(24,167,96,.40); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════════
   LOAD MORE
══════════════════════════════════════════════════════════ */
.load-more-wrap { text-align: center; margin-top: 1.25rem; }
.btn-load-more { background: none; border: 2px solid var(--border); color: var(--text2); padding: .65rem 2rem; border-radius: 50px; font-size: .875rem; font-weight: 700; transition: all .2s; min-height: 44px; cursor: pointer; }
.btn-load-more:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — HERO SECTION
══════════════════════════════════════════════════════════ */
.home-hero { background: linear-gradient(135deg, var(--primary) 0%, #1E2D5E 55%, #2B1A4A 100%); padding: 4rem 1.5rem 5rem; position: relative; overflow: hidden; }
.home-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FF5C28' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40h-2v-2l2 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.home-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; text-align: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,92,40,.15); border: 1px solid rgba(255,92,40,.30); color: var(--accent); font-size: .75rem; font-weight: 700; padding: .3rem .875rem; border-radius: 40px; margin-bottom: 1.25rem; letter-spacing: .3px; }
.hero-eyebrow svg { width: 13px; height: 13px; }
.home-hero h1 { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3.25rem); color: #fff; letter-spacing: -.6px; line-height: 1.12; margin-bottom: 1rem; }
.home-hero h1 em { color: var(--accent); font-style: normal; }
.home-hero p { font-size: clamp(.9rem, 2vw, 1.05rem); color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto 1.875rem; line-height: 1.65; }
.hero-search-wrap { max-width: 600px; margin: 0 auto 1.5rem; }
.hero-search-form { display: flex; background: #fff; border-radius: 50px; padding: .35rem .35rem .35rem 1.25rem; gap: .5rem; box-shadow: 0 8px 40px rgba(12,27,58,.30); }
.hero-search-form input { flex: 1; border: none; outline: none; font-size: .95rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); font-weight: 500; min-width: 0; }
.hero-search-form input::placeholder { color: var(--text3); }
.hero-search-form button { background: var(--accent); color: #fff; border: none; border-radius: 50px; padding: .65rem 1.5rem; font-size: .875rem; font-weight: 700; cursor: pointer; transition: background .2s; white-space: nowrap; display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.hero-search-form button:hover { background: var(--accent-h); }
.hero-search-form button svg { width: 15px; height: 15px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: .25rem; }
.hero-stat { text-align: center; }
.hero-stat-n { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.6rem; color: #fff; line-height: 1; }
.hero-stat-l { font-size: .72rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — FEATURED STORES
══════════════════════════════════════════════════════════ */
.hp-section { max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 1.5rem; }
.hp-section + .hp-section { padding-top: 0; }
.featured-stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: .875rem; }
.store-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; transition: all .2s; cursor: pointer; text-align: center; }
.store-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.store-card-banner { height: 52px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); position: relative; }
.store-card-banner.v2 { background: linear-gradient(135deg, #0E4272 0%, #1565C0 100%); }
.store-card-banner.v3 { background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%); }
.store-card-banner.v4 { background: linear-gradient(135deg, #92400E 0%, #D97706 100%); }
.store-card-banner.v5 { background: linear-gradient(135deg, #0E6B6B 0%, #0891B2 100%); }
.store-card-banner.v6 { background: linear-gradient(135deg, #7F1D1D 0%, #DC2626 100%); }
.store-card-banner.v11 { background: linear-gradient(135deg, #0E4272 0%, #1565C0 100%); }
.store-card-banner.v10 { background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%); }
.store-card-banner.v9 { background: linear-gradient(135deg, #92400E 0%, #D97706 100%); }
.store-card-banner.v7 { background: linear-gradient(135deg, #0E6B6B 0%, #0891B2 100%); }
.store-card-banner.v8 { background: linear-gradient(135deg, #7F1D1D 0%, #DC2626 100%); }
.store-card-banner.v13 { background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%); }
.store-card-banner.v12 { background: linear-gradient(135deg, #92400E 0%, #D97706 100%); }
.store-card-logo { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 11px; background: #fff; box-shadow: 0 3px 14px rgba(12,27,58,.20); border: 2.5px solid rgba(255,255,255,.20); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.store-card-logo img { width: 34px; height: auto; object-fit: contain; }
.store-card-logo-fb { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .6rem; color: var(--text2); }
.store-card-body { padding: 1.5rem .875rem .875rem; }
.store-card-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.store-card-meta { font-size: .70rem; color: var(--text3); margin-bottom: .5rem; }
.store-card-pill { display: inline-flex; background: #fff0eb; color: var(--accent-h); font-size: .65rem; font-weight: 700; padding: .18rem .55rem; border-radius: 40px; border: 1px solid rgba(255,92,40,.20); }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — TRENDING COUPONS (2-col grid on home)
══════════════════════════════════════════════════════════ */
.home-coupons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — TOP CATEGORIES
══════════════════════════════════════════════════════════ */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .875rem; }
.cat-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 1.25rem .875rem 1rem; text-align: center; cursor: pointer; transition: all .2s; border: 1.5px solid transparent; }
.cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.cat-card:hover .cat-icon-wrap { background: var(--accent); }
.cat-card:hover .cat-icon-wrap svg { color: #fff; }
.cat-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--surface2); display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; transition: background .2s; border: 1.5px solid var(--border); }
.cat-icon-wrap svg { width: 24px; height: 24px; color: var(--accent); transition: color .2s; }
.cat-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .875rem; color: var(--text); margin-bottom: .2rem; }
.cat-count { font-size: .70rem; color: var(--text3); }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — NEWSLETTER
══════════════════════════════════════════════════════════ */
.newsletter-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #2B1A4A 100%); padding: 3.5rem 1.5rem; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23FF5C28' stroke-width='1' fill='none' opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='28' stroke='%23FF5C28' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E") center/cover; }
.newsletter-inner { max-width: 640px; margin: 0 auto; position: relative; text-align: center; }
.newsletter-icon { width: 56px; height: 56px; background: rgba(255,92,40,.18); border: 1.5px solid rgba(255,92,40,.30); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.newsletter-icon svg { width: 26px; height: 26px; color: var(--accent); }
.newsletter-section h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; letter-spacing: -.3px; margin-bottom: .6rem; }
.newsletter-section p { font-size: .9rem; color: rgba(255,255,255,.62); margin-bottom: 1.875rem; line-height: 1.6; }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.nl-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.nl-field { position: relative; flex: 1; min-width: 200px; }
.nl-field-icon { position: absolute; left: .875rem; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: rgba(255,255,255,.40); pointer-events: none; }
.nl-field input { width: 100%; background: rgba(255,255,255,.10); border: 1.5px solid rgba(255,255,255,.15); border-radius: 50px; padding: .8rem 1rem .8rem 2.5rem; font-size: .875rem; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: all .2s; }
.nl-field input::placeholder { color: rgba(255,255,255,.35); }
.nl-field input:focus { background: rgba(255,255,255,.15); border-color: rgba(255,92,40,.70); box-shadow: 0 0 0 3px rgba(255,92,40,.20); }
.nl-submit { background: var(--accent); color: #fff; border: none; border-radius: 50px; padding: .8rem 2rem; font-size: .9rem; font-weight: 700; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: .4rem; width: 100%; }
.nl-submit:hover { background: var(--accent-h); box-shadow: var(--shadow-accent); transform: translateY(-1px); }
.nl-submit svg { width: 16px; height: 16px; }
.nl-note { font-size: .72rem; color: rgba(255,255,255,.40); margin-top: .25rem; }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — FAQ (two-column layout)
══════════════════════════════════════════════════════════ */
.faq-section { background: var(--surface); }
.faq-section .hp-section { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.faq-left h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--text); letter-spacing: -.4px; line-height: 1.25; margin-bottom: .75rem; }
.faq-left h2 em { color: var(--accent); font-style: normal; }
.faq-left p { font-size: .875rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.25rem; }
.faq-contact { display: inline-flex; align-items: center; gap: .4rem; background: #fff0eb; color: var(--accent-h); font-size: .82rem; font-weight: 700; padding: .55rem 1rem; border-radius: 50px; border: 1.5px solid rgba(255,92,40,.25); cursor: pointer; transition: all .2s; }
.faq-contact:hover { background: var(--accent); color: #fff; }
.faq-contact svg { width: 14px; height: 14px; }
.faq-list { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════════════════════
   HOME PAGE — SEO CONTENT CARDS
══════════════════════════════════════════════════════════ */
.seo-section { background: var(--surface2); }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.seo-card { background: var(--surface); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-card); }
.seo-card-icon { width: 42px; height: 42px; border-radius: 11px; background: #fff0eb; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; border: 1px solid rgba(255,92,40,.20); }
.seo-card-icon svg { width: 20px; height: 20px; color: var(--accent); }
.seo-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: .5rem; }
.seo-card p { font-size: .83rem; color: var(--text2); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.60); margin-top: 3rem; }
.footer-top { max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 1.5rem 2rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .logo { font-size: 1.15rem; margin-bottom: .75rem; display: inline-flex; }
.footer-brand p { font-size: .78rem; line-height: 1.65; max-width: 220px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .8px; color: #fff; margin-bottom: .875rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul li a { font-size: .78rem; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1rem 1.5rem; }
.footer-bottom-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .72rem; }
.footer-bottom-inner a:hover { color: #fff; }
.footer-socials { display: flex; gap: .5rem; }
.social-btn { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.social-btn:hover { background: rgba(255,255,255,.16); }
.social-btn svg { width: 14px; height: 14px; color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-grid { grid-template-columns: 240px 1fr; gap: 1.1rem; }
  .coupon-action { min-width: 118px; padding: .75rem .75rem; }
  .featured-stores-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
}
@media (max-width: 900px) {
  .page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; order: 2; }
  .main-content { order: 1; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .search-wrapper { flex: 1; max-width: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .store-hero-card, .sb-subscribe-card { max-width: 420px; }
  .home-coupons-grid { grid-template-columns: 1fr; }
  .faq-section .hp-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .seo-grid { grid-template-columns: 1fr; }
  .nl-row { flex-direction: column; }
}
@media (max-width: 640px) {
  .header-top { height: 58px; padding: 0 1rem; }
  .page-outer { padding: .75rem 1rem 2rem; }
  .coupon-inner { flex-wrap: wrap; }
  .coupon-disc { width: 82px; }
  .disc-num { font-size: 1.25rem; }
  .coupon-action { width: 100%; flex-direction: row; border-left: none; border-top: 1px solid var(--border); justify-content: center; padding: .65rem .75rem; gap: .5rem; }
  .btn-show-code { display: flex; font-size: .72rem; padding: .5rem .75rem; min-height: 34px; }
  .coupon-title-link { text-decoration: underline; text-decoration-color: rgba(12,27,58,.15); text-underline-offset: 2px; }
  .coupon-title-link:hover { text-decoration-color: var(--accent); }
  .hero-h1 { font-size: 1.2rem; }
  .store-hero, .store-hero-bar { padding: .875rem 1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .modal-box { max-width: 100%; margin: .5rem; }
  .modal-code-text { font-size: 1.2rem; }
  .store-hero-card, .sb-subscribe-card { max-width: 100%; }
  .home-hero { padding: 2.5rem 1rem 3.5rem; }
  .hero-search-form { flex-direction: column; border-radius: 16px; padding: .75rem; }
  .hero-search-form button { width: 100%; }
  .hp-section { padding: 1.5rem 1rem; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .featured-stores-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media (max-width: 400px) {
  .coupon-disc { width: 72px; }
  .coupon-body { padding: .75rem .625rem .75rem .75rem; }
  .filter-row { gap: .3rem; }
  .filter-pill { padding: .3rem .6rem; font-size: .73rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Seasons Page ────────────────────────────────────── */


/* ── PAGE HERO ─────────────────────────────────────── */
.cat-page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1E2D5E 55%, #2B1A4A 100%);
  padding: 2.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.cat-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FF5C28' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40h-2v-2l2 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cat-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: var(--surface2);
  clip-path: ellipse(52% 100% at 50% 100%);
}
.cat-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.cat-hero-inner h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.12;
  margin-bottom: .625rem;
}
.cat-hero-inner h1 em { color: var(--accent); font-style: normal; }
.cat-hero-inner p {
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── A–Z JUMP BAR ──────────────────────────────────── */

/* ── SIDEBAR A–Z NAV ───────────────────────────────── */


/* ── CATEGORY SECTIONS ─────────────────────────────── */
.cat-section { scroll-margin-top: 115px; margin-bottom: 2.5rem; }
.cat-section-letter {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1rem;
}
.cat-section-letter-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.cat-section-letter-badge span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
}
.cat-section-divider {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, var(--border), transparent);
}
.cat-section-count {
  font-size: .72rem;
  color: var(--text3);
  font-weight: 600;
  white-space: nowrap;
}

/* ── TWO-COLUMN CATEGORY GRID ──────────────────────── */
.cat-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.cat-item-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.cat-item-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .2s;
  border-radius: 4px 0 0 4px;
}
.cat-item-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.cat-item-card:hover::before { background: var(--accent); }
.cat-item-body { flex: 1; min-width: 0; }
.cat-item-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: .2rem;
  transition: color .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-item-card:hover .cat-item-name { color: var(--accent); }
.cat-item-count { font-size: .70rem; color: var(--text3); font-weight: 500; }
.cat-item-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  color: var(--text3);
  font-size: .75rem;
}
.cat-item-card:hover .cat-item-arrow { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── SIDEBAR STATS ─────────────────────────────────── */
.sb-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  padding: .75rem 1.1rem 1rem;
}
.sb-stat-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: .55rem .5rem;
  text-align: center;
}
.sb-stat-n {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .15rem;
}
.sb-stat-l {
  font-size: .63rem;
  color: var(--text3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 680px) { .cat-2col-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .cat-page-hero { padding: 2rem 1.25rem 2.5rem; }
  .az-jump-inner { padding: .5rem 1rem; }
  .page-outer { padding: .875rem 1rem 2.5rem; }
}


/* ── CONTACT US PAGE  ── */


/* ── PAGE HERO ── */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1a2f5e 100%);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(255,92,40,.12) 0%, transparent 70%);
}
.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,92,40,.18);
  border: 1px solid rgba(255,92,40,.35);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.contact-hero-badge svg { width: 13px; height: 13px; }
.contact-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.contact-hero h1 em { color: var(--accent); font-style: normal; }
.contact-hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.60);
  line-height: 1.6;
}

/* ── MAIN CONTENT AREA ── */
.contact-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* ── MESSAGE CARD ── */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.contact-card-header {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border: 1.5px solid rgba(255,92,40,.25);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-card-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -.2px;
}
.contact-card-body {
  padding: 1.75rem;
}
.contact-card-body p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: .9rem;
}
.contact-card-body p:last-child { margin-bottom: 0; }
.contact-card-body strong { color: var(--text); font-weight: 700; }

/* ── EMAIL HIGHLIGHT ── */
.email-highlight {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-light);
  border: 1.5px solid rgba(255,92,40,.22);
  border-radius: var(--radius-xs);
  padding: .5rem 1rem;
  margin: .15rem 0;
}
.email-highlight svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.email-highlight a {
  font-weight: 700;
  color: var(--accent-h);
  font-size: .9rem;
  text-decoration: underline;
  text-decoration-color: rgba(255,92,40,.3);
  text-underline-offset: 2px;
}
.email-highlight a:hover { color: var(--accent); }

/* ── INFO TILES ── */
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-tile {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.contact-tile:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border2);
  transform: translateY(-2px);
}
.ct-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .875rem;
}
.ct-icon.orange { background: var(--accent-light); border: 1px solid rgba(255,92,40,.2); }
.ct-icon.teal   { background: var(--teal-light);   border: 1px solid rgba(0,176,155,.2); }
.ct-icon.green  { background: var(--green-light);  border: 1px solid rgba(24,167,96,.2); }
.ct-icon svg { width: 20px; height: 20px; }
.ct-icon.orange svg { color: var(--accent); }
.ct-icon.teal svg   { color: var(--teal); }
.ct-icon.green svg  { color: var(--green); }
.ct-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text);
  margin-bottom: .3rem;
}
.ct-value {
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .contact-tiles { grid-template-columns: 1fr; }
  .contact-main  { padding: 1.5rem 1rem 2.5rem; }
  .contact-card-body { padding: 1.25rem; }
}



/* ── ABOUT US PAGE ── */

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.au-hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 5rem;
  text-align: center;
}
/* decorative rings */
.au-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,92,40,.10);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.au-hero::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255,92,40,.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.au-hero-glow {
  position: absolute;
  width: 480px; height: 260px;
  background: radial-gradient(ellipse, rgba(255,92,40,.18) 0%, transparent 70%);
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.au-hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.au-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,92,40,.15);
  border: 1px solid rgba(255,92,40,.30);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.au-hero-eyebrow svg { width: 12px; height: 12px; }
.au-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  letter-spacing: -.6px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.au-hero h1 em { color: var(--accent); font-style: normal; }
.au-hero-lead {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
/* stat strip inside hero */
.au-stats {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
}
.au-stat {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.au-stat:last-child { border-right: none; }
.au-stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: .2rem;
}
.au-stat-num span { color: var(--accent); }
.au-stat-lbl {
  font-size: .68rem;
  color: rgba(255,255,255,.42);
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════════════ */
.au-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

/* ══════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════ */
.au-intro {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.au-intro-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
}
.au-intro-body {
  padding: 2.25rem 2.5rem;
}
.au-intro-body p {
  font-size: .975rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.au-intro-body p:last-child { margin-bottom: 0; }
.au-intro-body strong { color: var(--text); font-weight: 700; }

/* ══════════════════════════════════════════
   CATEGORY CHIPS
══════════════════════════════════════════ */
.au-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0 .25rem;
}
.au-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .4rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text2);
  transition: all .18s;
}
.au-cat-chip svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }
.au-cat-chip:hover {
  background: var(--accent-light);
  border-color: rgba(255,92,40,.3);
  color: var(--accent-h);
}

/* ══════════════════════════════════════════
   FEATURE CARDS ROW
══════════════════════════════════════════ */
.au-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.au-feat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.au-feat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.au-feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border2); }
.au-feat-card:hover::before { transform: scaleX(1); }
.au-feat-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.au-feat-icon.orange { background: var(--accent-light); border: 1.5px solid rgba(255,92,40,.2); }
.au-feat-icon.teal   { background: var(--teal-light);   border: 1.5px solid rgba(0,176,155,.2); }
.au-feat-icon.green  { background: var(--green-light);  border: 1.5px solid rgba(24,167,96,.2); }
.au-feat-icon svg { width: 20px; height: 20px; }
.au-feat-icon.orange svg { color: var(--accent); }
.au-feat-icon.teal svg   { color: var(--teal); }
.au-feat-icon.green svg  { color: var(--green); }
.au-feat-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.au-feat-desc {
  font-size: .8rem;
  color: var(--text3);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   DISCLOSURE SECTION
══════════════════════════════════════════ */
.au-disclosure {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.au-disclosure-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}
.au-disc-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.au-disc-icon svg { width: 20px; height: 20px; color: var(--accent); }
.au-disclosure-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -.2px;
}
.au-disclosure-body { padding: 2rem 2.5rem; }
.au-disclosure-body p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: .875rem;
}
.au-disclosure-body p:last-child { margin-bottom: 0; }
.au-disclosure-body strong { color: var(--text); font-weight: 700; }

/* Commission note pill */
.au-commission-note {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--amber-light);
  border: 1.5px solid rgba(245,158,11,.25);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  margin: 1.1rem 0;
}
.au-commission-note svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.au-commission-note p {
  font-size: .82rem !important;
  color: #7a5a00 !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}

/* ══════════════════════════════════════════
   CLOSING THANK-YOU BANNER
══════════════════════════════════════════ */
.au-thankyou {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #2B1A4A 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.au-thankyou::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='32' stroke='%23FF5C28' stroke-width='1' fill='none' opacity='0.07'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}
.au-thankyou-inner { position: relative; }
.au-ty-heart {
  width: 54px; height: 54px;
  background: rgba(255,92,40,.18);
  border: 1.5px solid rgba(255,92,40,.30);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.au-ty-heart svg { width: 24px; height: 24px; color: var(--accent); }
.au-thankyou h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -.3px;
  margin-bottom: .6rem;
}
.au-thankyou p {
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.au-ty-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  transition: background .2s, box-shadow .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.au-ty-btn:hover { background: var(--accent-h); box-shadow: var(--shadow-accent); transform: translateY(-1px); }
.au-ty-btn svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 700px) {
  .au-features { grid-template-columns: 1fr; }
  .au-stats { grid-template-columns: repeat(3, 1fr); }
  .au-intro-body,
  .au-disclosure-body { padding: 1.5rem 1.25rem; }
  .au-disclosure-header { padding: 1.1rem 1.25rem; }
  .au-main { padding: 1.75rem 1rem 3rem; }
  .au-hero { padding: 3rem 1rem 3.5rem; }
  .au-thankyou { padding: 2rem 1.25rem; }
}
@media (max-width: 480px) {
  .au-stats { grid-template-columns: 1fr 1fr; max-width: 320px; }
  .au-stat:nth-child(3) { grid-column: 1 / -1; border-right: none; border-top: 1px solid rgba(255,255,255,.08); }
}



/* ── ABOUT US PAGE ── */



/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.pp-hero {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem 4.75rem;
  text-align: center;
}
/* diagonal stripe texture */
.pp-hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,.018) 0px,
    rgba(255,255,255,.018) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}
.pp-hero-arc {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,92,40,.13) 0%, transparent 65%);
  pointer-events: none;
}
.pp-hero-inner { position: relative; max-width: 660px; margin: 0 auto; }

.pp-hero-shield {
  width: 68px; height: 68px;
  background: rgba(255,92,40,.14);
  border: 1.5px solid rgba(255,92,40,.28);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.pp-hero-shield svg { width: 30px; height: 30px; color: var(--accent); }

.pp-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: #fff;
  letter-spacing: -.6px;
  line-height: 1.1;
  margin-bottom: .9rem;
}
.pp-hero h1 em { color: var(--accent); font-style: normal; }
.pp-hero-sub {
  font-size: .93rem;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.pp-hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.pp-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50px;
  padding: .32rem .85rem;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.pp-pill svg { width: 11px; height: 11px; color: rgba(255,255,255,.35); }
.pp-pill.accent-pill {
  background: rgba(255,92,40,.15);
  border-color: rgba(255,92,40,.28);
  color: var(--accent);
}
.pp-pill.accent-pill svg { color: var(--accent); }

/* ══════════════════════════════════════════
   TRUST STRIP (below hero)
══════════════════════════════════════════ */
.pp-trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.pp-trust-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.pp-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text2);
}
.pp-trust-item svg { width: 14px; height: 14px; }
.pp-trust-item.green svg { color: var(--green); }
.pp-trust-item.teal  svg { color: var(--teal); }
.pp-trust-item.accent svg { color: var(--accent); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.pp-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 4rem;
}

/* ══════════════════════════════════════════
   INTRO BANNER CARD
══════════════════════════════════════════ */
.pp-intro {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.pp-intro::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,92,40,.10);
}
.pp-intro-icon {
  width: 48px; height: 48px;
  background: rgba(255,92,40,.16);
  border: 1.5px solid rgba(255,92,40,.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-intro-icon svg { width: 22px; height: 22px; color: var(--accent); }
.pp-intro-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  margin-bottom: .75rem;
}
.pp-intro-text p:last-child { margin-bottom: 0; }
.pp-intro-text strong { color: #fff; font-weight: 700; }

/* ══════════════════════════════════════════
   SECTION CARDS
══════════════════════════════════════════ */
.pp-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: box-shadow .2s, transform .18s;
}
.pp-section:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pp-sec-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1.1rem 1.75rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.pp-sec-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-sec-icon svg { width: 17px; height: 17px; }
.pp-sec-icon.green  { background: var(--green-light);  border: 1px solid rgba(24,167,96,.18); }
.pp-sec-icon.green svg  { color: var(--green); }
.pp-sec-icon.teal   { background: var(--teal-light);   border: 1px solid rgba(0,176,155,.18); }
.pp-sec-icon.teal svg   { color: var(--teal); }
.pp-sec-icon.orange { background: var(--accent-light); border: 1px solid rgba(255,92,40,.18); }
.pp-sec-icon.orange svg { color: var(--accent); }
.pp-sec-icon.amber  { background: var(--amber-light);  border: 1px solid rgba(245,158,11,.18); }
.pp-sec-icon.amber svg  { color: var(--amber); }

.pp-sec-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text);
  letter-spacing: -.15px;
}
.pp-sec-tag {
  margin-left: auto;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 50px;
}
.pp-sec-tag.green  { background: var(--green-light);  color: var(--green-h); }
.pp-sec-tag.teal   { background: var(--teal-light);   color: var(--teal-h); }
.pp-sec-tag.orange { background: var(--accent-light); color: var(--accent-h); }
.pp-sec-tag.amber  { background: var(--amber-light);  color: var(--amber); }

.pp-sec-body {
  padding: 1.5rem 1.75rem;
}
.pp-sec-body p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: .85rem;
}
.pp-sec-body p:last-child { margin-bottom: 0; }
.pp-sec-body strong { color: var(--text); font-weight: 700; }

/* callout inside sections */
.pp-callout {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  border-radius: var(--radius-xs);
  padding: .85rem 1rem;
  margin: .75rem 0;
}
.pp-callout svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.pp-callout p {
  font-size: .82rem !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}
.pp-callout.green-note { background: var(--green-light); border: 1.5px solid rgba(24,167,96,.22); }
.pp-callout.green-note svg { color: var(--green); }
.pp-callout.green-note p { color: #0a6637 !important; }
.pp-callout.teal-note  { background: var(--teal-light);  border: 1.5px solid rgba(0,176,155,.22); }
.pp-callout.teal-note svg { color: var(--teal); }
.pp-callout.teal-note p { color: #00605a !important; }
.pp-callout.amber-note { background: var(--amber-light); border: 1.5px solid rgba(245,158,11,.22); }
.pp-callout.amber-note svg { color: var(--amber); }
.pp-callout.amber-note p { color: #7a5a00 !important; }

/* ══════════════════════════════════════════
   COMMIT CARDS ROW (3 promises)
══════════════════════════════════════════ */
.pp-commitments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.pp-commit-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.pp-commit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pp-commit-card.c-green::after  { background: var(--green); }
.pp-commit-card.c-teal::after   { background: var(--teal); }
.pp-commit-card.c-orange::after { background: var(--accent); }
.pp-commit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border2); }
.pp-cc-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
}
.pp-cc-icon svg { width: 20px; height: 20px; }
.c-green  .pp-cc-icon { background: var(--green-light);  border: 1.5px solid rgba(24,167,96,.2); }
.c-teal   .pp-cc-icon { background: var(--teal-light);   border: 1.5px solid rgba(0,176,155,.2); }
.c-orange .pp-cc-icon { background: var(--accent-light); border: 1.5px solid rgba(255,92,40,.2); }
.c-green  .pp-cc-icon svg { color: var(--green); }
.c-teal   .pp-cc-icon svg { color: var(--teal); }
.c-orange .pp-cc-icon svg { color: var(--accent); }
.pp-cc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: .3rem;
}
.pp-cc-desc {
  font-size: .76rem;
  color: var(--text3);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   CLOSING BANNER
══════════════════════════════════════════ */
.pp-closing {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #22184a 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: .5rem;
}
.pp-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='32' stroke='%23FF5C28' stroke-width='1' fill='none' opacity='0.07'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}
.pp-closing-inner { position: relative; }
.pp-closing-lock {
  width: 54px; height: 54px;
  background: rgba(255,92,40,.16);
  border: 1.5px solid rgba(255,92,40,.28);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.pp-closing-lock svg { width: 24px; height: 24px; color: var(--accent); }
.pp-closing h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: -.2px;
}
.pp-closing p {
  font-size: .875rem;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.pp-closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  flex-wrap: wrap;
}
.pp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  padding: .72rem 1.6rem;
  border-radius: 50px;
  transition: background .2s, box-shadow .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.pp-btn-primary:hover { background: var(--accent-h); box-shadow: var(--shadow-accent); transform: translateY(-1px); }
.pp-btn-primary svg { width: 15px; height: 15px; }
.pp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.75);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  padding: .72rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.14);
  transition: all .18s;
}
.pp-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.pp-btn-ghost svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 680px) {
  .pp-commitments { grid-template-columns: 1fr; }
  .pp-intro { flex-direction: column; gap: 1rem; padding: 1.5rem 1.25rem; }
  .pp-main { padding: 1.75rem 1rem 3rem; }
  .pp-sec-body, .pp-sec-header { padding-left: 1.25rem; padding-right: 1.25rem; }
  .pp-hero { padding: 3rem 1rem 3.5rem; }
  .pp-trust-inner { gap: 1rem; }
  .pp-closing { padding: 2rem 1.25rem; }
  .pp-closing-actions { flex-direction: column; }
}


/* ── Terms PAGE ── */


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.tc-hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 3.75rem 1.5rem 4.25rem;
  text-align: center;
}
.tc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.tc-hero-glow {
  position: absolute;
  width: 520px; height: 220px;
  background: radial-gradient(ellipse, rgba(255,92,40,.16) 0%, transparent 70%);
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.tc-hero-inner { position: relative; max-width: 640px; margin: 0 auto; }
.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,92,40,.14);
  border: 1px solid rgba(255,92,40,.30);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.tc-hero-badge svg { width: 12px; height: 12px; }
.tc-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: #fff;
  letter-spacing: -.55px;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.tc-hero h1 em { color: var(--accent); font-style: normal; }
.tc-hero-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.tc-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tc-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .75rem;
  color: rgba(255,255,255,.60);
  font-weight: 500;
}
.tc-meta-chip svg { width: 12px; height: 12px; color: rgba(255,255,255,.40); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.tc-outer {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ══════════════════════════════════════════
   SIDEBAR TOC
══════════════════════════════════════════ */
.tc-toc {
  position: sticky;
  top: 82px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tc-toc-head {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tc-toc-head svg { width: 14px; height: 14px; color: var(--accent); }
.tc-toc-head span {
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text);
}
.tc-toc-list { padding: .5rem 0; }
.tc-toc-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  font-size: .78rem;
  color: var(--text2);
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  border-left: 2.5px solid transparent;
}
.tc-toc-item:hover {
  background: var(--surface2);
  color: var(--accent);
  border-left-color: var(--accent);
}
.tc-toc-item.active {
  background: var(--accent-light);
  color: var(--accent-h);
  border-left-color: var(--accent);
  font-weight: 700;
}
.tc-toc-num {
  width: 18px; height: 18px;
  background: var(--surface3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 800;
  color: var(--text3);
  flex-shrink: 0;
  transition: all .15s;
}
.tc-toc-item:hover .tc-toc-num,
.tc-toc-item.active .tc-toc-num {
  background: var(--accent);
  color: #fff;
}

/* ══════════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════════ */
.tc-content { min-width: 0; }

/* Intro card */
.tc-intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.tc-intro-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--teal) 100%);
}
.tc-intro-body {
  padding: 1.75rem 2rem;
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.85;
}
.tc-intro-body strong { color: var(--text); font-weight: 700; }

/* Section cards */
.tc-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: box-shadow .2s;
}
.tc-section:hover { box-shadow: var(--shadow-md); }
.tc-section-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.tc-sec-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-sec-icon svg { width: 16px; height: 16px; }
.tc-sec-icon.orange { background: var(--accent-light); border: 1px solid rgba(255,92,40,.18); }
.tc-sec-icon.orange svg { color: var(--accent); }
.tc-sec-icon.teal   { background: var(--teal-light);   border: 1px solid rgba(0,176,155,.18); }
.tc-sec-icon.teal svg   { color: var(--teal); }
.tc-sec-icon.navy   { background: rgba(12,27,58,.07);  border: 1px solid rgba(12,27,58,.12); }
.tc-sec-icon.navy svg   { color: var(--primary-light); }
.tc-sec-icon.green  { background: var(--green-light);  border: 1px solid rgba(24,167,96,.18); }
.tc-sec-icon.green svg  { color: var(--green); }
.tc-sec-icon.amber  { background: var(--amber-light);  border: 1px solid rgba(245,158,11,.18); }
.tc-sec-icon.amber svg  { color: var(--amber); }
.tc-sec-icon.danger { background: var(--danger-light); border: 1px solid rgba(176,48,48,.18); }
.tc-sec-icon.danger svg { color: var(--danger); }
.tc-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -.15px;
}
.tc-section-num {
  margin-left: auto;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: .7rem;
  color: var(--text3);
  letter-spacing: .5px;
}
.tc-section-body {
  padding: 1.4rem 1.75rem;
}
.tc-section-body p {
  font-size: .885rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: .875rem;
}
.tc-section-body p:last-child { margin-bottom: 0; }
.tc-section-body strong { color: var(--text); font-weight: 700; }

/* Highlight callout within sections */
.tc-callout {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  border-radius: var(--radius-xs);
  padding: .85rem 1rem;
  margin-top: .5rem;
}
.tc-callout svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.tc-callout p {
  font-size: .82rem !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}
.tc-callout.amber-note { background: var(--amber-light); border: 1.5px solid rgba(245,158,11,.22); }
.tc-callout.amber-note svg { color: var(--amber); }
.tc-callout.amber-note p { color: #7a5a00 !important; }
.tc-callout.teal-note  { background: var(--teal-light);  border: 1.5px solid rgba(0,176,155,.22); }
.tc-callout.teal-note svg { color: var(--teal); }
.tc-callout.teal-note p { color: #00605a !important; }
.tc-callout.blue-note  { background: #eef2ff; border: 1.5px solid rgba(99,102,241,.20); }
.tc-callout.blue-note svg { color: #6366f1; }
.tc-callout.blue-note p { color: #3730a3 !important; }

/* ── Contact Banner ── */
.tc-contact-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #2B1A4A 100%);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}
.tc-contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='32' stroke='%23FF5C28' stroke-width='1' fill='none' opacity='0.07'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}
.tc-contact-banner-inner { position: relative; }
.tc-cb-icon {
  width: 50px; height: 50px;
  background: rgba(255,92,40,.18);
  border: 1.5px solid rgba(255,92,40,.30);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.tc-cb-icon svg { width: 22px; height: 22px; color: var(--accent); }
.tc-contact-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: .5rem;
}
.tc-contact-banner p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.tc-email-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.tc-email-link:hover { background: var(--accent-h); box-shadow: var(--shadow-accent); transform: translateY(-1px); }
.tc-email-link svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 760px) {
  .tc-outer { grid-template-columns: 1fr; padding: 1.5rem 1rem 3rem; }
  .tc-toc { position: static; }
  .tc-section-body,
  .tc-intro-body { padding: 1.25rem; }
  .tc-section-header { padding: .9rem 1.25rem; }
  .tc-hero { padding: 3rem 1rem 3.5rem; }
  .tc-contact-banner { padding: 1.75rem 1.25rem; }
}



/* ── 404 PAGE ── */


/* ══════════════════════════════════════════════════
   404 v2 — Clean white, RetailMeNot-inspired
══════════════════════════════════════════════════ */

body { background: #fff; }

/* ── Main wrapper ─────────────────────────────── */
.p404-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── SVG illustration area ────────────────────── */
.p404-illo {
  position: relative;
  width: 340px;
  max-width: 100%;
  margin-bottom: 2.5rem;
  flex-shrink: 0;
}

.p404-illo-bg {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, #FFF0EB 0%, rgba(255,240,235,0) 72%);
  border-radius: 50%;
  z-index: 0;
}

.p404-illo svg.main-illo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(255,92,40,.18));
}

/* Floating percentage badge */
.p404-badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(255,92,40,.4);
  animation: spin-bob 3s ease-in-out infinite;
}
.p404-badge span { font-size: .45rem; font-weight: 700; letter-spacing: .5px; opacity: .85; }
@keyframes spin-bob {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-8px) rotate(4deg); }
}

/* Scissors badge */
.p404-scissors {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  animation: scissors-bob 2.5s ease-in-out infinite;
  animation-delay: .8s;
}
.p404-scissors svg { width: 22px; height: 22px; color: var(--accent); }
@keyframes scissors-bob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(-15deg); }
}

/* ── Text block ───────────────────────────────── */
.p404-text { text-align: center; max-width: 520px; }

.p404-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: 40px;
  margin-bottom: .875rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: 1px solid rgba(255,92,40,.2);
}

.p404-h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: .625rem;
}
.p404-h1 em { color: var(--accent); font-style: normal; }

.p404-desc {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.68;
  margin-bottom: 1.75rem;
}

/* ── Search bar ───────────────────────────────── */
.p404-search {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.p404-search svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--text3);
  pointer-events: none;
}
.p404-search-input {
  width: 100%;
  background: var(--surface2);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: .875rem 7.5rem .875rem 3rem;
  font-size: .9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.p404-search-input::placeholder { color: var(--text3); }
.p404-search-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,92,40,.1);
}
.p404-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: .6rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}
.p404-search-btn:hover {
  background: var(--accent-h);
  box-shadow: var(--shadow-accent);
}

/* ── Quick action buttons ─────────────────────── */
.p404-actions {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.p404-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--primary);
  color: #fff;
  padding: .7rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  font-family: 'Outfit', sans-serif;
  transition: background .2s, transform .15s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(12,27,58,.2);
}
.p404-btn-solid:hover { background: var(--primary-light); transform: translateY(-2px); }
.p404-btn-solid svg { width: 14px; height: 14px; flex-shrink: 0; }

.p404-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  color: var(--text);
  padding: .7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  border: 2px solid var(--border);
  transition: all .2s;
  text-decoration: none;
}
.p404-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.p404-btn-outline svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Divider ──────────────────────────────────── */
.p404-divider {
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.p404-divider-line { flex: 1; height: 1px; background: var(--border); }
.p404-divider-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text3);
  white-space: nowrap;
}

/* ── Category chips ───────────────────────────── */
.p404-cats {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
  margin-bottom: 3.5rem;
}
.p404-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.p404-cat-chip:hover {
  background: #fff;
  border-color: var(--cat-clr, var(--accent));
  color: var(--cat-clr, var(--accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.p404-cat-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cat-clr, var(--accent));
  flex-shrink: 0;
}

/* ── Popular stores grid ──────────────────────── */
.p404-stores-section {
  width: 100%;
  max-width: 880px;
}
.p404-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.1rem;
}
.p404-stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .875rem;
}

/* Store card */
.p404-store-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem .875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.p404-store-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--store-clr, var(--accent));
  transform: scaleX(0);
  transition: transform .2s;
}
.p404-store-card:hover {
  border-color: var(--store-clr, var(--accent));
  box-shadow: 0 6px 24px rgba(12,27,58,.1);
  transform: translateY(-3px);
}
.p404-store-card:hover::after { transform: scaleX(1); }

.p404-store-logo {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: .65rem;
  color: var(--store-clr, var(--text3));
  overflow: hidden;
  flex-shrink: 0;
}
.p404-store-logo img { width: 38px; height: 38px; object-fit: contain; }
.p404-store-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--text);
  text-align: center;
}
.p404-store-deals {
  font-size: .68rem;
  color: var(--text3);
  text-align: center;
}
.p404-store-badge {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  color: var(--store-clr, var(--accent));
  background: rgba(255,92,40,.08);
  padding: .15rem .5rem;
  border-radius: 40px;
  border: 1px solid rgba(255,92,40,.15);
}

/* ── Error code strip ─────────────────────────── */
.p404-code-strip {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 880px;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.p404-code-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.p404-code-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p404-code-icon svg { width: 20px; height: 20px; color: var(--accent); }
.p404-code-text strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
  display: block;
}
.p404-code-text span { font-size: .75rem; color: var(--text3); }
.p404-code-right {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.p404-code-tag {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .25rem .6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  color: var(--text3);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 860px) {
  .p404-stores-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .p404-wrap { padding: 2.5rem 1rem 3.5rem; }
  .p404-stores-grid { grid-template-columns: repeat(2, 1fr); }
  .p404-illo { width: 240px; }
  .p404-actions { flex-direction: column; align-items: center; }
  .p404-btn-solid, .p404-btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .p404-code-strip { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .p404-stores-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .p404-h1 { font-size: 1.5rem; }
}




/* =====Season PAGER / CODEIGNITER PAGINATION ===== */

/* ===== PAGER / CODEIGNITER PAGINATION ===== */
/* ===== PAGINATION — rounded square style ===== */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 0;
  margin: 24px 0;
  list-style: none;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #4A5378;
  text-decoration: none;
  background-color: #ffffff;
  border: 1.5px solid #E3E7F1;
  border-radius: 10px;          /* ← rounded square, matches screenshot */
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: all .15s;
  margin-left: 0;
  line-height: 1;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 2;
  color: #0C1B3A;
  background-color: #F4F6FB;
  border-color: #c0c8e0;
}

/* First / Last — no special radius override needed */
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 10px;
}

/* Active page — orange */
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #ffffff;
  cursor: default;
  background-color: #FF5C28;
  border-color: #FF5C28;
}

/* Disabled */
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #8E94B8;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #E3E7F1;
}

/* Ellipsis dots — no border/bg */
.pagination > li > span.dots,
.pagination > li.dots > a,
.pagination > li.dots > span {
  border: none;
  background: none;
  color: #8E94B8;
  cursor: default;
  width: 28px;
}


/*   404 Page */

