/* =========================================================
   SPARK — Bold Commerce Design System (v2)
   Energetic marketplace aesthetic: deep navy + electric
   orange + acid lime, condensed poster display type, soft
   floating cards with circular sticker badges, pill CTAs,
   and alternating dark/light section blocks for rhythm
   instead of borders everywhere.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --navy: #0B0F19;
    --navy-soft: #161C2C;
    --paper: #F6F4EC;
    --card: #FFFFFF;
    --orange: #FF5A1F;
    --orange-dark: #D6430F;
    --lime: #C6FF3D;
    --lime-dark: #9FD918;
    --line: #E7E2D4;
    --grey: #6B6A63;
    --grey-lt: #9A968A;

    --display: 'Anton', sans-serif;
    --body: 'Manrope', sans-serif;
    --mono: 'JetBrains Mono', monospace;

    --max: 1280px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius: 14px;
    --shadow: 0 14px 30px -18px rgba(11, 15, 25, .35);
    --shadow-sm: 0 6px 16px -10px rgba(11, 15, 25, .3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--navy);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 400;
    margin: 0;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input,
select,
textarea {
    font-family: inherit;
}

:focus-visible {
    outline: none;
    outline-offset: 2px;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}


/* ---------- kicker ---------- */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 14px;
}

.kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--orange);
}

section.on-dark .kicker {
    color: var(--lime);
}

section.on-dark .kicker::before {
    background: var(--lime);
}

/* ---------- buttons — flat pill ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--card);
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 14.5px;
    transition: background .15s, transform .15s;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 999px;
    padding: 12px 26px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 14.5px;
    transition: background .15s, color .15s;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--card);
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--navy);
    border: none;
    border-radius: 999px;
    padding: 11px 20px;
    font-family: var(--body);
    font-weight: 800;
    font-size: 13.5px;
    transition: background .15s;
}

.btn-yellow:hover {
    background: var(--lime-dark);
}

.link-arrow {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .03em;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 2px;
}

.link-arrow:hover {
    color: var(--orange);
    border-color: var(--orange);
}

section.on-dark .link-arrow {
    color: var(--orange-dark);
    border-color: var(--orange-dark);
}

section.on-dark .link-arrow:hover {
    color: var(--lime);
    border-color: var(--lime);
}

section.on-dark .btn-secondary {
    border-color: var(--card);
    color: var(--card);
}

section.on-dark .btn-secondary:hover {
    background: var(--card);
    color: var(--navy);
}

/* =========================================================
   TOP BAR + HEADER
   ========================================================= */
.topbar {
    background: var(--navy);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 12px;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px var(--gutter);
}

.topbar .divider {
    opacity: .4;
    margin: 0 10px;
}

.topbar strong {
    color: var(--lime);
}

header.site {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: .02em;
}

.logo .mark {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card);
    font-size: 17px;
    font-family: var(--body);
    font-weight: 800;
}

.logo:hover {
    color: #000 !important;
}

nav.primary ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav.primary a {
    font-size: 14.5px;
    font-weight: 700;
    font-family: var(--body);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

nav.primary a.active,
nav.primary a:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: var(--card);
    border: 2px solid var(--navy);
    border-radius: 8px;
    width: 40px;
    height: 36px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    margin: 0 auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--navy);
    padding: 0 var(--gutter);
    overflow-y: auto;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav .mnav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.mobile-nav .logo {
    color: var(--card);
}

.mobile-nav .mnav-close {
    background: transparent;
    border: 2px solid var(--card);
    border-radius: 8px;
    color: var(--card);
    width: 38px;
    height: 36px;
    font-size: 16px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    border-bottom: 1px solid #262C3E;
}

.mobile-nav a {
    padding: 18px 2px;
    font-family: var(--display);
    font-size: 18px;
    color: var(--paper);
    letter-spacing: .02em;
    font-weight: 400;
    text-transform: uppercase;
}

.mobile-nav a.active {
    color: var(--lime);
}

.mobile-nav .mnav-cta {
    margin-top: 7px;
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: .02em;
    font-weight: 400;
}

/* =========================================================
   HERO — IMAGE-ONLY SLIDER
   ========================================================= */
.hero-banner {
    position: relative;
    aspect-ratio: 21/9;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 15, 25, .55) 0%, rgba(11, 15, 25, 0) 45%);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 9px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .5);
    padding: 0;
}

.hero-dots button.is-active {
    background: var(--lime);
    width: 26px;
    border-radius: 5px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-nav button {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: background .15s;
}

.hero-nav button:hover {
    background: var(--lime);
}

@media (max-width:760px) {
    .hero-banner {
        height: auto;
    }

    .hero-nav {
        display: none;
    }

    .hero-nav button {
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   SEARCH
   ========================================================= */
.search-bar {
    padding: 28px 0;
}

.search-bar form {
    display: flex;
    align-items: center;
    border-radius: 999px;
    background: var(--card);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.search-bar input {
    flex: 1;
    border: none;
    width: 100%;
    background: transparent;
    padding: 16px 6px 16px 24px;
    font-size: 15px;
    color: var(--navy);
    border-radius: 999px 0 0 999px;
}

.search-bar input::placeholder {
    color: var(--grey-lt);
}

.search-icon {
    position: relative;
    left: 20px;
    top: 2px;
}

/* =========================================================
   SECTIONS
   ========================================================= */
section {
    padding: 64px 0;
}

section.tight {
    padding: 46px 0;
}

section.on-dark {
    background: var(--navy);
    color: var(--paper);
}

section.on-dark h2 {
    color: var(--card);
}

section.on-dark .section-head .desc {
    color: #A9A69B;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
    gap: 20px;
}

.section-head h2 {
    font-size: clamp(26px, 3.4vw, 40px);
}

.section-head .desc {
    color: var(--grey);
    font-size: 15px;
    max-width: 44ch;
    margin-top: 10px;
    text-transform: none;
    font-family: var(--body);
}

/* ---------- top brands ---------- */
.brand-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.brand-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border-radius: 999px;
    padding: 10px 20px 10px 10px;
    box-shadow: var(--shadow-sm);
    min-width: 210px;
}

.brand-chip .initial {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--body);
    font-size: 14px;
    flex-shrink: 0;
}

.brand-chip .name {
    font-weight: 700;
    font-size: 14px;
    display: block;
}

.brand-chip:hover .name{
    color: var(--orange-dark    );
}

.brand-chip .count {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--orange-dark);
    display: block;
    font-weight: 600;
}

/* ---------- trending stores ---------- */
.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.store-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.store-card .banner {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
}

.store-card .banner .sticker {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--display);
    font-size: 12px;
    line-height: 1.05;
    transform: rotate(8deg);
    box-shadow: 0 6px 14px -6px rgba(0, 0, 0, .4);
}

.store-card .body {
    padding: 22px 24px 24px;
}

.store-card .cat {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.store-card h3 {
    font-size: 21px;
    margin: 10px 0 10px;
    text-transform: none;
    font-family: var(--body);
    color: var(--navy-soft);
    font-weight: 800;
}

.store-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13.5px;
    color: var(--grey);
    margin-bottom: 18px;
    line-height: 1.6;
}

.store-card .foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-card .deals {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-dark);
}

/* ---------- featured coupons ---------- */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.coupon {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 22px 22px 20px;
    position: relative;
    border-top: 5px solid var(--orange);
}

.coupon.alt {
    border-top-color: var(--lime);
}

.coupon.alt2 {
    border-top-color: var(--navy);
}

.coupon .row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.coupon .store-name {
    font-weight: 700;
    font-size: 13.5px;
}

.coupon .badge {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: #F1EEE3;
    border-radius: 999px;
    padding: 4px 10px;
}

.coupon .badge.hot {
    background: var(--orange);
    color: var(--card);
}

.coupon .value {
    font-family: var(--display);
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: none;
}

.coupon .value span {
    color: var(--grey);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body);
}

.coupon .terms {
    font-size: 13px;
    color: var(--grey);
    margin-bottom: 18px;
    min-height: 36px;
}

.coupon .cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
}

.coupon .exp {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--grey);
    font-weight: 600;
}

.code-box {
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 700;
    border: 1.5px dashed var(--navy);
    border-radius: 8px;
    padding: 6px 10px;
    letter-spacing: .02em;
    background: var(--paper);
    cursor: pointer;
}

/* ---------- latest deals ---------- */
.deal-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.deal-tile {
    background: var(--navy-soft);
    color: var(--paper);
    border-radius: var(--radius);
    padding: 24px 22px;
    position: relative;
}

.deal-tile .cat {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--lime);
    font-weight: 700;
    text-transform: uppercase;
}

.deal-tile h4 {
    color: var(--card);
    font-size: 16.5px;
    margin: 14px 0 8px;
    text-transform: none;
    font-family: var(--body);
    font-weight: 700;
}

.deal-tile p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12.5px;
    color: #9C99A8;
    margin-bottom: 18px;
}

.deal-tile .off {
    font-family: var(--display);
    font-size: 26px;
    color: var(--orange);
}

.deal-tile a {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--card);
    border-bottom: 2px solid var(--lime);
    padding-bottom: 2px;
}

/* ---------- promo banners (ads) ---------- */
.ad-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 10px;
}

.promo-banner {
    border-radius: 20px;
    background: var(--orange);
    color: var(--card);
    padding: 40px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.promo-banner .tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #FFE0D2;
}

.promo-banner h3 {
    font-size: 26px;
    max-width: 26ch;
    text-transform: none;
    font-family: var(--body);
    font-weight: 800;
    line-height: 1.2;
}

.promo-banner p {
    font-size: 14px;
    margin-top: 10px;
    max-width: 38ch;
    color: #FFE0D2;
}

.promo-banner .btn-primary {
    background: var(--navy);
}

.promo-banner .btn-primary:hover {
    background: #000;
}

.promo-strip-sm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo-card-sm {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-card-sm h4 {
    font-size: 18px;
    text-transform: none;
    font-family: var(--body);
    font-weight: 800;
}

.promo-card-sm p {
    font-size: 13.5px;
    color: var(--grey);
}

/* ---------- blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.blog-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card .img {
    background: var(--orange-dark);
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.blog-card .body {
    padding: 20px 22px 24px;
}

.blog-card .cat {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.blog-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 19px;
    margin: 10px 0 8px;
    text-transform: none;
    font-family: var(--body);
    color: var(--navy-soft);
    font-weight: 800;
    line-height: 1.3;
}

.blog-card.lead h3 {
    font-size: 25px;
}

.blog-card p {
    font-size: 13.5px;
    color: var(--grey);
}

.blog-card .meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--grey);
    margin-top: 14px;
    font-weight: 600;
}

/* ---------- footer ---------- */
footer.site {
    background: var(--navy);
    color: var(--paper);
    padding: 56px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid #262C3E;
}

.footer-top .logo {
    color: var(--paper);
}

.footer-top p {
    color: #9C99A8;
    font-size: 14px;
    margin-top: 14px;
    max-width: 32ch;
}

.foot-col h5 {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    font-size: 14px;
    color: #C7C4D3;
    margin-bottom: 11px;
}

.foot-col a:hover {
    color: var(--card);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: var(--mono);
    font-size: 12px;
    color: #5D5A6B;
}

.newsletter-row {
    display: flex;
    border-radius: 999px;
    background: var(--navy-soft);
    border: 1px solid #333A4E;
    overflow: hidden;
}

.newsletter-row input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--paper);
    font-size: 13px;
}

.newsletter-row button {
    background: var(--lime);
    color: var(--navy);
    border: none;
    padding: 0 20px;
    font-weight: 800;
    font-size: 13px;
    font-family: var(--body);
}

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-header {
    padding: 40px 0 36px;
    background: var(--card);
    border-bottom: 1px solid var(--line);
}

.breadcrumb {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 16px;
    background: transparent;
}

.breadcrumb a:hover {
    color: var(--orange-dark);
}

.breadcrumb .sep {
    margin: 0 8px;
    opacity: .5;
}

/* ---------- store detail ---------- */
/* ---------- store detail — cover-photo banner ---------- */
.store-cover {
    background: var(--navy-soft);
    height: 320px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.store-cover .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 15, 25, .78) 0%, rgba(11, 15, 25, .1) 60%);
}

.store-cover .sticker {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--display);
    font-size: 12.5px;
    line-height: 1.05;
    transform: rotate(8deg);
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .5);
    z-index: 2;
}

.store-cover .cover-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 var(--gutter) 26px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 22px;
}

.store-cover a:hover {
    color: var(--orange);
}

.store-avatar {
    width: 88px;
    height: 88px;
    background: var(--orange-dark);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 12px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    border: 3px solid var(--card);
}

.store-cover h1 {
    color: var(--card);
    font-size: clamp(26px, 3.6vw, 40px);
    text-transform: none;
    font-family: var(--display);
}

.store-cover .cat-line {
    font-family: var(--mono);
    font-size: 12px;
    color: #D8D5E0;
    margin-top: 6px;
    font-weight: 600;
}

.stat-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: -24px var(--gutter) 0;
    position: relative;
    z-index: 3;
}

.stat-pill {
    background: var(--card);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    padding: 12px 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-pill strong {
    font-family: var(--display);
    font-size: 19px;
    color: var(--orange-dark);
}

.stat-pill span {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--grey);
    font-weight: 600;
    text-transform: uppercase;
}

/* legacy grid kept for backward compatibility elsewhere */
.store-hero {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 26px;
    align-items: center;
}

.store-logo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    background: var(--navy);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 30px;
    box-shadow: var(--shadow);
}

.store-hero h1 {
    font-size: clamp(28px, 3.8vw, 42px);
    text-transform: none;
    font-family: var(--display);
}

.store-hero .cat-line {
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--grey);
    margin-top: 8px;
    font-weight: 600;
}

.store-stats {
    display: flex;
    gap: 26px;
    text-align: right;
}

.store-stats div strong {
    display: block;
    font-family: var(--display);
    font-size: 24px;
    color: var(--orange-dark);
}

.store-stats div span {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--grey);
    font-weight: 600;
}

.store-body {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 50px;
}

.store-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    background: var(--card);
    border-radius: 999px;
    padding: 5px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.store-tabs button {
    background: none;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--grey);
}

.store-tabs button.active {
    color: var(--card);
    background: var(--navy);
}

.coupon-full {
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-sm);
    padding: 20px 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    margin-bottom: 16px;
    border-left: 5px solid var(--orange);
}

.coupon-full .amt {
    font-family: var(--display);
    font-size: 24px;
    color: var(--orange-dark);
    border-right: 1px dashed var(--line);
    padding-right: 22px;
    min-width: 88px;
    text-transform: none;
}

.coupon-full h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
    text-transform: none;
    font-family: var(--body);
    font-weight: 800;
}

.coupon-full p {
    font-size: 13px;
    color: var(--grey);
}

.coupon-full .side {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.expired-row {
    opacity: .55;
    box-shadow: none;
    border-left-color: var(--line);
}

.expired-row .amt {
    color: var(--grey);
}

.expired-row .code-box {
    text-decoration: line-through;
}

.coupon.expired {
    opacity: .5;
}

.coupon.expired .value {
    color: var(--grey);
}

.coupon.expired .code-box {
    text-decoration: line-through;
}

.coupon-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

aside.sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.side-block {
    border-radius: var(--radius);
    background: var(--card);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.side-block h4 {
    font-size: 15px;
    margin-bottom: 14px;
    font-family: var(--body);
    font-weight: 800;
    text-transform: none;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.snapshot-tile {
    background: var(--paper);
    border-radius: 12px;
    padding: 12px 14px;
}

.snapshot-tile span {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
    margin-bottom: 4px;
}

.snapshot-tile strong {
    font-size: 14.5px;
    font-weight: 700;
}

.related-store-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--paper);
    border-radius: 999px;
    padding: 10px 16px;
    margin-bottom: 10px;
}

.related-store-pill:last-child {
    margin-bottom: 0;
}

.related-store-pill span:first-child {
    font-size: 13.5px;
    font-weight: 700;
}

.related-store-pill span:last-child {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--orange-dark);
}

.side-block ul li {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}

.side-block ul li:last-child {
    border-bottom: none;
}

.side-block .ad-slot {
    border-radius: 12px;
    background: var(--paper);
    padding: 26px 18px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.faq-item summary {
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-family: var(--display);
    font-size: 18px;
    color: var(--orange);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 10px;
    color: var(--grey);
    font-size: 14px;
}


/* ---------- promotions page ---------- */
.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 26px 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
}

.filter-row button {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--card);
    padding: 8px 16px;
}

.filter-row button.active {
    background: var(--navy);
    color: var(--card);
    border-color: var(--navy);
}

/* ---------- blog listing ---------- */
.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- single blog ---------- */
.article-header {
    max-width: 820px;
}

.article-header h1 {
    font-size: clamp(30px, 4.2vw, 46px);
    margin: 18px 0 18px;
    text-transform: none;
}

.article-header .sub {
    font-size: 17px;
    color: var(--grey);
    max-width: 60ch;
    font-family: var(--body);
    text-transform: none;
}

.article-meta {
    display: flex;
    gap: 22px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--grey);
    font-weight: 600;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.article-body {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16.5px;
    line-height: 1.75;
}

.article-body h2 {
    font-size: 23px;
    margin-top: 12px;
    text-transform: none;
}

.article-body blockquote {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 19px;
    font-style: italic;
}

.article-body a {
    color: var(--orange-dark);
    font-weight: 700;
}

.article-body li {
    margin-left: 2rem;
    list-style: disc;
}

.article-body li::marker {
    color: var(--orange-dark);
}

/* ---------- about ---------- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-hero h1 {
    font-size: clamp(32px, 4.4vw, 50px);
    text-transform: none;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-cell {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px 22px;
}

.stat-cell strong {
    font-family: var(--display);
    font-size: 32px;
    display: block;
    color: var(--orange-dark);
}

.stat-cell span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--grey);
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.team-card .ph {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}

.team-card .info {
    padding: 16px 18px;
}

.team-card h4 {
    font-size: 14.5px;
    text-transform: none;
    font-family: var(--body);
    font-weight: 800;
}

.team-card span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--grey);
    font-weight: 600;
}

/* ---------- contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
    color: var(--grey);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card);
    padding: 12px 14px;
    font-size: 14.5px;
    color: var(--navy);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-info-item h4 {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 15.5px;
}

.map-block {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #EDE9DB, var(--paper));
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--grey);
    font-weight: 600;
}

.page-title{
    font-size:clamp(30px,4.2vw,46px);
}

.page-updated{
    margin-top:12px;
    font-family:var(--mono);
    font-size:13px;
    font-weight:600;
    color:var(--grey);
}

.legal-wrapper{
    max-width:760px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.legal-address{
    font-style:normal;
    font-size:15px;
    line-height:1.8;
    color:var(--grey);
}

.legal-text{
    font-size:15px;
    color:var(--grey);
}

.legal-contact{
    line-height:1.8;
}

.legal-paragraph{
    line-height:1.75;
}

.legal-strong{
    color:var(--navy);
}

.legal-link{
    color:var(--orange-dark);
    font-weight:700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px) {
    .store-grid {
        grid-template-columns: 1fr 1fr;
    }

    .coupon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .deal-strip {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid .blog-card:nth-child(3) {
        display: none;
    }

    .store-body {
        grid-template-columns: 1fr;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width:760px) {

    .blog-card.lead {
        grid-template-columns: 1fr !important;
    }

    .blog-card.lead .img {
        border-right: none !important;
        border-bottom: 2px solid var(--ink) !important;
        aspect-ratio: 16/9 !important;
    }

    .blog-card.lead .body {
        padding: 22px 20px !important;
    }

    .blog-card.lead h3 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .blog-card.lead p {
        font-size: 14px !important;
    }

    .blog-card.lead .meta {
        font-size: 12px;
    }

    .topbar .wrap {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        padding: 8px var(--gutter);
    }

    .store-cover {
        height: 160px;
    }

    .store-cover .sticker{
        display: none;
    }

    nav.primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions .btn-secondary {
        display: none;
    }

    section {
        padding: 42px 0;
    }

    section.tight {
        padding: 30px 0;
    }

    .section-head {
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
    }

    .section-head h2 {
        font-size: clamp(18px, 4vw, 32px);
    }

    .kicker {
        display: none;
    }

    .store-card .banner .sticker {
        height: 43px;
        width: 43px;
        font-size: 10px;
    }

    .store-card .body {
        padding: 0.75rem 1rem;
    }

    .store-card .cat {
        font-size: 9px;
    }

    .store-card h3 {
        font-size: 17px;
        margin: 4px 0 10px;
    }

    .store-card p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .store-card .deals {
        font-size: 10px;
    }

    .link-arrow {
        width: 180px;
        text-align: end;
        font-size: 10px;
        border: none;
        padding: 0;
        letter-spacing: 0;
    }

    .coupon {
        padding: 16px 16px 14px;
    }

    .coupon .row1 {
        margin-bottom: 12px;
    }

    .coupon .store-name {
        font-size: 12px;
    }

    .coupon .badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .coupon .value {
        font-size: 24px;
    }

    .coupon .terms {
        font-size: 12px;
        min-height: 28px;
        margin-bottom: 13px;
    }

    .coupon .cta-row {
        padding-top: 10px;
    }

    .coupon .exp {
        font-size: 10px;
    }

    .coupon .code-box {
        font-size: 11px;
        padding: 4px 8px;
    }

    .deal-tile .off {
        justify-content: flex-start !important;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }

    .coupon-grid {
        grid-template-columns: 1fr;
    }

    .deal-strip {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid .blog-card:nth-child(3) {
        display: flex;
    }

    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .promo-strip-sm {
        grid-template-columns: 1fr;
    }

    .store-hero {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 16px;
    }

    .store-stats {
        justify-content: flex-start;
        text-align: left;
    }

    .store-tabs {
        overflow-x: auto;
        width: 100%;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .blog-listing-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .filter-row {
        padding: 18px 0;
        gap: 8px;
    }

    .coupon-full {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 12px;
    }

    .coupon-full .amt {
        border-right: none;
        border-bottom: 1px dashed var(--line);
        padding: 0 0 12px;
    }

    .coupon-full .side {
        align-items: flex-start;
    }

    .contact-grid {
        gap: 36px;
    }

    form div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width:480px) {
    .deal-strip {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}