/* ============================================================
   Desworthy Theme - Main Stylesheet
   Design System: Verified Signal (Digital Empiricism × Swiss)
   ============================================================ */

/* Local font files avoid a render-blocking third-party stylesheet. */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
}

:root {
  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono: 'Monaco', 'Menlo', 'Consolas', monospace;
  --color-navy: #1a202c;
  --color-text: #2d3748;
  --color-surface: #faf9f6;
  --color-accent: #0f766e;
  --color-success: #0f9b58;
  --color-muted: #718096;
  --color-border: #e2e8f0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* Local editorial imagery and unboxed store marks (v1.4.1). */
.ds-responsive-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.ds-responsive-picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-context-hero-media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: 28px 0 0;
    border-radius: 8px;
    background: #eef3f2;
    box-shadow: 0 18px 44px rgb(10 35 41 / 12%);
}

.ds-home-deal-storemark {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-home-store-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-coupon-card-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-term-hero-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-home-deal-storemark img,
.ds-home-store-logo img,
.ds-coupon-card-logo img,
.ds-term-hero-logo img,
.ds-store-page-brand-mark img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

.ds-store-lettermark {
    display: inline-grid;
    width: 44px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #07343a;
    place-items: center;
    font-weight: 800;
}

/* 视觉隐藏但保留给屏幕阅读器/SEO（有官方 logo 时隐藏重复品牌名） */
.ds-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Reset & Base ─────────────────────────────────────────── */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-surface);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* ── Container ────────────────────────────────────────────── */

.ds-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* ── Typography ───────────────────────────────────────────── */

.ds-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0;
    color: var(--color-text);
    margin-bottom: var(--space-8);
}

.ds-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.ds-section-link {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.ds-section-link:hover { opacity: 0.75; }

/* ── Header ───────────────────────────────────────────────── */

.ds-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ds-header-inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    height: 64px;
    gap: var(--space-6);
}

.ds-logo { justify-self: start; }
.ds-logo-text { font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; letter-spacing: 0; color: var(--color-navy); }
.ds-logo-accent { color: var(--color-accent); }

.ds-nav { display: flex; justify-content: center; justify-self: center; }

.ds-nav-list { display: flex; gap: var(--space-1); }
.ds-nav-list a {
    display: block;
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-navy);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.ds-nav-list a:hover,
.ds-nav-list .current-menu-item > a { background: rgba(0, 0, 0, 0.04); }

.ds-nav-primary-link {
    min-width: 84px;
    text-align: center;
}

.ds-nav-primary-link.is-active {
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-accent);
}

.ds-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-navy);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.ds-nav-dropdown-toggle:hover,
.ds-header.is-stores-open .ds-nav-dropdown-toggle {
    background: rgba(0, 0, 0, 0.04);
}

.ds-nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: var(--space-4) 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
}

.ds-header.is-stores-open .ds-nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ds-nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-2);
}

.ds-nav-category-item,
.ds-nav-store-item {
    display: flex !important;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) !important;
    border-radius: var(--radius-md) !important;
    background: rgba(0, 0, 0, 0.02);
}

.ds-nav-category-item span,
.ds-nav-store-item span,
.ds-nav-store-item img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: var(--radius-sm);
}

.ds-nav-category-item span,
.ds-nav-store-item span {
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-accent);
    font-weight: 800;
}

.ds-nav-store-item img {
    object-fit: contain;
    padding: 3px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ds-nav-category-item strong,
.ds-nav-store-item strong {
    min-width: 0;
    font-size: 0.8125rem;
    color: var(--color-navy);
}

.ds-nav-category-item--all {
    color: var(--color-accent) !important;
    background: rgba(15, 118, 110, 0.08) !important;
}

.ds-header-actions { display: flex; align-items: center; gap: var(--space-2); justify-self: end; }

.ds-header-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 var(--space-4);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-navy);
    font-size: 0.875rem;
    font-weight: 700;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ds-header-link-button:hover {
    border-color: rgba(15, 118, 110, 0.22);
    color: var(--color-accent);
    background: rgba(15, 118, 110, 0.05);
}

.ds-search-toggle,
.ds-mobile-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius-sm); color: var(--color-navy); transition: background 0.2s; }
.ds-search-toggle:hover,
.ds-mobile-toggle:hover { background: rgba(0, 0, 0, 0.04); }

.ds-mobile-toggle { display: none; }
.ds-mobile-toggle span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 1px; transition: transform 0.3s; }
.ds-mobile-toggle span:nth-child(2) { transform: translateY(6px); }
.ds-mobile-toggle span:nth-child(3) { transform: translateY(12px); }

/* Search Overlay */
.ds-search-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.ds-search-overlay.is-active { opacity: 1; pointer-events: auto; }

.ds-search-form {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.ds-search-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid var(--color-navy);
    padding: var(--space-3) 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    background: transparent;
    outline: none;
}
.ds-search-close { position: absolute; right: var(--space-4); top: 50%; transform: translateY(-50%); color: var(--color-navy); }

/* ── Sections ─────────────────────────────────────────────── */

.ds-section { padding: clamp(48px, 6vw, 96px) 0; }
.ds-section-light { background: rgba(0, 0, 0, 0.02); }
.ds-section-muted { background: var(--color-navy); }
.ds-section-muted .ds-section-title { color: var(--color-surface); }

/* ── Hero ─────────────────────────────────────────────────── */

.ds-hero {
    padding: clamp(64px, 8vw, 120px) 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(233, 69, 96, 0.03) 50%, var(--color-surface) 100%);
}

.ds-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.ds-hero-kicker {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-success);
    margin-bottom: var(--space-4);
}

.ds-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--color-navy);
    margin-bottom: var(--space-4);
}

.ds-hero-lead {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 480px;
    margin-bottom: var(--space-8);
}

.ds-hero-search {
    display: flex;
    align-items: center;
    background: var(--color-surface);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-1) var(--space-3);
    transition: border-color 0.2s;
    margin-bottom: var(--space-6);
    max-width: 480px;
}
.ds-hero-search:focus-within { border-color: var(--color-accent); }
.ds-hero-search-icon { flex-shrink: 0; color: var(--color-muted); }
.ds-hero-search input {
    flex: 1;
    border: none;
    padding: var(--space-3);
    font-size: 0.9375rem;
    background: transparent;
    outline: none;
}
.ds-hero-search button {
    flex-shrink: 0;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}
.ds-hero-search button:hover { background: #0b5f58; }

.ds-hero-trending {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: 0.8125rem;
}
.ds-hero-trending-label { color: var(--color-muted); font-weight: 500; }
.ds-hero-trending a {
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 100px;
    transition: background 0.2s;
}
.ds-hero-trending a:hover { background: rgba(15, 118, 110, 0.1); color: var(--color-accent); }

/* Hero Visual */
.ds-hero-visual { position: relative; height: 100%; min-height: 360px; }

.ds-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}

.ds-hero-card-float {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ds-hero-card {
    background: var(--color-surface);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    transform: rotate(-2deg);
}

.ds-hero-card-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-success);
    background: rgba(15, 155, 88, 0.08);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    margin-bottom: var(--space-4);
}

.ds-hero-card-offer { font-size: 1.375rem; font-weight: 700; color: var(--color-navy); margin-bottom: var(--space-4); }

.ds-hero-card-code {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.03);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.ds-hero-card-store { font-size: 0.8125rem; color: var(--color-muted); }

.ds-photo-proof-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    margin: 0 auto;
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.12);
}

.ds-photo-proof-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.ds-photo-proof-header span {
    color: var(--color-accent);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.ds-photo-proof-header strong {
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.ds-photo-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.ds-photo-proof-grid span {
    display: grid;
    min-height: 92px;
    place-items: center;
    padding: var(--space-3);
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(26, 26, 46, 0.05)),
        #f7f7f2;
    border: 1px dashed rgba(15, 118, 110, 0.28);
    border-radius: var(--radius-md);
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 700;
    text-align: center;
}

.ds-photo-proof-panel p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.ds-section-eyebrow {
    display: inline-block;
    margin-bottom: var(--space-3);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-section-eyebrow--muted {
    color: rgba(250, 249, 246, 0.76);
}

.ds-section-header--stacked {
    align-items: end;
}

.ds-section-header--stacked .ds-section-title {
    margin-bottom: var(--space-3);
}

.ds-section-intro {
    max-width: 760px;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.ds-section-intro--muted {
    color: rgba(250, 249, 246, 0.74);
}

.ds-section-header--muted .ds-section-link {
    color: rgba(250, 249, 246, 0.9);
}

.ds-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 var(--space-5);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.ds-button:hover {
    transform: translateY(-1px);
}

.ds-button-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 14px 32px rgba(15, 118, 110, 0.22);
}

.ds-button-primary:hover {
    background: #0b5f58;
}

.ds-button-secondary,
.ds-button-ghost {
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.ds-button-secondary {
    background: #fff;
    color: var(--color-navy);
}

.ds-button-secondary:hover {
    border-color: rgba(15, 118, 110, 0.26);
    color: var(--color-accent);
}

.ds-button-ghost {
    background: transparent;
    color: var(--color-navy);
}

.ds-button-ghost:hover {
    background: rgba(15, 118, 110, 0.06);
    border-color: rgba(15, 118, 110, 0.16);
}

.ds-home-landing-hero {
    padding: clamp(36px, 5vw, 64px) 0 0;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 24%),
        linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
}

.ds-home-landing-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}

.ds-home-landing-copy {
    display: grid;
    gap: var(--space-4);
    max-width: 520px;
    padding-bottom: clamp(28px, 4vw, 44px);
}

.ds-home-landing-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
    color: var(--color-navy);
}

.ds-home-landing-lead {
    color: #667085;
    font-size: 1.25rem;
    line-height: 1.5;
}

.ds-home-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    padding-top: var(--space-2);
}

.ds-home-landing-points {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
    padding-top: var(--space-2);
}

.ds-home-landing-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475467;
    font-size: 0.95rem;
    font-weight: 500;
}

.ds-home-landing-points span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(15, 118, 110, 0.28);
    background: rgba(15, 118, 110, 0.08);
}

.ds-home-landing-visual {
    display: flex;
    justify-content: flex-end;
}

.ds-home-landing-visual img {
    width: 100%;
    max-width: 860px;
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
}

.ds-home-band {
    padding: clamp(30px, 4vw, 48px) 0 0;
}

.ds-home-band--tight {
    padding-top: clamp(22px, 3vw, 34px);
}

.ds-home-band-header {
    margin-bottom: var(--space-5);
}

.ds-home-band-header .ds-section-title {
    margin-bottom: 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.ds-home-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-home-deal-card {
    display: grid;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ds-home-deal-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.ds-home-deal-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 248px;
    padding: 58px var(--space-5) var(--space-5);
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f8f7 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-home-deal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.92);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ds-home-deal-storemark {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 60px;
    min-height: 60px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.ds-home-deal-storemark img {
    width: 100%;
    max-height: 34px;
    object-fit: contain;
}

.ds-home-deal-storemark strong {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.ds-home-deal-product-image {
    width: 100%;
    max-width: 270px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
}

.ds-home-deal-body {
    display: grid;
    gap: var(--space-3);
    padding: clamp(20px, 3vw, 24px);
}

.ds-home-deal-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.ds-home-deal-store {
    color: #667085;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-home-deal-kicker {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
}

.ds-home-deal-body h3 {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2vw, 2.15rem);
    line-height: 1.06;
}

.ds-home-deal-product {
    min-height: 2.8em;
    color: #475467;
    font-size: 1rem;
    line-height: 1.45;
}

.ds-home-deal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ds-home-deal-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.06);
    border: 1px solid rgba(15, 118, 110, 0.1);
    color: var(--color-navy);
    font-size: 0.78rem;
    font-weight: 700;
}

.ds-home-deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-2);
}

.ds-home-deal-meta {
    color: #667085;
    font-size: 0.88rem;
}

.ds-home-deal-proof {
    font-weight: 700;
}

.ds-home-deal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 46px;
    padding: 0 var(--space-5);
    border-radius: var(--radius-md);
    background: var(--color-accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    transition: background 0.2s, transform 0.2s;
}

.ds-home-deal-cta:hover {
    background: #0b5f58;
    transform: translateY(-1px);
}

.ds-home-deal-card--empty .ds-home-deal-body {
    min-height: 220px;
    align-content: center;
}

.ds-home-store-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.ds-home-store-pill {
    display: grid;
    place-items: center;
    min-height: 98px;
    padding: var(--space-5);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ds-home-store-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.ds-home-store-pill img {
    width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.ds-home-store-pill span {
    color: var(--color-navy);
    font-weight: 700;
    text-align: center;
}

.ds-home-category-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ds-home-category-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    min-height: 98px;
    padding: var(--space-5);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ds-home-category-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.ds-home-category-copy {
    display: grid;
    gap: 6px;
}

.ds-home-category-copy strong {
    color: var(--color-navy);
    font-size: 1.05rem;
    line-height: 1.2;
}

.ds-home-category-copy span {
    color: #667085;
    font-size: 0.9rem;
}

.ds-home-category-arrow {
    color: var(--color-navy);
    font-size: 1.25rem;
    line-height: 1;
}

.ds-home-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ds-home-guide-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: var(--space-4);
    align-items: stretch;
    min-height: 156px;
    padding: var(--space-4);
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ds-home-guide-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.ds-home-guide-thumb {
    display: block;
    min-height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.ds-home-guide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-home-guide-copy {
    display: grid;
    align-content: center;
    gap: var(--space-3);
    min-width: 0;
}

.ds-home-guide-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    width: fit-content;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ds-home-guide-copy h3,
.ds-home-guide-copy h3 a {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.3;
}

.ds-home-guide-copy p {
    color: #667085;
    line-height: 1.6;
}

.ds-home-guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    color: #667085;
    font-size: 0.875rem;
}

.ds-home-guide-card--empty {
    grid-template-columns: 1fr;
}

.ds-home-hero {
    padding: clamp(56px, 7vw, 108px) 0;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 26%),
        linear-gradient(180deg, #fff 0%, #f7f8f7 100%);
}

.ds-home-hero--compact {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
}

.ds-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.ds-home-hero-grid--compact {
    align-items: center;
}

.ds-home-hero-copy {
    min-width: 0;
}

.ds-home-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.02;
    color: var(--color-navy);
    margin-bottom: var(--space-4);
}

.ds-home-hero-lead {
    max-width: 720px;
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.ds-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.ds-home-hero .ds-trust-strip {
    margin-top: var(--space-6);
}

.ds-home-hero-search {
    margin-top: var(--space-6);
    margin-bottom: 0;
    max-width: 640px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.ds-home-hero-panel {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.ds-home-hero-panel-head {
    display: grid;
    gap: var(--space-2);
}

.ds-home-hero-panel-head strong {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.ds-home-hero-panel-head p {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-home-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-home-entry-card {
    display: grid;
    gap: var(--space-3);
    min-height: 100%;
    padding: clamp(22px, 3vw, 28px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, rgba(15, 118, 110, 0.03) 100%);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.ds-home-entry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.24);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.ds-home-entry-eyebrow {
    color: var(--color-accent);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-home-entry-card h2 {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 2vw, 1.6rem);
    line-height: 1.18;
}

.ds-home-entry-card p {
    color: var(--color-muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.ds-home-entry-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.8125rem;
}

.ds-home-entry-meta span {
    color: var(--color-success);
    font-weight: 700;
}

.ds-home-entry-meta strong {
    color: var(--color-accent);
    font-weight: 800;
}

.ds-home-store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-home-store-card {
    display: grid;
    gap: var(--space-4);
    min-height: 100%;
    padding: clamp(22px, 3vw, 28px);
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ds-home-store-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.22);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.ds-home-store-head {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.ds-home-store-logo {
    display: grid;
    place-items: center;
    flex: 0 0 76px;
    min-height: 76px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ds-home-store-logo img {
    width: 100%;
    max-height: 38px;
    object-fit: contain;
}

.ds-home-store-logo strong {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 1rem;
}

.ds-home-store-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.ds-home-store-copy h3 {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.15;
}

.ds-home-store-copy p {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ds-home-store-note {
    color: var(--color-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.ds-home-store-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-home-store-meta span {
    color: #667085;
    font-size: 0.88rem;
    font-weight: 700;
}

.ds-home-store-meta strong {
    color: var(--color-accent);
    font-size: 0.88rem;
    font-weight: 800;
}

.ds-store-card--featured {
    min-height: 182px;
    background: #fff;
}

.ds-home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}

.ds-home-category-card {
    display: grid;
    gap: var(--space-3);
    min-height: 100%;
    padding: var(--space-5);
    border: 1px solid rgba(250, 249, 246, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.ds-home-category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.ds-home-category-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.ds-home-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 32px;
    padding: 0 var(--space-3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ds-home-category-count {
    color: rgba(250, 249, 246, 0.78);
    font-size: 0.75rem;
    font-weight: 700;
}

.ds-home-category-card h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.3;
}

.ds-home-category-card p {
    color: rgba(250, 249, 246, 0.78);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.ds-home-category-card strong {
    margin-top: auto;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 800;
}

/* ── Category card layout ── */
/* Desktop: 5 columns, vertical flex centered */
.ds-home-category-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.ds-home-category-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 180px;
    padding: 28px 14px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(20, 33, 31, 0.035);
    text-align: center;
}

.ds-home-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 60px;
    color: #0d5552;
    background: transparent;
    border-radius: 10px;
}

.ds-home-category-copy {
    text-align: center;
}

.ds-home-category-copy strong {
    display: block;
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1.3;
}

.ds-home-category-copy span {
    display: block;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.3;
}

/* Mid-width: slightly tighter */
@media (max-width: 1180px) {
.ds-home-category-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.ds-home-category-pill {
    gap: 10px;
    min-height: 140px;
    padding: 18px 10px 14px;
}

.ds-home-category-icon {
    width: 60px;
    height: 50px;
}

.ds-home-category-copy strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.ds-home-category-copy > span {
    display: none;
}
}

.ds-home-cta-band {
    padding: 0 0 clamp(56px, 7vw, 96px);
}

.ds-home-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.ds-home-cta-copy {
    max-width: 720px;
}

.ds-home-cta-copy h2 {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: var(--space-3);
}

.ds-home-cta-copy p {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.ds-home-cta-actions {
    display: grid;
    justify-items: end;
    gap: var(--space-3);
}

.ds-home-cta-textlink {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 700;
}

.ds-home-summary-section {
    padding-top: clamp(32px, 4vw, 56px);
}

.ds-home-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.ds-home-summary-card {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-6);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ds-home-summary-card h2 {
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.25;
}

.ds-home-summary-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-home-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-home-category-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 var(--space-3);
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-home-inline-link {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 800;
}

/* Home office content modules */

.ds-feature-grid,
.ds-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
}

.ds-feature-card,
.ds-product-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    min-height: 220px;
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ds-feature-card:hover,
.ds-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 118, 110, 0.25);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.ds-feature-label,
.ds-product-card-mark {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(15, 118, 110, 0.09);
    border-radius: 100px;
    padding: var(--space-1) var(--space-2);
}

.ds-feature-card h3,
.ds-product-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--color-navy);
}

.ds-feature-card p,
.ds-product-card p {
    color: var(--color-muted);
    font-size: 0.9375rem;
}

.ds-feature-link,
.ds-product-card span:last-child {
    margin-top: auto;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-accent);
}

.ds-product-card {
    background: linear-gradient(180deg, #fff 0%, rgba(15, 118, 110, 0.04) 100%);
}

.ds-tech-grid .ds-category-card {
    min-height: 112px;
}

.ds-tech-grid .ds-category-icon {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-surface);
}

.ds-guide-list {
    display: grid;
    gap: var(--space-3);
}

.ds-guide-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, transform 0.2s;
}

.ds-guide-item:hover {
    transform: translateX(3px);
    border-color: rgba(15, 118, 110, 0.25);
}

.ds-guide-item span {
    font-weight: 700;
    color: var(--color-navy);
}

.ds-guide-item strong {
    color: var(--color-accent);
    font-size: 0.8125rem;
}

.ds-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-4);
}

.ds-guide-card {
    display: grid;
    gap: var(--space-3);
    min-height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ds-guide-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.ds-guide-card-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ds-guide-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-guide-card > :not(.ds-guide-card-thumb) {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

.ds-guide-card > :last-child {
    padding-bottom: var(--space-5);
}

.ds-guide-card-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ds-guide-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    line-height: 1.35;
    color: var(--color-navy);
}

.ds-guide-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-guide-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    color: var(--color-muted);
    font-size: 0.75rem;
}

.ds-guide-card-link {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-disclosure-note {
    margin-top: var(--space-6);
    color: var(--color-muted);
    font-size: 0.875rem;
    max-width: 760px;
}

/* ── Store Grid ───────────────────────────────────────────── */

.ds-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-4);
}

.ds-store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-4);
    background: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ds-store-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }

.ds-store-card-img { width: 56px; height: 56px; border-radius: var(--radius-md); overflow: hidden; background: rgba(0, 0, 0, 0.04); }
.ds-store-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 5px; background: #fff; }

.ds-store-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
    color: var(--color-muted);
}

.ds-store-card-name { font-size: 0.875rem; font-weight: 600; color: var(--color-navy); text-align: center; }
.ds-store-card-count { font-size: 0.75rem; color: var(--color-success); font-weight: 500; }

/* ── Coupon Grid ──────────────────────────────────────────── */

.ds-coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-6);
}

/* ── Coupon Card ──────────────────────────────────────────── */

.ds-coupon-card {
    background: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ds-coupon-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); }

.ds-coupon-card-inner { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }

.ds-coupon-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-3); }
.ds-coupon-card-store { display: flex; align-items: center; gap: var(--space-2); }
.ds-coupon-card-store-link { display: flex; align-items: center; gap: var(--space-2); min-width: 0; }
.ds-coupon-card-store-link:hover .ds-coupon-card-store-name { color: var(--color-accent); }

.ds-coupon-card-logo { width: 32px; height: 32px; border-radius: var(--radius-sm); object-fit: contain; padding: 3px; background: #fff; border: 1px solid rgba(0, 0, 0, 0.06); }
.ds-coupon-card-logo-placeholder {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.04);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
    color: var(--color-muted);
}

.ds-coupon-card-store-name { font-size: 0.8125rem; font-weight: 700; color: var(--color-navy); }

.ds-coupon-card-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; padding: var(--space-1) var(--space-2); border-radius: 100px; }
.ds-badge-verified { color: var(--color-success); background: rgba(15, 155, 88, 0.08); }
.ds-badge-offer-type { color: var(--color-navy); background: rgba(15, 23, 42, 0.06); }
.ds-badge-offer-type--coupon-code { color: #7c2d12; background: rgba(251, 146, 60, 0.16); }
.ds-badge-offer-type--auto-deal { color: #0f766e; background: rgba(15, 118, 110, 0.12); }
.ds-badge-offer-type--live-deal-page { color: #1d4ed8; background: rgba(59, 130, 246, 0.12); }
.ds-badge-offer-type--price-drop { color: #9a3412; background: rgba(245, 158, 11, 0.16); }

.ds-coupon-card-offer {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-navy);
    text-align: left;
}

.ds-coupon-card-caption {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.ds-coupon-card-code-wrap {
    display: flex;
    align-items: center;
    min-height: 52px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ds-coupon-card-code {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-accent);
    text-align: center;
}

.ds-coupon-card-copy {
    padding: var(--space-3) var(--space-5);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy);
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    transition: background 0.15s, color 0.15s;
}
.ds-coupon-card-copy:hover { background: var(--color-navy); color: #fff; }
.ds-coupon-card-copy.is-copied { background: var(--color-success); color: #fff; border-color: var(--color-success); }
.ds-coupon-card-copy--static,
.ds-coupon-card-copy--static:hover {
    cursor: default;
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-accent);
    border-color: rgba(15, 118, 110, 0.12);
}

.ds-coupon-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: 0.75rem;
    color: var(--color-muted);
}

.ds-coupon-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-coupon-card-disclosure {
    font-size: 0.6875rem;
    line-height: 1.5;
    color: var(--color-muted);
}

.ds-coupon-card-success { color: var(--color-success); font-weight: 700; }
.ds-coupon-card-terms-toggle { text-decoration: underline dashed; cursor: pointer; transition: color 0.15s; }
.ds-coupon-card-terms-toggle:hover { color: var(--color-navy); }

.ds-coupon-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--color-navy);
    color: #fff;
    width: 100%;
    min-height: 48px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: background 0.2s, transform 0.15s;
}
.ds-coupon-card-cta:hover { background: #0b5f58; transform: scale(1.02); }

.ds-archive-hero {
    padding: clamp(42px, 6vw, 72px) 0;
    background: rgba(15, 23, 42, 0.03);
}

.ds-archive-hero-inner {
    display: grid;
    gap: var(--space-4);
}

.ds-archive-hero-copy {
    max-width: 780px;
}

.ds-archive-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    color: var(--color-navy);
}

.ds-archive-hero-copy p {
    margin-top: var(--space-3);
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.ds-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
}

.ds-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 var(--space-4);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: #fff;
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-filter-chip:hover {
    border-color: rgba(15, 118, 110, 0.28);
    color: var(--color-accent);
}

/* ── Category Grid ────────────────────────────────────────── */

.ds-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: var(--space-3);
}

.ds-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-6) var(--space-3);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: background 0.2s, transform 0.2s;
}
.ds-category-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.ds-category-icon { font-size: 1.75rem; }
.ds-category-name { font-size: 0.8125rem; font-weight: 500; color: var(--color-surface); text-align: center; }

/* Store archive */
.ds-term-hero {
    background: rgba(0, 0, 0, 0.02);
}

.ds-term-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: var(--space-8);
    align-items: center;
}

.ds-term-hero-brand {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.ds-term-hero-logo {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    padding: var(--space-3);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.ds-term-hero-logo--placeholder {
    display: grid;
    place-items: center;
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.5rem;
}

.ds-term-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    color: var(--color-navy);
}

.ds-term-hero-meta {
    margin-top: var(--space-2);
    color: var(--color-success);
    font-weight: 700;
}

.ds-term-hero-summary {
    color: var(--color-muted);
    font-size: 1rem;
}

/* ── CTA Banner ───────────────────────────────────────────── */

.ds-cta { padding: clamp(48px, 6vw, 80px) 0; background: var(--color-navy); }

.ds-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.ds-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-surface);
    margin-bottom: var(--space-2);
}

.ds-cta-text { color: rgba(250, 249, 246, 0.7); max-width: 480px; }

.ds-cta-form { display: flex; gap: 0; }
.ds-cta-form input {
    padding: var(--space-4) var(--space-5);
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.9375rem;
    width: 260px;
    outline: none;
}
.ds-cta-form button {
    padding: var(--space-4) var(--space-6);
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: background 0.2s;
}
.ds-cta-form button:hover { background: #0b5f58; }

.ds-newsletter-fallback {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-4);
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
}

.ds-newsletter-fallback strong {
    color: #fff;
    font-size: 0.875rem;
}

.ds-newsletter-fallback p {
    margin: 0;
    color: rgba(250, 249, 246, 0.76);
    font-size: 0.8125rem;
    line-height: 1.6;
}

.ds-newsletter-fallback a {
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-newsletter-fallback--cta {
    max-width: 420px;
}

/* ── Footer ───────────────────────────────────────────────── */

.ds-footer { padding: clamp(48px, 6vw, 80px) 0 var(--space-6); background: var(--color-text); color: rgba(250, 249, 246, 0.7); }

.ds-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.ds-footer-logo .ds-logo-text { color: var(--color-surface); }
.ds-footer-tagline { font-size: 0.875rem; margin-top: var(--space-3); max-width: 280px; }

.ds-footer-heading {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-surface);
    margin-bottom: var(--space-4);
}

.ds-footer-sub { font-size: 0.8125rem; margin-bottom: var(--space-4); }

.ds-footer-nav-list a,
.ds-category-list a,
.ds-footer-links a {
    display: block;
    font-size: 0.8125rem;
    padding: var(--space-1) 0;
    transition: color 0.15s;
}
.ds-footer-nav-list a:hover,
.ds-category-list a:hover,
.ds-footer-links a:hover { color: var(--color-surface); }

.ds-newsletter-form { display: flex; gap: 0; }
.ds-newsletter-form input {
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(250, 249, 246, 0.15);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: rgba(250, 249, 246, 0.06);
    color: var(--color-surface);
    font-size: 0.8125rem;
    outline: none;
    flex: 1;
}
.ds-newsletter-form input::placeholder { color: rgba(250, 249, 246, 0.4); }
.ds-newsletter-form button {
    padding: var(--space-3) var(--space-4);
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: background 0.2s;
}
.ds-newsletter-form button:hover { background: #0b5f58; }

.ds-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(250, 249, 246, 0.08);
    font-size: 0.75rem;
}

.ds-footer-links { display: flex; gap: var(--space-4); }

.ds-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-4);
}

.ds-info-card {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-5);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.ds-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-navy);
}

.ds-info-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-info-card a {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

/* ── Page Content ─────────────────────────────────────────── */

.ds-page-content {
    padding: clamp(48px, 6vw, 80px) 0;
    max-width: 768px;
    margin: 0 auto;
}
.ds-page-content h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: var(--space-6); color: var(--color-navy); }
.ds-page-content h2 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; margin: var(--space-8) 0 var(--space-3); }
.ds-page-content h3 { font-size: 1.125rem; font-weight: 600; margin: var(--space-6) 0 var(--space-2); }
.ds-page-content p { margin-bottom: var(--space-4); line-height: 1.7; }
.ds-page-content ul, .ds-page-content ol { margin: var(--space-4) 0; padding-left: var(--space-6); list-style: disc; }
.ds-page-content li { margin-bottom: var(--space-2); }
.ds-page-content a { color: var(--color-accent); text-decoration: underline; }

.ds-contact-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    overflow: hidden;
}

.ds-contact-card-header {
    padding: 24px 32px 0;
}

.ds-contact-card-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    margin-top: 0;
}

.ds-contact-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
}

.ds-contact-card-body {
    padding: 20px 32px 32px;
}

.ds-contact-card-body .wpcf7-form {
    margin: 0;
}

.ds-contact-card-body .wpcf7-form p {
    margin: 0 0 16px 0;
}

.ds-contact-card-body .wpcf7-form label {
    display: grid;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.01em;
}

.ds-contact-card-body .wpcf7-form input,
.ds-contact-card-body .wpcf7-form textarea {
    width: 100%;
    padding: 10px 14px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 10px !important;
    background: #fff;
    font: inherit;
    font-size: 0.9375rem;
    color: #0f172a;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ds-contact-card-body .wpcf7-form input::placeholder,
.ds-contact-card-body .wpcf7-form textarea::placeholder {
    color: #94a3b8;
}

.ds-contact-card-body .wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.ds-contact-card-body .wpcf7-form input:focus,
.ds-contact-card-body .wpcf7-form textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.ds-contact-card-body .wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 28px;
    border: none !important;
    border-radius: 10px !important;
    background: #0f766e !important;
    color: #fff !important;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    width: auto;
    min-height: unset;
}

.ds-contact-card-body .wpcf7-form input[type="submit"]:hover {
    background: #0b5f58 !important;
}

.ds-contact-card-body .wpcf7-form input[type="submit"]:active {
    transform: scale(0.98);
}

.ds-response-time {
    margin-top: 24px;
    padding: 20px 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.ds-response-time h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    margin-top: 0;
}

.ds-response-time p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.ds-contact-direct,
.ds-contact-status {
    margin-bottom: 0;
}

.ds-contact-status {
    padding: var(--space-3);
    border-radius: var(--radius-md);
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-weight: 700;
}

.ds-contact-status[data-status="error"],
.ds-contact-status[data-status="invalid"] {
    background: rgba(185, 28, 28, 0.08);
    color: #991b1b;
}

.ds-contact-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.ds-page-hero {
    padding: clamp(48px, 6vw, 88px) 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ds-page-hero-inner {
    max-width: 820px;
}

.ds-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    color: var(--color-navy);
    margin-bottom: var(--space-4);
}

.ds-page-hero p {
    color: var(--color-muted);
    font-size: 1.0625rem;
    max-width: 680px;
}

.ds-page-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-5);
}

.ds-page-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.ds-trust-strip span,
.ds-trust-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: var(--space-1) var(--space-3);
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: var(--radius-md);
    background: rgba(15, 118, 110, 0.06);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-trust-strip a {
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ds-trust-strip a:hover {
    border-color: rgba(15, 118, 110, 0.34);
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-accent-strong);
}

.ds-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.ds-page-layout .ds-page-content {
    margin: 0;
}

.ds-page-updated {
    padding-top: var(--space-6);
    color: var(--color-muted);
    font-size: 0.8125rem;
}

.ds-page-disclosure {
    position: sticky;
    top: 88px;
    display: grid;
    gap: var(--space-4);
    margin-top: clamp(48px, 6vw, 80px);
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
}

.ds-page-side-card {
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ds-page-side-card h2 {
    margin-bottom: var(--space-3);
    color: var(--color-navy);
    font-size: 1rem;
}

.ds-page-side-card p {
    margin-bottom: var(--space-3);
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.ds-page-side-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-2);
}

.ds-page-side-card li {
    margin: 0;
}

.ds-page-side-card a {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.ds-page-disclosure h2 {
    font-size: 1rem;
    color: var(--color-navy);
    margin-bottom: var(--space-3);
}

.ds-page-disclosure p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.ds-page-disclosure a {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-coupon-detail {
    max-width: 720px;
    margin: 0 auto;
}

.ds-back-link {
    display: inline-flex;
    margin-bottom: var(--space-4);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-coupon-detail h1 {
    font-family: var(--font-display);
    color: var(--color-navy);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.ds-coupon-detail-intro {
    margin-top: var(--space-3);
    color: var(--color-muted);
    font-size: 1rem;
}

.ds-coupon-detail-card {
    display: grid;
    gap: var(--space-4);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin: var(--space-6) 0;
}

.ds-coupon-detail-cta {
    width: 100%;
    text-align: center;
    padding: var(--space-4);
}

.ds-coupon-terms,
.ds-coupon-disclosure {
    padding: var(--space-4);
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-md);
    color: var(--color-muted);
    font-size: 0.8125rem;
    line-height: 1.6;
}

.ds-coupon-terms strong,
.ds-coupon-disclosure strong {
    display: block;
    margin-bottom: var(--space-1);
    color: var(--color-navy);
}

.ds-coupon-disclosure p {
    margin: 0;
}

.ds-coupon-validation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
}

.ds-coupon-validation-card {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(15, 118, 110, 0.04);
    border: 1px solid rgba(15, 118, 110, 0.14);
}

.ds-coupon-validation-card strong {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.ds-coupon-validation-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.8125rem;
    line-height: 1.65;
}

.ds-coupon-reference-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.ds-coupon-reference-links a {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
}

.ds-article-hero {
    padding: clamp(48px, 7vw, 96px) 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ds-article-hero-inner {
    max-width: 860px;
}

.ds-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-article-hero h1 {
    font-family: var(--font-display);
    color: var(--color-navy);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08;
    max-width: 820px;
    margin-bottom: var(--space-4);
}

.ds-article-hero p {
    max-width: 720px;
    color: var(--color-muted);
    font-size: 1.125rem;
}

.ds-article-hero-media {
    margin-top: var(--space-8);
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.03);
}

.ds-article-hero-media img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.ds-article-photo-needed {
    display: grid;
    gap: var(--space-2);
    max-width: 720px;
    margin-top: var(--space-8);
    padding: var(--space-5);
    border: 1px dashed rgba(15, 118, 110, 0.28);
    border-radius: var(--radius-lg);
    background: rgba(15, 118, 110, 0.06);
}

.ds-article-photo-needed strong {
    color: var(--color-navy);
    font-size: 1rem;
}

.ds-article-photo-needed span {
    color: var(--color-muted);
    line-height: 1.6;
}

.ds-article-hero-media--fallback img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.ds-article-fallback-note {
    display: grid;
    gap: var(--space-2);
    max-width: 720px;
    margin-top: var(--space-4);
    padding: var(--space-5);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
}

.ds-article-fallback-note strong {
    color: var(--color-navy);
    font-size: 1rem;
}

.ds-article-fallback-note span {
    color: var(--color-muted);
    line-height: 1.6;
}

.ds-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(48px, 6vw, 80px);
}

.ds-article-content {
    min-width: 0;
}

.ds-article-content h2 {
    font-family: var(--font-display);
    color: var(--color-navy);
    font-size: 1.5rem;
    margin: var(--space-8) 0 var(--space-3);
}

.ds-article-content p {
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: var(--space-4);
}

.ds-article-content ul,
.ds-article-content ol {
    list-style: disc;
    padding-left: var(--space-6);
    margin: var(--space-4) 0;
}

.ds-article-content li {
    margin-bottom: var(--space-2);
    line-height: 1.65;
}

.ds-article-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.ds-author-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: var(--space-4);
    align-items: start;
    padding: var(--space-5);
    margin-bottom: var(--space-8);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
}

.ds-author-avatar,
.ds-author-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.ds-author-avatar {
    overflow: hidden;
    background: rgba(15, 118, 110, 0.08);
}

.ds-author-kicker {
    margin-bottom: var(--space-1);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-author-card h2 {
    margin: 0 0 var(--space-2);
    color: var(--color-navy);
    font-size: 1.125rem;
}

.ds-author-card p {
    margin-bottom: var(--space-3);
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.ds-author-card .ds-last-reviewed {
    margin-bottom: 0;
    color: var(--color-text);
    font-weight: 700;
}

.ds-verdict-box {
    margin: var(--space-8) 0;
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-lg);
}

.ds-verdict-box span {
    display: inline-block;
    margin-bottom: var(--space-2);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    text-transform: uppercase;
}

.ds-verdict-box h2 {
    margin: 0 0 var(--space-3);
    font-size: 1.25rem;
}

.ds-verdict-box p {
    margin-bottom: 0;
}

.ds-pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
    margin: var(--space-8) 0;
}

.ds-pros-cons > div {
    padding: var(--space-5);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
}

.ds-pros-cons h2 {
    margin-top: 0;
    font-size: 1rem;
}

.ds-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: var(--space-4) 0 var(--space-8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    background: #fff;
}

.ds-spec-table table,
.ds-comparison-table table,
.ds-table-wrap table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.ds-spec-table th,
.ds-spec-table td,
.ds-comparison-table th,
.ds-comparison-table td,
.ds-table-wrap th,
.ds-table-wrap td {
    padding: var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    vertical-align: top;
    font-size: 0.875rem;
    line-height: 1.55;
}

.ds-spec-table th,
.ds-comparison-table th,
.ds-table-wrap th {
    color: var(--color-navy);
    font-weight: 800;
}

.ds-buying-checklist {
    margin: var(--space-8) 0;
    padding: var(--space-6);
    background: rgba(15, 118, 110, 0.06);
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: var(--radius-lg);
}

.ds-buying-checklist h2 {
    margin-top: 0;
    font-size: 1.125rem;
}

.ds-price-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: var(--space-3) var(--space-6);
    background: var(--color-navy);
    color: #fff !important;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none !important;
}

.ds-price-cta:hover {
    background: #0b5f58;
}

.ds-last-checked {
    margin-top: var(--space-6);
    color: var(--color-muted);
    font-size: 0.8125rem;
}

.ds-article-sidebar {
    display: grid;
    gap: var(--space-4);
    position: sticky;
    top: 88px;
}

.ds-article-sidebar .ds-page-disclosure {
    position: static;
    margin: 0;
}

.ds-related-guides {
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
}

.ds-related-guides h2 {
    font-size: 1rem;
    color: var(--color-navy);
    margin-bottom: var(--space-3);
}

.ds-related-guides a {
    display: block;
    padding: var(--space-2) 0;
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 700;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ds-related-guides a:first-of-type {
    border-top: 0;
}

/* ── Responsive ───────────────────────────────────────────── */

.ds-filter-chip.is-active {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.22);
    color: var(--color-accent);
}

.ds-deals-hub-hero {
    padding: clamp(42px, 6vw, 72px) 0 28px;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-deals-hub-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: clamp(28px, 4vw, 56px);
    align-items: end;
}

.ds-deals-hub-hero-copy {
    max-width: 760px;
}

.ds-deals-hub-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.6vw, 4.3rem);
    line-height: 1.02;
    color: var(--color-navy);
}

.ds-deals-hub-hero-copy p {
    margin-top: var(--space-3);
    max-width: 680px;
    color: var(--color-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.ds-deals-hub-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.ds-deals-hub-stat-card {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: var(--space-5);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ds-deals-hub-stat-card strong {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
}

.ds-deals-hub-stat-card span {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.ds-deals-toolbar {
    padding: 26px 0 0;
}

.ds-deals-toolbar-form {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.ds-deals-toolbar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
}

.ds-deals-toolbar-field {
    display: grid;
    gap: var(--space-2);
}

.ds-deals-toolbar-field span {
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 800;
}

.ds-deals-toolbar-field select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--color-navy);
    font: inherit;
}

.ds-deals-toolbar-field select:focus {
    outline: 2px solid rgba(15, 118, 110, 0.2);
    border-color: rgba(15, 118, 110, 0.42);
}

.ds-deals-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.ds-deals-toolbar-quick {
    display: grid;
    gap: var(--space-3);
    padding-top: var(--space-4);
}

.ds-deals-toolbar-label {
    color: var(--color-muted);
    font-size: 0.8125rem;
    font-weight: 800;
}

.ds-deals-results-bar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
    padding: var(--space-5) var(--space-6);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
}

.ds-deals-results-bar h2 {
    color: var(--color-navy);
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.ds-deals-results-bar p {
    color: var(--color-muted);
    font-size: 0.9375rem;
}

.ds-deals-results-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-deals-results-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.06);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 800;
}

.ds-deals-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-deals-label-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
}

.ds-deals-label-card {
    min-height: 100%;
    padding: var(--space-5);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
}

.ds-deals-label-card strong {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-navy);
    font-size: 1rem;
}

.ds-deals-label-card p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

.ds-store-directory-hero {
    padding: clamp(42px, 6vw, 72px) 0 28px;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-store-directory-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: clamp(28px, 4vw, 56px);
    align-items: end;
}

.ds-store-directory-hero-copy {
    max-width: 760px;
}

.ds-store-directory-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.6vw, 4.1rem);
    line-height: 1.02;
    color: var(--color-navy);
}

.ds-store-directory-hero-copy p {
    margin-top: var(--space-3);
    max-width: 680px;
    color: var(--color-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.ds-store-directory-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.ds-store-directory-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.ds-store-directory-stat-card {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: var(--space-5);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ds-store-directory-stat-card strong {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
}

.ds-store-directory-stat-card span {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.ds-store-directory-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-store-directory-feature-card,
.ds-store-directory-card,
.ds-store-directory-toolbar,
.ds-store-directory-footnote {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.ds-store-directory-feature-card {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
}

.ds-store-directory-feature-top,
.ds-store-directory-card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: var(--space-4);
}

.ds-store-directory-feature-brand {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.ds-store-directory-feature-logo,
.ds-store-directory-card-logo {
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-store-directory-feature-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
}

.ds-store-directory-card-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.ds-store-directory-feature-logo img,
.ds-store-directory-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: #fff;
    box-sizing: border-box;
}

.ds-store-directory-feature-logo span,
.ds-store-directory-card-logo span {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 800;
}

.ds-store-directory-feature-card h3,
.ds-store-directory-card h3 {
    color: var(--color-navy);
    font-size: 1.25rem;
}

.ds-store-directory-feature-card p,
.ds-store-directory-card p {
    color: var(--color-muted);
    line-height: 1.65;
}

.ds-store-directory-feature-brand p {
    margin-top: 4px;
    font-size: 0.875rem;
}

.ds-store-directory-feature-summary {
    margin-top: calc(var(--space-2) * -1);
}

.ds-store-directory-pill,
.ds-store-directory-count {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 800;
    white-space: nowrap;
}

.ds-store-directory-pill {
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
}

.ds-store-directory-count {
    background: rgba(15, 23, 42, 0.06);
    color: var(--color-navy);
}

.ds-store-directory-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-store-directory-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.06);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-store-directory-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: auto;
}

.ds-store-directory-actions .ds-button {
    flex: 1 1 0;
}

.ds-store-directory-toolbar {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
}

.ds-store-directory-sort {
    display: flex;
    align-items: end;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.ds-store-directory-sort .ds-deals-toolbar-field {
    min-width: min(280px, 100%);
}

.ds-store-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-store-directory-card {
    display: grid;
    gap: var(--space-4);
    min-height: 100%;
    padding: var(--space-6);
}

.ds-store-directory-footnote {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-6);
}

.ds-store-directory-footnote strong {
    color: var(--color-navy);
    font-size: 1rem;
}

.ds-store-directory-footnote p {
    color: var(--color-muted);
    line-height: 1.65;
}

.ds-store-directory-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-store-directory-chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-store-page-hero {
    --ds-store-accent: var(--color-accent);
    padding: clamp(42px, 6vw, 72px) 0 28px;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--ds-store-accent) 10%, transparent), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-store-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: clamp(24px, 4vw, 54px);
    align-items: end;
}

.ds-store-page-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-5);
    align-items: start;
}

.ds-store-page-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(78px, 9vw, 108px);
    height: clamp(78px, 9vw, 108px);
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.ds-store-page-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ds-store-page-brand-mark span {
    color: var(--ds-store-accent);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0;
}

.ds-store-page-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    line-height: 1.02;
    color: var(--color-navy);
}

.ds-store-page-hero-copy p {
    margin-top: var(--space-3);
    max-width: 720px;
    color: var(--color-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.ds-store-page-actions,
.ds-store-page-route-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.ds-store-page-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.ds-store-page-stat-card,
.ds-store-page-route-card,
.ds-store-page-panel,
.ds-store-page-guide-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.ds-store-page-stat-card {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: var(--space-5);
}

.ds-store-page-stat-card strong {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
}

.ds-store-page-stat-card span {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.ds-store-page-route-grid,
.ds-store-page-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-store-page-route-card,
.ds-store-page-panel {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
}

.ds-store-page-route-card h2,
.ds-store-page-panel h2,
.ds-store-page-guide-card h3 {
    color: var(--color-navy);
}

.ds-store-page-route-card p,
.ds-store-page-panel p,
.ds-store-page-guide-card p,
.ds-store-page-note-list p {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-store-page-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-store-page-chip-row a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-navy);
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ds-store-page-chip-row a:hover {
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-accent);
}

.ds-store-page-panel-top {
    display: grid;
    gap: var(--space-2);
}

.ds-store-page-guide-list,
.ds-store-page-note-list {
    display: grid;
    gap: var(--space-4);
}

.ds-store-page-guide-card {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-5);
}

.ds-store-page-guide-card > span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    width: fit-content;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 800;
}

.ds-store-page-guide-card h3 {
    font-size: 1.1rem;
    line-height: 1.35;
}

.ds-store-page-guide-card h3 a {
    color: inherit;
}

.ds-store-page-guide-card strong,
.ds-store-page-note-list strong {
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.ds-store-page-note-list {
    align-content: start;
}

.ds-store-page-note-list > div {
    display: grid;
    gap: var(--space-2);
}

.ds-category-page-hero {
    padding: clamp(42px, 6vw, 72px) 0 28px;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-category-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: clamp(28px, 4vw, 56px);
    align-items: end;
}

.ds-category-page-hero-copy {
    max-width: 760px;
}

.ds-category-page-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    line-height: 1.02;
    color: var(--color-navy);
}

.ds-category-page-hero-copy p {
    margin-top: var(--space-3);
    max-width: 700px;
    color: var(--color-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.ds-category-page-actions,
.ds-category-page-route-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.ds-category-page-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.ds-category-page-stat-card,
.ds-category-page-route-card,
.ds-category-page-panel,
.ds-category-page-advice-card,
.ds-category-page-faq-item,
.ds-category-page-guide-card,
.ds-category-page-child-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.ds-category-page-stat-card {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: var(--space-5);
}

.ds-category-page-stat-card strong {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
}

.ds-category-page-stat-card span {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.ds-category-page-route-grid,
.ds-category-page-content-grid,
.ds-category-page-guide-grid,
.ds-category-page-children-grid {
    display: grid;
    gap: clamp(18px, 2vw, 24px);
}

.ds-category-page-route-grid,
.ds-category-page-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ds-category-page-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-category-page-children-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-category-page-route-card,
.ds-category-page-panel,
.ds-category-page-guide-card {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
}

.ds-category-page-route-card h2,
.ds-category-page-panel h2,
.ds-category-page-guide-card h3 {
    color: var(--color-navy);
}

.ds-category-page-route-card p,
.ds-category-page-panel p,
.ds-category-page-advice-card p,
.ds-category-page-faq-item p,
.ds-category-page-guide-card p,
.ds-category-page-child-card small {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-category-page-brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-category-page-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.ds-category-page-brand-chip img,
.ds-category-page-brand-chip span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
}

.ds-category-page-brand-chip img {
    object-fit: contain;
    padding: 3px;
    background: #fff;
}

.ds-category-page-brand-chip span,
.ds-category-page-child-card span {
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
}

.ds-category-page-brand-chip strong {
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-category-page-panel-top {
    display: grid;
    gap: var(--space-2);
}

.ds-category-page-advice-grid,
.ds-category-page-faq-list {
    display: grid;
    gap: var(--space-4);
}

.ds-category-page-advice-card,
.ds-category-page-faq-item {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-5);
}

.ds-category-page-advice-card strong,
.ds-category-page-faq-item strong,
.ds-category-page-guide-card strong,
.ds-category-page-child-card strong {
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.ds-category-page-guide-card > span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    width: fit-content;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 800;
}

.ds-category-page-guide-card h3 {
    font-size: 1.1rem;
    line-height: 1.35;
}

.ds-category-page-guide-card h3 a {
    color: inherit;
}

.ds-category-page-child-card {
    display: grid;
    gap: var(--space-3);
    min-height: 100%;
    padding: var(--space-5);
}

.ds-category-page-child-card span {
    width: 40px;
    height: 40px;
}

.ds-guides-hub-hero {
    padding: clamp(42px, 6vw, 72px) 0 28px;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ds-guides-hub-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: clamp(28px, 4vw, 56px);
    align-items: end;
}

.ds-guides-hub-hero-copy {
    max-width: 760px;
}

.ds-guides-hub-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.6vw, 4.1rem);
    line-height: 1.02;
    color: var(--color-navy);
}

.ds-guides-hub-hero-copy p {
    margin-top: var(--space-3);
    max-width: 700px;
    color: var(--color-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.ds-guides-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.ds-guides-hub-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.ds-guides-hub-stat-card {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: var(--space-5);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ds-guides-hub-stat-card strong {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
}

.ds-guides-hub-stat-card span {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.ds-guides-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-guides-feature-card,
.ds-guides-topic-card,
.ds-guides-bridge-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.ds-guides-feature-card {
    display: grid;
    gap: var(--space-4);
    min-height: 100%;
    overflow: hidden;
}

.ds-guides-feature-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ds-guides-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-guides-feature-card > :not(.ds-guides-feature-thumb) {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.ds-guides-feature-card > :last-child {
    padding-bottom: var(--space-6);
}

.ds-guides-feature-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    width: fit-content;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 800;
}

.ds-guides-feature-card h3,
.ds-guides-topic-card h3,
.ds-guides-bridge-card h2 {
    color: var(--color-navy);
}

.ds-guides-feature-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
}

.ds-guides-feature-card p,
.ds-guides-topic-card p,
.ds-guides-bridge-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.ds-guides-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-guides-feature-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ds-guides-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-guides-topic-card {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
}

.ds-guides-topic-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.ds-guides-topic-top h3 {
    font-size: 1.25rem;
}

.ds-guides-topic-top span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.06);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 800;
    white-space: nowrap;
}

.ds-guides-topic-links {
    display: grid;
    gap: var(--space-2);
}

.ds-guides-topic-links a {
    color: var(--color-navy);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5;
}

.ds-guides-topic-links a:hover {
    color: var(--color-accent);
}

.ds-guides-bridge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.ds-guides-bridge-card {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-6);
}

.ds-guides-bridge-card h2 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.ds-guides-brand-row,
.ds-guides-deal-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.ds-guides-brand-chip,
.ds-guides-deal-chip-row a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.ds-guides-brand-chip img,
.ds-guides-brand-chip span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
}

.ds-guides-brand-chip img {
    object-fit: contain;
    padding: 3px;
    background: #fff;
}

.ds-guides-brand-chip span {
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
}

.ds-guides-brand-chip strong,
.ds-guides-deal-chip-row a {
    color: var(--color-navy);
    font-size: 0.8125rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .ds-hero-grid { grid-template-columns: 1fr; }
    .ds-home-landing-grid { grid-template-columns: 1fr; }
    .ds-home-landing-copy { max-width: 100%; padding-bottom: 0; }
    .ds-home-landing-visual { justify-content: stretch; }
    .ds-home-landing-visual img { max-width: none; border-radius: 22px; }
    .ds-deals-hub-hero-inner { grid-template-columns: 1fr; }
    .ds-deals-hub-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ds-store-directory-hero-inner { grid-template-columns: 1fr; }
    .ds-store-directory-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ds-store-directory-feature-grid { grid-template-columns: 1fr; }
    .ds-store-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-store-page-hero-inner { grid-template-columns: 1fr; }
    .ds-store-page-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ds-store-page-route-grid { grid-template-columns: 1fr; }
    .ds-store-page-content-grid { grid-template-columns: 1fr; }
    .ds-category-page-hero-inner { grid-template-columns: 1fr; }
    .ds-category-page-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ds-category-page-route-grid { grid-template-columns: 1fr; }
    .ds-category-page-content-grid { grid-template-columns: 1fr; }
    .ds-category-page-guide-grid { grid-template-columns: 1fr; }
    .ds-category-page-children-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-guides-hub-hero-inner { grid-template-columns: 1fr; }
    .ds-guides-hub-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ds-guides-feature-grid { grid-template-columns: 1fr; }
    .ds-guides-topic-grid { grid-template-columns: 1fr; }
    .ds-guides-bridge-grid { grid-template-columns: 1fr; }
    .ds-deals-toolbar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-deals-feature-grid { grid-template-columns: 1fr; }
    .ds-deals-label-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-home-deals-grid { grid-template-columns: 1fr; }
    .ds-home-entry-grid { grid-template-columns: 1fr; }
    .ds-home-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-home-store-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ds-home-category-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .ds-home-category-pill { min-height: 130px; padding: 22px 12px 16px; }
    .ds-home-guide-grid { grid-template-columns: 1fr; }
    .ds-home-hero-grid { grid-template-columns: 1fr; }
    .ds-home-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-home-cta-panel { flex-direction: column; align-items: flex-start; }
    .ds-home-cta-actions { justify-items: start; }
    .ds-home-summary-grid { grid-template-columns: 1fr; }
    .ds-hero-visual { min-height: 200px; }
    .ds-footer-grid { grid-template-columns: 1fr 1fr; }
    .ds-coupon-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .ds-page-layout { grid-template-columns: 1fr; }
    .ds-page-disclosure { position: static; margin-top: 0; margin-bottom: var(--space-8); }
    .ds-coupon-validation-grid { grid-template-columns: 1fr; }
    .ds-article-layout { grid-template-columns: 1fr; }
    .ds-article-sidebar { position: static; }
    .ds-term-hero-inner { grid-template-columns: 1fr; }
    .ds-filter-row { gap: var(--space-2); }
}

@media (max-width: 768px) {
    .ds-home-landing-hero { padding-top: 28px; }
    .ds-home-landing-title { font-size: clamp(2.3rem, 11vw, 3.4rem); }
    .ds-home-landing-lead { font-size: 1.05rem; }
    .ds-home-landing-points { gap: var(--space-3); }
    .ds-home-landing-points span { font-size: 0.875rem; }
    .ds-deals-hub-hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
    .ds-deals-hub-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-store-directory-hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
    .ds-store-directory-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-store-directory-hero-actions { flex-direction: column; }
    .ds-store-directory-toolbar { padding: var(--space-5); }
    .ds-store-directory-sort { align-items: stretch; }
    .ds-store-directory-sort .ds-button { width: 100%; }
    .ds-store-directory-grid { grid-template-columns: 1fr; }
    .ds-store-directory-actions { flex-direction: column; }
    .ds-store-directory-actions .ds-button { width: 100%; }
    .ds-store-page-hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
    .ds-store-page-brand { grid-template-columns: 1fr; }
    .ds-store-page-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-store-page-actions,
    .ds-store-page-route-actions { flex-direction: column; }
    .ds-store-page-route-card,
    .ds-store-page-panel,
    .ds-store-page-guide-card { padding: var(--space-5); }
    .ds-category-page-hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
    .ds-category-page-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-category-page-actions,
    .ds-category-page-route-actions { flex-direction: column; }
    .ds-category-page-route-card,
    .ds-category-page-panel,
    .ds-category-page-guide-card { padding: var(--space-5); }
    .ds-category-page-children-grid { grid-template-columns: 1fr; }
    .ds-guides-hub-hero-copy h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
    .ds-guides-hub-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-guides-hub-actions { flex-direction: column; }
    .ds-guides-feature-card,
    .ds-guides-topic-card,
    .ds-guides-bridge-card { padding: var(--space-5); }
    .ds-deals-toolbar-form { padding: var(--space-5); }
    .ds-deals-toolbar-grid { grid-template-columns: 1fr; }
    .ds-deals-toolbar-actions { flex-direction: column; }
    .ds-deals-toolbar-actions .ds-button { width: 100%; }
    .ds-deals-results-bar { padding: var(--space-5); }
    .ds-deals-label-grid { grid-template-columns: 1fr; }
    .ds-home-store-grid { grid-template-columns: 1fr; }
    .ds-home-store-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ds-home-category-row { grid-template-columns: 1fr; }
    .ds-home-category-pill { min-height: 88px; }
    .ds-home-guide-card { grid-template-columns: 1fr; }
    .ds-home-guide-thumb { min-height: 180px; }
    .ds-home-deal-footer { align-items: stretch; flex-direction: column; }
    .ds-home-deal-cta { width: 100%; }
    .ds-home-store-head,
    .ds-home-store-meta,
    .ds-home-entry-meta { align-items: flex-start; flex-direction: column; }
    .ds-page-hero-points { gap: var(--space-2); }
    .ds-page-hero-points span,
    .ds-trust-strip a,
    .ds-trust-strip span { width: 100%; justify-content: center; }
    .ds-header-inner {
        display: flex;
        justify-content: space-between;
    }
    .ds-nav { display: none; }
    .ds-nav.is-active {
        display: block;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: var(--space-3) var(--space-4) var(--space-4);
    }
    .ds-nav.is-active .ds-nav-list {
        display: grid;
        gap: var(--space-1);
    }
    .ds-nav.is-active .ds-nav-list a {
        padding: var(--space-3);
    }
    .ds-header-link-button {
        display: none;
    }
    .ds-nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: var(--space-3);
    }
    .ds-nav-dropdown-panel {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin-top: 0;
        padding: var(--space-3) 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .ds-header.is-stores-open .ds-nav-dropdown-panel {
        display: block;
    }
    .ds-nav-dropdown-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ds-mobile-toggle { display: grid; }
    .ds-mobile-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .ds-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
    .ds-mobile-toggle.is-active span:nth-child(3) { transform: translateY(2px) rotate(-45deg); }
    .ds-footer-grid { grid-template-columns: 1fr; }
    .ds-footer-bottom { flex-direction: column; align-items: flex-start; }
    .ds-cta-inner { flex-direction: column; align-items: stretch; }
    .ds-cta-form { flex-direction: column; }
    .ds-cta-form input,
    .ds-cta-form button { width: 100%; border-radius: var(--radius-md); }
    .ds-newsletter-fallback--cta { max-width: none; }
    .ds-coupon-grid { grid-template-columns: 1fr; }
    .ds-home-hero-actions { flex-direction: column; }
    .ds-button { width: 100%; }
    .ds-home-entry-meta { align-items: flex-start; flex-direction: column; }
    .ds-home-category-grid { grid-template-columns: 1fr; }
    .ds-hero-search { flex-direction: column; }
    .ds-hero-search input,
    .ds-hero-search button { width: 100%; }
    .ds-hero-search button { border-radius: var(--radius-md); }
    .ds-page-hero { padding: 40px 0; }
    .ds-page-content { padding: 40px 0; }
    .ds-coupon-detail-card { padding: var(--space-5); }
    .ds-article-hero { padding: 40px 0; }
    .ds-article-layout { padding-top: 40px; padding-bottom: 40px; }
    .ds-pros-cons { grid-template-columns: 1fr; }
    .ds-spec-table th,
    .ds-spec-table td,
    .ds-comparison-table th,
    .ds-comparison-table td,
    .ds-table-wrap th,
    .ds-table-wrap td { padding: var(--space-3); }
}

/* ── Utilities ────────────────────────────────────────────── */

.ds-copied-toast {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-success);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: var(--space-3) var(--space-6);
    border-radius: 100px;
    z-index: 9999;
    animation: ds-fade-in-up 0.3s ease;
}

@keyframes ds-fade-in-up {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Wordpress alignments */
.alignleft { float: left; margin-right: var(--space-6); }
.alignright { float: right; margin-left: var(--space-6); }
.aligncenter { margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8125rem; color: var(--color-muted); text-align: center; margin-top: var(--space-2); }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

.ds-coupon-card .ds-coupon-card-offer {
    width: 100%;
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

.ds-newsletter-capture {
    position: relative;
    flex-wrap: wrap;
}

.ds-newsletter-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ds-newsletter-status {
    flex-basis: 100%;
    min-height: 1.2em;
    margin-top: var(--space-2);
    color: rgba(250, 249, 246, 0.72);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.ds-newsletter-form .ds-newsletter-status {
    color: rgba(250, 249, 246, 0.62);
}

.ds-newsletter-form[data-state="error"] .ds-newsletter-status {
    color: #ffc4a8;
}

.ds-newsletter-form[data-state="success"] .ds-newsletter-status {
    color: #8ce8cb;
}

.ds-newsletter-form button[aria-busy="true"] {
    cursor: wait;
    opacity: 0.72;
}

.ds-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.ds-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 var(--space-3);
    border: 1px solid rgba(250, 249, 246, 0.14);
    border-radius: var(--radius-sm);
    color: rgba(250, 249, 246, 0.82);
    font-size: 0.75rem;
    font-weight: 700;
}

.ds-footer-social a:hover {
    color: var(--color-surface);
    border-color: rgba(250, 249, 246, 0.3);
}

.ds-logo-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-3);
    margin: var(--space-5) 0 var(--space-6);
}

.ds-logo-wall span {
    display: grid;
    min-height: 72px;
    place-items: center;
    padding: var(--space-3);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    color: var(--color-navy);
    font-weight: 800;
}

/* ============================================================
   Scroll Animation Base States
   Elements with [data-animate] start hidden and are revealed
   by GSAP. If JS fails, the fallback in scroll-animations.js
   makes everything visible.
   ============================================================ */

[data-animate] {
    will-change: transform, opacity;
}

/* Word-split wrapper for text reveal */
.ds-word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.ds-word-inner {
    display: inline-block;
}

/* ============================================================
   Typography Enhancements
   ============================================================ */

.ds-home-landing-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--color-navy);
}

.ds-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-8);
}

.ds-logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.ds-section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ds-home-landing-lead {
    font-family: var(--font-body);
    color: #475467;
    font-size: 1.1875rem;
    line-height: 1.55;
    font-weight: 400;
}

/* ============================================================
   Card Hover Micro-interactions
   ============================================================ */

.ds-home-deal-card,
.ds-home-store-card,
.ds-home-guide-card,
.ds-home-entry-card {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ds-home-deal-card:hover,
.ds-home-store-card:hover,
.ds-home-guide-card:hover,
.ds-home-entry-card:hover {
    transform: translateY(-4px);
}

/* ============================================================
   Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1 !important; transform: none !important; }
    .ds-home-deal-card, .ds-home-store-card, .ds-home-guide-card, .ds-home-entry-card {
        transition: none;
    }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Homepage refresh 1.3
   Scoped overrides keep the rest of the production theme stable.
   ============================================================ */

.ds-logo-text,
.ds-section-title,
.ds-home-landing-title {
    letter-spacing: 0;
}

.ds-home-landing-hero {
    overflow: hidden;
    padding: 0;
    background: #f7faf9;
    border-bottom: 1px solid #e7ecea;
}

.ds-home-landing-hero .ds-container {
    max-width: 1440px;
    padding-right: 0;
    padding-left: 32px;
}

.ds-home-landing-grid {
    grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
    gap: 0;
    min-height: 610px;
}

.ds-home-landing-copy {
    position: relative;
    z-index: 3;
    align-content: center;
    gap: 18px;
    max-width: 590px;
    padding: 64px 44px 64px 0;
}

.ds-home-landing-copy .ds-section-eyebrow {
    max-width: 520px;
    margin-bottom: 0;
    color: #0b716d;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ds-home-landing-title {
    max-width: 570px;
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.02;
}

.ds-home-landing-title-accent {
    display: block;
    color: #087f79;
}

.ds-home-landing-title-line {
    display: block;
}

.ds-home-landing-lead {
    max-width: 500px;
    color: #3e4a47;
    font-size: 1.14rem;
    line-height: 1.58;
}

.ds-home-landing-actions {
    gap: 12px;
    padding-top: 4px;
}

.ds-home-landing-actions .ds-button {
    min-height: 48px;
    border-radius: 7px;
    padding: 0 22px;
}

.ds-home-landing-points {
    gap: 12px 24px;
    padding-top: 2px;
}

.ds-home-landing-points span {
    color: #43514e;
    font-size: 0.88rem;
    font-weight: 600;
}

.ds-home-landing-points span::before {
    width: 7px;
    height: 7px;
    border: 0;
    background: #0f9388;
}

.ds-home-landing-visual {
    position: relative;
    align-self: stretch;
    min-height: 610px;
    overflow: hidden;
}

.ds-home-landing-visual::before {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 120px;
    content: "";
    background: linear-gradient(90deg, #f7faf9 0%, rgba(247, 250, 249, 0) 100%);
    pointer-events: none;
}

.ds-home-landing-visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center;
}

.ds-home-assurance {
    background: #fff;
    border-bottom: 1px solid #e7ecea;
}

.ds-home-assurance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ds-home-assurance-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-height: 104px;
    padding: 20px 24px;
    border-right: 1px solid #edf0ef;
}

.ds-home-assurance-item:last-child {
    border-right: 0;
}

.ds-home-assurance-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #087f79;
    background: #e9f7f5;
    border-radius: 7px;
}

.ds-home-assurance-icon svg,
.ds-home-category-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ds-home-assurance-item > span:last-child {
    display: grid;
    gap: 2px;
}

.ds-home-assurance-item strong {
    color: #14211f;
    font-size: 0.92rem;
    line-height: 1.25;
}

.ds-home-assurance-item small {
    color: #66736f;
    font-size: 0.78rem;
    line-height: 1.35;
}

.ds-home-band {
    padding-top: 50px;
}

.ds-home-band--tight {
    padding-top: 38px;
}

.ds-home-band--categories {
    padding: 40px 0 4px;
}

.ds-home-band-header {
    margin-bottom: 20px;
}

.ds-home-band-header .ds-section-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.ds-section-link {
    letter-spacing: 0;
    text-transform: none;
}

.ds-home-category-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.ds-home-category-pill {
    display: grid;
    justify-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 180px;
    padding: 28px 14px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(20, 33, 31, 0.035);
    text-align: center;
}

.ds-home-category-icon {
    display: grid;
    width: 72px;
    height: 60px;
    place-items: center;
    color: #0d5552;
    background: transparent;
    border-radius: 10px;
}

.ds-home-category-copy {
    min-width: 0;
    gap: 3px;
    text-align: center;
}

.ds-home-category-copy strong {
    display: block;
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1.3;
}

.ds-home-category-copy span {
    display: block;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.3;
}

.ds-home-deals-grid {
    gap: 18px;
}

.ds-home-deal-card,
.ds-home-store-card,
.ds-home-guide-card,
.ds-home-summary-card {
    border-radius: 8px;
}

.ds-home-store-card {
    gap: 14px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(20, 33, 31, 0.04);
}

.ds-home-store-logo {
    flex-basis: 66px;
    min-height: 66px;
    border-radius: 7px;
    background: #f7f9f8;
}

.ds-home-store-copy p {
    letter-spacing: 0;
    text-transform: none;
}

.ds-home-store-note {
    font-size: 0.9rem;
    line-height: 1.55;
}

.ds-home-deal-card {
    grid-template-rows: auto 1fr;
    box-shadow: 0 10px 28px rgba(20, 33, 31, 0.045);
}

.ds-home-deal-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 54px 20px 18px;
    background: #f5f7f6;
}

.ds-home-deal-storemark {
    width: 52px;
    min-height: 52px;
    border-radius: 7px;
}

.ds-home-deal-product-image {
    height: 100%;
    max-height: 190px;
}

.ds-home-deal-body {
    grid-template-rows: auto auto auto 1fr auto;
    gap: 11px;
    padding: 20px;
}

.ds-home-deal-body h3 {
    display: -webkit-box;
    min-height: 2.24em;
    overflow: hidden;
    font-size: 1.62rem;
    line-height: 1.12;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ds-home-deal-product {
    display: -webkit-box;
    min-height: 2.9em;
    overflow: hidden;
    font-size: 0.94rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ds-home-guide-copy h3,
.ds-coupon-card-offer {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ds-home-guide-copy h3 {
    min-height: 3.75em;
    -webkit-line-clamp: 2;
}

.ds-home-deal-card--empty .ds-home-deal-body,
.ds-home-guide-card--empty .ds-home-guide-copy {
    align-content: center;
}

.ds-home-deal-card--empty .ds-button,
.ds-home-guide-card--empty .ds-button {
    width: fit-content;
}

.ds-badge-expired {
    color: #8a341f;
    background: #fff0e8;
}

.ds-coupon-card--expired {
    border-color: rgba(138, 52, 31, 0.2);
}

.ds-coupon-card--expired .ds-coupon-card-code-wrap {
    opacity: 0.58;
}

.ds-coupon-card--expired .ds-coupon-card-cta {
    color: #fff;
    background: #42534f;
}

.ds-home-deal-footer {
    align-self: end;
}

.ds-home-deal-meta {
    display: grid;
    gap: 1px;
}

.ds-home-deal-proof-time {
    color: #087f79;
    font-size: 0.78rem;
    font-weight: 700;
}

.ds-home-deal-meta small {
    color: #7a8582;
    font-size: 0.68rem;
    line-height: 1.3;
}

.ds-home-deal-cta {
    border-radius: 7px;
}

.ds-home-guide-card {
    box-shadow: 0 10px 26px rgba(20, 33, 31, 0.04);
}

.ds-home-guide-thumb {
    border-radius: 6px;
}

.ds-home-landing-hero a:focus-visible,
.ds-home-category-pill:focus-visible,
.ds-home-deal-card a:focus-visible,
.ds-home-store-card:focus-visible,
.ds-home-guide-card a:focus-visible {
    outline: 3px solid #e59a2f;
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .ds-home-landing-title {
        font-size: 3.7rem;
    }

    .ds-home-category-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
    .ds-home-category-pill { min-height: 160px; padding: 24px 12px 18px; }
}

@media (max-width: 1024px) {
    .ds-home-landing-hero .ds-container {
        padding: 0;
    }

    .ds-home-landing-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ds-home-landing-copy {
        max-width: 760px;
        padding: 58px 24px 38px;
    }

    .ds-home-landing-title {
        font-size: 3.35rem;
    }

    .ds-home-landing-visual {
        min-height: 430px;
    }

    .ds-home-landing-visual::before {
        top: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 72px;
        background: linear-gradient(180deg, #f7faf9 0%, rgba(247, 250, 249, 0) 100%);
    }

    .ds-home-assurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ds-home-assurance-item:nth-child(2) {
        border-right: 0;
    }

    .ds-home-assurance-item:nth-child(-n + 2) {
        border-bottom: 1px solid #edf0ef;
    }

    .ds-home-deals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ds-home-landing-hero {
        padding-top: 0;
    }

    .ds-home-landing-copy {
        gap: 15px;
        padding: 42px 20px 30px;
    }

    .ds-home-landing-title {
        font-size: 2.65rem;
        line-height: 1.05;
    }

    .ds-home-landing-lead {
        font-size: 1rem;
    }

    .ds-home-landing-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ds-home-landing-actions .ds-button {
        width: 100%;
        min-width: 0;
        padding: 0 12px;
    }

    .ds-home-landing-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ds-home-landing-visual {
        min-height: 300px;
    }

    .ds-home-assurance-item {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 94px;
        padding: 16px 14px;
    }

    .ds-home-assurance-icon {
        width: 36px;
        height: 36px;
    }

    .ds-home-assurance-item small {
        font-size: 0.72rem;
    }

    .ds-home-band,
    .ds-home-band--tight {
        padding-top: 34px;
    }

    .ds-home-band--categories {
        padding-top: 32px;
    }

    .ds-home-category-row {
        display: flex;
        gap: 10px;
        padding: 2px 20px 12px 2px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .ds-home-category-pill {
        flex: 0 0 min(60vw, 220px);
        min-height: 150px;
        scroll-snap-align: start;
    }

    .ds-home-deals-grid {
        grid-template-columns: 1fr;
    }

    .ds-home-deal-footer {
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .ds-home-landing-title {
        font-size: 2.35rem;
    }

    .ds-home-assurance-grid {
        grid-template-columns: 1fr;
    }

    .ds-home-assurance-item,
    .ds-home-assurance-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #edf0ef;
    }

    .ds-home-assurance-item:last-child {
        border-bottom: 0;
    }
}

/* ============================================================
   Homepage reference match 1.3.2
   ============================================================ */

.ds-home-landing-hero .ds-container {
    max-width: none;
    padding: 0;
}

.ds-home-landing-grid {
    position: relative;
    display: block;
    min-height: 610px;
}

.ds-home-landing-copy {
    position: relative;
    z-index: 3;
    width: min(1360px, calc(100% - 56px));
    max-width: none;
    min-height: 610px;
    margin: 0 auto;
    padding: 54px 49% 46px 0;
}

.ds-home-landing-title {
    max-width: 620px;
    overflow: visible;
    font-size: 3.15rem;
    line-height: 1.12;
}

.ds-home-landing-title-line,
.ds-home-landing-title-accent {
    display: block;
    padding-bottom: 0.04em;
    white-space: nowrap;
}

.ds-home-landing-lead {
    max-width: 390px;
    font-size: 1.05rem;
}

.ds-home-landing-visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    min-height: 0;
}

.ds-home-landing-visual::before {
    display: none;
}

.ds-home-landing-visual img {
    object-position: center center;
}

.ds-home-buyer-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding-top: 2px;
}

.ds-home-landing-actions {
    flex-wrap: nowrap;
}

.ds-home-buyer-proof img {
    width: 112px;
    height: 48px;
    object-fit: cover;
}

.ds-home-buyer-proof > span {
    display: grid;
    gap: 2px;
}

.ds-home-buyer-proof strong {
    color: #182421;
    font-size: 0.78rem;
    line-height: 1.3;
}

.ds-home-buyer-proof small {
    color: #68736f;
    font-size: 0.72rem;
    line-height: 1.3;
}

.ds-home-band {
    padding-top: 38px;
}

.ds-home-band--tight {
    padding-top: 34px;
}

.ds-home-band--categories {
    padding-top: 32px;
}

.ds-home-category-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.ds-home-category-pill {
    gap: 10px;
    min-height: 140px;
    padding: 18px 10px 14px;
}

.ds-home-category-icon {
    width: 60px;
    height: 50px;
    background: transparent;
}

.ds-home-category-copy strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.ds-home-category-copy > span {
    display: none;
}

.ds-home-deals-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.ds-home-deal-card {
    min-width: 0;
}

.ds-home-deal-media {
    aspect-ratio: 1 / 1;
    padding: 38px 10px 8px;
    background: #fbfcfc;
}

.ds-home-deal-badge {
    top: 10px;
    left: 10px;
    padding: 4px 7px;
    font-size: 0.62rem;
}

.ds-home-deal-storemark {
    top: 8px;
    right: 8px;
    width: 80px;
    height: 42px;
    min-height: 42px;
    padding: 5px 7px;
    border-radius: 6px;
}

.ds-home-deal-storemark img {
    width: 100%;
    height: 100%;
    max-width: 72px;
    max-height: 32px;
}

.ds-home-deal-storemark strong {
    font-size: 1.05rem;
}

.ds-home-deal-product-image {
    width: 100%;
    height: 100%;
    max-height: 112px;
    object-fit: cover;
    object-position: center;
}

.ds-home-deal-body {
    grid-template-rows: auto auto auto 1fr;
    gap: 6px;
    padding: 10px;
}

.ds-home-deal-topline {
    gap: 6px;
}

.ds-home-deal-store,
.ds-home-deal-kicker {
    overflow: hidden;
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ds-home-deal-body h3 {
    min-height: 2.4em;
    font-size: 0.9rem;
    line-height: 1.2;
    -webkit-line-clamp: 2;
}

.ds-home-deal-offer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
}

.ds-home-deal-offer strong {
    color: #087f79;
    font-size: 0.84rem;
}

.ds-home-deal-offer span {
    color: #6d7774;
    font-size: 0.62rem;
}

.ds-home-deal-footer {
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #edf0ef;
}

.ds-home-deal-meta {
    min-width: 0;
}

.ds-home-deal-proof,
.ds-home-deal-proof-time {
    overflow: hidden;
    font-size: 0.64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ds-home-deal-meta small {
    display: none;
}

.ds-home-deal-cta {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.66rem;
}

.ds-home-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ds-home-guide-card {
    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
    background: #15201e;
}

.ds-home-guide-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(8, 15, 14, 0.02) 25%, rgba(8, 15, 14, 0.9) 100%);
    pointer-events: none;
}

.ds-home-guide-thumb {
    position: absolute;
    inset: 0;
    min-height: 0;
}

.ds-home-guide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-home-guide-copy {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    gap: 7px;
    padding: 22px;
    color: #fff;
}

.ds-home-guide-kicker {
    color: #bcece6;
}

.ds-home-guide-copy h3,
.ds-home-guide-copy h3 a {
    min-height: 0;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.3;
}

.ds-home-guide-copy p {
    display: none;
}

.ds-home-guide-meta {
    color: rgba(255, 255, 255, 0.75);
}

.ds-footer {
    margin-top: 40px;
    padding: 18px 0 14px;
    background: #fff;
    color: #5d6966;
}

.ds-footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 18px 28px;
    margin-bottom: 16px;
}

.ds-footer-newsletter {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: minmax(180px, 1fr) minmax(280px, 1.2fr);
    gap: 8px 28px;
    align-items: center;
    padding: 22px 26px;
    color: rgba(255, 255, 255, 0.78);
    background: #062b3a;
    border-radius: 8px;
}

.ds-footer-newsletter .ds-footer-heading,
.ds-footer-newsletter .ds-footer-sub {
    margin: 0;
    color: #fff;
}

.ds-footer-newsletter .ds-newsletter-form,
.ds-footer-newsletter .ds-newsletter-fallback {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.ds-footer-brand {
    grid-column: 1;
}

.ds-footer-nav {
    grid-column: 2;
}

.ds-footer-categories {
    grid-column: 3;
}

.ds-footer-logo .ds-logo-text,
.ds-footer .ds-footer-heading,
.ds-footer-nav-list a:hover,
.ds-category-list a:hover,
.ds-footer-links a:hover {
    color: #15211f;
}

.ds-footer .ds-footer-newsletter .ds-footer-heading {
    color: #fff;
}

.ds-footer-bottom {
    padding-top: 14px;
    border-top-color: #e8eceb;
}

@media (max-width: 1180px) {
    .ds-home-landing-copy {
        padding-right: 47%;
    }

    .ds-home-landing-title {
        font-size: 2.95rem;
    }

    .ds-home-category-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .ds-home-deals-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .ds-home-landing-grid {
        display: grid;
        min-height: 0;
    }

    .ds-home-landing-copy {
        width: 100%;
        min-height: 0;
        padding: 48px 24px 34px;
    }

    .ds-home-landing-title {
        max-width: 680px;
    }

    .ds-home-landing-visual {
        position: relative;
        min-height: 410px;
    }

    .ds-home-landing-visual img {
        object-position: center;
    }

    .ds-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ds-footer-newsletter {
        grid-column: 1 / -1;
    }

    .ds-footer-brand,
    .ds-footer-nav,
    .ds-footer-categories {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .ds-home-landing-copy {
        padding: 40px 20px 30px;
    }

    .ds-home-landing-title {
        font-size: 2.65rem;
    }

    .ds-home-landing-title-line,
    .ds-home-landing-title-accent {
        white-space: normal;
    }

    .ds-home-landing-visual {
        min-height: 300px;
    }

    .ds-home-buyer-proof img {
        width: 96px;
        height: 42px;
    }

    .ds-home-category-row {
        display: flex;
    }

    .ds-home-category-pill {
        flex-basis: 150px;
        min-height: 130px;
    }

    .ds-home-deals-grid,
    .ds-home-guide-grid {
        grid-template-columns: 1fr;
    }

    .ds-home-deal-media {
        aspect-ratio: 1 / 1;
    }

    .ds-home-deal-product-image {
        max-height: 190px;
    }

    .ds-home-guide-card {
        min-height: 230px;
    }

    .ds-footer-grid,
    .ds-footer-newsletter {
        grid-template-columns: 1fr;
    }

    .ds-footer-newsletter .ds-newsletter-form,
    .ds-footer-newsletter .ds-newsletter-fallback {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .ds-home-deals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ds-home-deal-media {
        aspect-ratio: 1 / 1;
    }

    .ds-home-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Keep uploaded and bundled logos visually unboxed after legacy card rules. */
.ds-home-deal-storemark,
.ds-home-store-logo,
.ds-coupon-card-logo,
.ds-term-hero-logo,
.ds-store-directory-feature-logo,
.ds-store-page-brand-mark {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.ds-home-deal-storemark {
    padding: 3px 5px;
}

.ds-home-deal-storemark img,
.ds-home-store-logo img,
.ds-coupon-card-logo img,
.ds-term-hero-logo img,
.ds-store-directory-feature-logo img,
.ds-store-page-brand-mark img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .ds-context-hero-media {
        margin-top: 22px;
    }
}

/* Real brand marks stay transparent across every card, chip, and directory. */
.ds-home-deal-storemark {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-home-store-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-coupon-card-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-term-hero-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-store-directory-card-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-store-directory-feature-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-store-page-brand-mark {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-category-page-brand-chip {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-guides-brand-chip {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ds-home-deal-storemark img,
.ds-home-store-logo img,
.ds-coupon-card-logo,
.ds-term-hero-logo,
.ds-store-directory-card-logo img,
.ds-store-directory-feature-logo img,
.ds-store-page-brand-mark,
.ds-category-page-brand-chip img,
.ds-guides-brand-chip img,
.ds-nav-store-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.ds-store-directory-card-logo img,
.ds-store-directory-feature-logo img,
.ds-store-page-brand-mark {
    min-width: 72px;
    max-width: 132px;
}

.ds-category-page-brand-chip img,
.ds-guides-brand-chip img,
.ds-nav-store-item img {
    min-width: 28px;
    max-width: 88px;
}

/* Coupon cards: give brand marks and product imagery separate, stable space. */
.ds-home-deal-media {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
    aspect-ratio: 1 / 1;
    padding: 10px 12px 12px;
}

.ds-home-deal-media-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.ds-home-deal-badge,
.ds-home-deal-storemark {
    position: static;
    min-height: 0;
    box-shadow: none;
}

.ds-home-deal-badge {
    display: block;
    overflow: hidden;
    padding: 4px 7px;
    font-size: 0.62rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ds-home-deal-storemark {
    display: grid;
    width: 64px;
    height: 28px;
    padding: 0;
    place-items: center;
}

.ds-home-deal-storemark img {
    width: auto;
    height: auto;
    max-width: 64px;
    max-height: 24px;
}

.ds-home-deal-product-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.ds-coupon-card-top {
    align-items: center;
}

.ds-coupon-card-store-link {
    min-height: 30px;
}

.ds-coupon-card-logo,
.ds-coupon-card-logo-placeholder {
    width: auto;
    min-width: 32px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ds-coupon-card-logo {
    max-width: 88px;
    object-fit: contain;
}

/* Offer-first deal cards: product image, retailer mark, and savings have distinct jobs. */
.ds-home-deal-saving,
.ds-coupon-card-saving {
    color: #087f79;
    font-weight: 800;
}

.ds-home-deal-offer {
    justify-content: flex-start;
}

.ds-home-deal-offer .ds-home-deal-saving {
    font-size: 0.875rem;
    line-height: 1.4;
}

.ds-home-deal-proof-time {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.ds-coupon-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ds-coupon-card-media {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 8px;
    aspect-ratio: 4 / 3;
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #fbfcfc;
}

.ds-coupon-card-media-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.ds-coupon-card-media-header .ds-badge-offer-type {
    justify-self: start;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Feedback ··· button in card media header top-right */
.ds-coupon-card-feedback {
    position: relative;
    justify-self: end;
}

.ds-coupon-card-feedback .ds-feedback-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted, #94a3b8);
    transition: color 0.15s, background 0.15s;
    font-size: 1rem;
    line-height: 1;
}

.ds-coupon-card-feedback .ds-feedback-menu-btn:hover {
    color: var(--color-text, #0f172a);
    background: rgba(0, 0, 0, 0.05);
}

.ds-coupon-card-feedback .ds-feedback-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 50;
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md, 10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6px;
    margin-top: 4px;
}

.ds-coupon-card-feedback .ds-feedback-dropdown[hidden] {
    display: none;
}

.ds-coupon-card-media .ds-coupon-card-store-link {
    display: grid;
    width: 72px;
    min-height: 28px;
    place-items: center;
}

.ds-coupon-card-media .ds-coupon-card-logo,
.ds-coupon-card-media .ds-coupon-card-logo-placeholder {
    width: auto;
    min-width: 0;
    max-width: 72px;
    height: 28px;
    max-height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.ds-coupon-card-product-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.ds-coupon-card-inner {
    flex: 1;
    justify-content: space-between;
}

.ds-coupon-card-body {
    display: grid;
    gap: 7px;
}

.ds-coupon-card-category,
.ds-coupon-card-proof {
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
}

.ds-coupon-card-category {
    color: var(--color-accent);
}

.ds-coupon-card-saving {
    display: block;
    font-size: 1rem;
    line-height: 1.45;
}

.ds-coupon-card-proof {
    font-weight: 600;
}

@media (max-width: 540px) {
    .ds-coupon-card-media {
        aspect-ratio: 16 / 10;
    }
}

/* Compact offer-first interior pages keep shoppers close to live inventory. */
.ds-deals-hub-hero--compact,
.ds-store-directory-hero--compact,
.ds-store-page-hero--compact,
.ds-category-page-hero--compact {
    padding: clamp(32px, 4vw, 52px) 0 20px;
    background: #fff;
}

.ds-deals-hub-hero--compact .ds-deals-hub-hero-inner,
.ds-store-directory-hero--compact .ds-store-directory-hero-inner,
.ds-store-page-hero--compact .ds-store-page-hero-inner,
.ds-category-page-hero--compact .ds-category-page-hero-inner {
    display: block;
}

.ds-deals-hub-hero--compact .ds-deals-hub-hero-copy,
.ds-store-directory-hero--compact .ds-store-directory-hero-copy,
.ds-store-page-hero--compact .ds-store-page-hero-copy,
.ds-category-page-hero--compact .ds-category-page-hero-copy {
    max-width: 760px;
}

.ds-deals-hub-hero--compact h1,
.ds-store-directory-hero--compact h1,
.ds-category-page-hero--compact h1 {
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.08;
}

.ds-store-page-hero--compact .ds-store-page-brand {
    align-items: center;
}

.ds-store-page-hero--compact .ds-store-page-brand h1 {
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.08;
}

.ds-deals-hub-hero--compact p,
.ds-store-directory-hero--compact p,
.ds-store-page-hero--compact p,
.ds-category-page-hero--compact p {
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.55;
}

.ds-category-page-brand-strip {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) 0;
}

.ds-category-page-brand-strip > strong {
    flex: 0 0 auto;
    color: var(--color-navy);
}

.ds-category-page-brand-strip .ds-category-page-brand-row {
    flex: 1;
}

.ds-deals-matching-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-4);
}

.ds-deals-matching-grid .ds-coupon-card-media {
    aspect-ratio: 16 / 10;
    padding: 8px 10px 10px;
}

.ds-deals-matching-grid .ds-coupon-card-inner {
    gap: var(--space-3);
    padding: var(--space-4);
}

.ds-deals-matching-grid .ds-coupon-card-offer {
    font-size: 1.15rem;
    line-height: 1.25;
}

.ds-deals-matching-grid .ds-coupon-card-saving {
    font-size: 0.9375rem;
}

.ds-home-deal-media-header {
    gap: 14px;
}

.ds-home-deal-storemark {
    width: 92px;
    height: 34px;
}

.ds-home-deal-storemark img {
    max-width: 92px;
    max-height: 30px;
}

@media (max-width: 768px) {
    .ds-category-page-brand-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .ds-deals-matching-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 540px) {
    .ds-home-deal-storemark {
        width: 78px;
        height: 32px;
    }

    .ds-home-deal-storemark img {
        max-width: 78px;
        max-height: 28px;
    }

    .ds-deals-matching-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .ds-home-deal-media {
        aspect-ratio: 1 / 1;
    }

    .ds-home-deal-storemark {
        width: 72px;
    }

    .ds-home-deal-storemark img {
        max-width: 72px;
    }
}

/* Homepage deal imagery: keep the product crop square independently of the media header. */
.ds-home-deal-media--staged {
    aspect-ratio: auto;
    grid-template-rows: auto auto;
}

.ds-coupon-card-product-link,
.ds-home-deal-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ds-coupon-card-product-link:focus-visible,
.ds-home-deal-product-link:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: var(--radius-md);
}

.ds-home-deal-product-stage {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 270px;
    aspect-ratio: 1 / 1;
    justify-self: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.ds-home-deal-product-stage .ds-home-deal-product-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
}

/* Shared coupon cards: isolate product imagery from the media header's intrinsic sizing. */
.ds-coupon-card-media,
.ds-deals-matching-grid .ds-coupon-card-media {
    aspect-ratio: auto;
    grid-template-rows: auto auto;
}

.ds-coupon-card-product-stage {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    justify-self: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.ds-coupon-card-product-stage .ds-coupon-card-product-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
}

/* Directory wordmarks need a wider, bounded canvas so wide logos remain intact. */
.ds-store-directory-feature-logo {
    width: 144px;
    height: 72px;
}

.ds-store-directory-card-logo {
    width: 132px;
    height: 64px;
}

.ds-store-directory-feature-logo img,
.ds-store-directory-card-logo img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding: 6px 8px;
    box-sizing: border-box;
    object-fit: contain;
}

/* === Search result page styles === */
.ds-search-section {
    margin-bottom: var(--space-8, 2rem);
}

.ds-search-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-4, 1rem);
    color: var(--color-text, #0f172a);
}

.ds-search-guide-card {
    display: grid;
    gap: var(--space-2, 0.5rem);
    padding: var(--space-4, 1rem);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
}

.ds-search-guide-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.ds-search-guide-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.ds-search-guide-body h3 a {
    color: inherit;
    text-decoration: none;
}

.ds-search-guide-body h3 a:hover {
    text-decoration: underline;
}

.ds-search-guide-body p {
    font-size: 0.875rem;
    color: var(--color-muted, #64748b);
    margin: 0;
}

.ds-search-page-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--space-3, 0.75rem);
}

.ds-search-page-list li a {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.ds-search-page-list li a:hover {
    text-decoration: underline;
}

.ds-search-page-list li p {
    font-size: 0.875rem;
    color: var(--color-muted, #64748b);
    margin: 0.25rem 0 0;
}

/* === Card detail link and price styles === */
.ds-coupon-card-cta-row {
    display: flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    margin-top: var(--space-3, 0.75rem);
}

.ds-coupon-card-details {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent, #0f766e);
    text-decoration: none;
    white-space: nowrap;
}

.ds-coupon-card-details:hover {
    text-decoration: underline;
}

.ds-coupon-card-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-2, 0.5rem);
    margin-top: var(--space-1, 0.25rem);
}

.ds-coupon-card-price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text, #0f172a);
}

.ds-coupon-card-price-previous {
    font-size: 0.8125rem;
    color: var(--color-muted, #64748b);
    text-decoration: line-through;
}

/* === Coupon detail page: price and reader feedback === */
.ds-coupon-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-3, 0.75rem);
    margin: var(--space-3, 0.75rem) 0;
    padding: var(--space-3, 0.75rem);
    background: #f0fdfa;
    border-radius: 8px;
}

.ds-coupon-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text, #0f172a);
}

.ds-coupon-price-previous {
    font-size: 1rem;
    color: var(--color-muted, #64748b);
    text-decoration: line-through;
}

.ds-coupon-price-saving {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent, #0f766e);
}

/* === Coupon reader feedback: ··· dropdown menu === */
.ds-coupon-reader-feedback {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: var(--space-4, 1rem) 0;
}

.ds-feedback-label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text, #0f172a);
}

.ds-feedback-menu-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    padding: 0;
    line-height: 1;
}

.ds-feedback-menu-btn:hover {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.2);
}

.ds-feedback-menu-btn[aria-expanded="true"] {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.25);
}

.ds-feedback-menu-dots {
    font-size: 18px;
    color: #64748b;
    letter-spacing: 2px;
    line-height: 1;
}

.ds-feedback-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 6px;
    min-width: 180px;
    z-index: 100;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.ds-feedback-dropdown[hidden] {
    display: none;
}

.ds-feedback-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: none;
    background: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
    transition: background 0.15s;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}

.ds-feedback-item:hover {
    background: #f8fafc;
}

.ds-feedback-item:active {
    background: #f1f5f9;
}

.ds-feedback-item:disabled,
.ds-feedback-item.is-sent {
    opacity: 0.5;
    cursor: default;
}

.ds-feedback-item:disabled:hover,
.ds-feedback-item.is-sent:hover {
    background: none;
}

.ds-feedback-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.ds-feedback-label {
    flex: 1;
    font-weight: 500;
}

.ds-feedback-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 8px;
}
.ds-author-meta {
    display: flex;
    gap: var(--space-3, 0.75rem);
    align-items: center;
    font-size: 0.8125rem;
    color: var(--color-muted, #64748b);
    margin-top: 4px;
}

.ds-author-methodology {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    background: #f0fdfa;
    color: var(--color-accent, #0f766e);
}

.ds-author-review-date {
    font-size: 0.8125rem;
}

/* === Newsletter privacy notice === */
.ds-newsletter-privacy {
    font-size: 0.75rem;
    color: var(--color-muted, #64748b);
    margin-top: var(--space-2, 0.5rem);
}

.ds-newsletter-privacy a {
    color: inherit;
    text-decoration: underline;
}

/* === Store-to-guide and chair research paths === */
.ds-store-guide-prompt {
    padding: var(--space-6, 1.5rem) 0;
    background: #edf8f6;
    border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}

.ds-store-guide-prompt-inner,
.ds-chair-content-cluster {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6, 1.5rem);
}

.ds-store-guide-prompt h2,
.ds-chair-content-cluster h2 {
    margin: 0.3rem 0 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.ds-store-guide-prompt p,
.ds-chair-content-cluster p {
    max-width: 48rem;
    margin: 0;
    color: var(--color-muted, #64748b);
}

.ds-chair-content-cluster {
    margin: var(--space-6, 1.5rem) 0;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 1rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 72%);
}

.ds-chair-content-cluster-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.ds-chair-content-cluster-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px;
    color: var(--color-text, #0f172a);
    background: #fff;
    font-weight: 700;
    text-decoration: none;
}

.ds-chair-content-cluster-links a:hover,
.ds-chair-content-cluster-links a:focus-visible {
    border-color: var(--color-accent, #0f766e);
    color: var(--color-accent, #0f766e);
}

.ds-chair-content-cluster-links .ds-chair-content-cluster-deals {
    border-color: var(--color-accent, #0f766e);
    color: #fff;
    background: var(--color-accent, #0f766e);
}

.ds-chair-content-cluster-links .ds-chair-content-cluster-deals:hover,
.ds-chair-content-cluster-links .ds-chair-content-cluster-deals:focus-visible {
    color: #fff;
    background: #0b5f58;
}

/* === Hostinger Reach footer capture === */
.ds-reach-subscription-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.ds-reach-subscription-form .ds-newsletter-topics,
.ds-reach-subscription-form .ds-newsletter-status {
    grid-column: 1 / -1;
}

.ds-newsletter-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.ds-newsletter-topics legend {
    width: 100%;
    margin-bottom: 0.15rem;
    font-size: 0.75rem;
    color: rgba(250, 249, 246, 0.72);
}

.ds-newsletter-topics label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(250, 249, 246, 0.9);
    cursor: pointer;
}

.ds-newsletter-topics input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: #8ee6da;
}

@media (max-width: 768px) {
    .ds-store-guide-prompt-inner,
    .ds-chair-content-cluster {
        align-items: flex-start;
        flex-direction: column;
    }

    .ds-reach-subscription-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .ds-reach-subscription-form button {
        width: 100%;
    }
}
