@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
    color-scheme: light;
    --bg: #f3f1ed;
    --ink: #202124;
    --muted: #6b625a;
    --line: #d7c8ba;
    --surface: #fffaf2;
    --surface-strong: #fff;
    --surface-soft: #f8f2e9;
    --accent: #006d77;
    --accent-dark: #004f56;
    --accent-soft: #e4f0ee;
    --promo: #e84855;
    --promo-dark: #a41421;
    --promo-soft: #fff0f1;
    --promo-line: #f0a0a7;
    --shadow: rgba(32, 33, 36, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(20px, calc((100vw - 1120px) / 2));
    background: rgba(255, 250, 242, 0.96);
    border-bottom: 1px solid var(--line);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 173px;
    height: auto;
}

.brand-logo--admin {
    width: 156px;
}

.brand-logo--hero {
    width: 208px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-nav a {
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.site-nav a[aria-current="page"] {
    background: var(--accent-soft);
}

.language-switch {
    margin-left: auto;
}

.language-switch select {
    width: 190px;
    min-height: 40px;
    padding: 8px 34px 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--accent-dark);
    background:
        linear-gradient(45deg, transparent 50%, var(--accent-dark) 50%) calc(100% - 18px) 17px / 6px 6px no-repeat,
        linear-gradient(135deg, var(--accent-dark) 50%, transparent 50%) calc(100% - 12px) 17px / 6px 6px no-repeat,
        var(--surface-strong);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    appearance: none;
    cursor: pointer;
}

.language-switch select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.site-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.hero {
    max-width: 720px;
}

.hero--search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 36px;
    align-items: end;
    max-width: none;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1;
    letter-spacing: 0;
}

.hero p:not(.eyebrow) {
    margin: 24px 0 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-actions .button {
    margin-top: 0;
}

.hero-search {
    display: grid;
    gap: 10px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.store-search-field {
    position: relative;
}

.hero-search label,
.store-search label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-search input,
.store-search input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
}

.hero-search .button,
.store-search .button {
    width: 100%;
    margin-top: 0;
    cursor: pointer;
}

.store-search-results {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 45;
    max-height: 320px;
    overflow: auto;
    padding: 6px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px var(--shadow);
}

.store-search-results[hidden] {
    display: none;
}

.store-search-results__list {
    display: grid;
    gap: 4px;
}

.store-search-result {
    display: grid;
    gap: 3px;
    padding: 10px;
    border-radius: 6px;
    color: var(--ink);
    text-decoration: none;
}

.store-search-result:hover,
.store-search-result.is-active {
    background: var(--accent-soft);
}

.store-search-result strong {
    font-size: 14px;
}

.store-search-result span,
.store-search-results__empty {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.store-search-results__empty {
    margin: 0;
    padding: 10px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
}

.trust-strip div {
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.trust-strip strong {
    display: block;
    font-size: 24px;
}

.trust-strip span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.section-heading h2 {
    margin: 0;
    font-size: 28px;
}

.section-heading a {
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 32px;
    padding: 0 18px;
    color: var(--surface-strong);
    background: var(--accent);
    border: 1px solid var(--accent-dark);
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.button:hover {
    background: var(--accent-dark);
}

.coupon-list {
    display: grid;
    gap: 16px;
    margin-top: 48px;
}

.coupon-list--secondary {
    margin-top: 36px;
}

.coupon-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.coupon-card--promotion .coupon-value {
    background: var(--promo-soft);
    border-color: var(--promo-line);
}

.coupon-card--promotion .coupon-value strong {
    color: var(--promo-dark);
}

.coupon-value {
    display: grid;
    place-items: center;
    min-height: 86px;
    padding: 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
}

.coupon-value strong {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.05;
}

.coupon-value span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.coupon-card h2 {
    margin: 4px 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.coupon-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.coupon-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
}

.coupon-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(0, 109, 119, 0.18);
    border-radius: 999px;
    background: rgba(224, 242, 239, 0.74);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
}

.coupon-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.coupon-terms {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.coupon-proof {
    margin-top: 10px !important;
    color: var(--accent-dark) !important;
    font-size: 13px;
    font-weight: 800;
}

.coupon-terms summary {
    width: fit-content;
    color: var(--accent-dark);
    font-weight: 800;
    cursor: pointer;
}

.coupon-terms p {
    margin-top: 8px;
    max-width: 780px;
    font-size: 14px;
}

.store-name {
    display: inline-block;
    color: var(--accent) !important;
    font-weight: 700;
    text-decoration: none;
}

a.store-name:hover {
    text-decoration: underline;
}

.expires {
    margin-top: 10px !important;
    font-size: 14px;
}

.coupon-action {
    display: grid;
    gap: 10px;
    justify-items: stretch;
    min-width: 160px;
}

.coupon-action--radar {
    min-width: 196px;
}

.coupon-button-wrap {
    position: relative;
    width: 196px;
    height: 50px;
}

.coupon-button-code {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 14px 0 76px;
    border: 1px dashed var(--accent);
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 900;
    letter-spacing: 1px;
    overflow: hidden;
}

.coupon-reveal-button {
    position: absolute;
    inset: 0 42px 0 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    color: var(--surface-strong);
    background: var(--accent);
    border: 1px solid var(--accent-dark);
    border-radius: 6px 0 0 6px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 8px 0 0 rgba(0, 109, 119, 0.18);
}

.coupon-reveal-button:hover {
    background: var(--accent-dark);
}

.coupon-button-cutout {
    position: absolute;
    top: 0;
    right: -14px;
    width: 28px;
    height: 50px;
    background:
        linear-gradient(135deg, transparent 0 50%, var(--accent-dark) 51%) top left / 14px 50% no-repeat,
        linear-gradient(45deg, transparent 0 50%, var(--accent-dark) 51%) bottom left / 14px 50% no-repeat;
}

.code {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px dashed var(--accent);
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.masked-code {
    letter-spacing: 1px;
}

.empty-state {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
}

.modal-open {
    overflow: hidden;
}

.coupon-modal[hidden] {
    display: none;
}

.coupon-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(32, 33, 36, 0.58);
}

.coupon-modal__panel {
    position: relative;
    width: min(520px, 100%);
    padding: 28px;
    background: var(--surface);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(32, 33, 36, 0.26);
}

.coupon-modal__panel h2 {
    margin: 4px 0 18px;
    line-height: 1.25;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.modal-code {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 16px;
    border: 1px dashed var(--accent);
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 26px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.modal-copy {
    width: 100%;
}

.modal-help {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.coupon-feedback {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}

.coupon-feedback p {
    margin: 0 0 10px;
    color: var(--ink);
    font-weight: 800;
}

.coupon-feedback div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.coupon-feedback button {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent-dark);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.coupon-feedback button:hover,
.coupon-feedback button:focus-visible {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.coupon-feedback button:disabled {
    cursor: default;
    opacity: 0.58;
}

.coupon-feedback span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.coupon-feedback__reasons {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.coupon-feedback__reasons[hidden] {
    display: none;
}

.coupon-feedback__reasons p {
    flex: 0 0 100%;
    margin: 0 0 2px;
    color: var(--muted);
    font-size: 13px;
}

.coupon-feedback__reasons button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 13px;
}

.text-button {
    margin-top: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent-dark);
    font-weight: 700;
    cursor: pointer;
}

.coming-soon-page {
    min-height: 100vh;
    background: var(--bg);
}

.coming-soon-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.coming-soon-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: 48px;
    align-items: center;
    width: min(1120px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 64px 0;
}

.coming-soon-hero h1 {
    max-width: 780px;
}

.coming-soon-hero p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
}

.preview-login {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px var(--shadow);
}

.preview-login form {
    display: grid;
    gap: 14px;
}

.preview-login label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.preview-login .remember-login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

.preview-login input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
}

.preview-login .remember-login input {
    width: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--accent);
}

.preview-login .button {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
}

.login-error {
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid var(--promo-line);
    border-radius: 6px;
    background: var(--promo-soft);
    color: var(--promo-dark);
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.store-hero {
    max-width: 820px;
}

.store-hero--visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 28px;
    align-items: center;
    max-width: none;
}

.store-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1;
}

.store-hero > p {
    margin: 20px 0 0;
    max-width: 680px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
}

.store-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 180px));
    gap: 12px;
    margin: 28px 0 0;
}

.store-stats div {
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.store-stats dt {
    color: var(--muted);
    font-size: 13px;
}

.store-stats dd {
    margin: 6px 0 0;
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
}

.store-content {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.store-content ol {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.7;
}

.content-band,
.steps-section,
.summary-section,
.faq-section,
.seo-content {
    margin-top: 48px;
}

.store-pill-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.store-pill-grid a {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
}

.store-pill-grid span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.steps-grid article {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.steps-grid span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    font-weight: 900;
}

.steps-grid h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.steps-grid p,
.seo-content p,
.faq-section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.seo-content {
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.seo-content h2 {
    margin-bottom: 12px;
}

.inline-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inline-link-list a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.page-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 28px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.page-toc strong {
    margin-right: 4px;
}

.page-toc a {
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.legal-shell {
    max-width: 1040px;
}

.legal-hero {
    max-width: 780px;
}

.legal-updated {
    margin-top: 16px !important;
    font-size: 14px !important;
    font-weight: 800;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    margin-top: 48px;
}

.legal-nav {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.legal-nav strong {
    margin-bottom: 4px;
}

.legal-nav a {
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.legal-nav a[aria-current="page"] {
    background: var(--accent-soft);
}

.legal-content {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.legal-content section {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.7;
}

.legal-content p {
    margin: 0 0 12px;
}

.legal-content ul {
    margin: 0;
    padding-left: 22px;
}

.legal-content li + li {
    margin-top: 8px;
}

.legal-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 4px;
}

.legal-facts div {
    min-width: 0;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.legal-facts dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.legal-facts dd {
    margin: 6px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 800;
}

.legal-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.legal-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 14px;
}

.legal-table th,
.legal-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    color: var(--ink);
    font-weight: 900;
    background: rgba(0, 105, 112, 0.06);
}

.legal-table td {
    color: var(--muted);
    line-height: 1.55;
}

.legal-table td:first-child {
    color: var(--ink);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.legal-table tbody tr:last-child td {
    border-bottom: 0;
}

.offer-summary-table {
    overflow: hidden;
    border-radius: 8px;
}

.faq-section {
    display: grid;
    gap: 10px;
}

.faq-section details {
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-section summary {
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

.faq-section p {
    margin-top: 10px;
}

.stores-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
    align-items: end;
}

.stores-hero h1 {
    font-size: clamp(38px, 6vw, 64px);
}

.stores-hero p:not(.eyebrow) {
    margin: 20px 0 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
}

.store-search {
    display: grid;
    gap: 10px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.store-search a {
    justify-self: center;
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.stores-summary {
    display: inline-flex;
    gap: 8px;
    align-items: baseline;
    margin-top: 36px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stores-summary strong {
    font-size: 22px;
}

.stores-summary span {
    color: var(--muted);
    font-weight: 800;
}

.directory-tools {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
    align-items: stretch;
    margin-top: 18px;
}

.directory-filters,
.directory-az {
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.directory-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.directory-filters label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.directory-filters select {
    width: 100%;
    min-height: 42px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
}

.directory-filters .button {
    min-height: 42px;
}

.directory-filters > a {
    grid-column: 1 / -1;
    justify-self: start;
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.directory-az {
    display: grid;
    gap: 10px;
}

.directory-az strong {
    color: var(--ink);
}

.directory-az div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.directory-az a,
.directory-az span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
}

.directory-az a {
    border: 1px solid rgba(0, 109, 119, 0.22);
    color: var(--accent-dark);
    text-decoration: none;
}

.directory-az a:hover,
.directory-az a.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--surface-strong);
}

.directory-az span {
    color: rgba(86, 67, 55, 0.44);
    background: rgba(86, 67, 55, 0.06);
}

.directory-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.directory-highlights article {
    min-width: 0;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.directory-highlights h2 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.25;
}

.directory-link-list {
    display: grid;
    gap: 8px;
}

.directory-link-list a {
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(214, 199, 184, 0.58);
    color: var(--ink);
    text-decoration: none;
}

.directory-link-list a:last-child {
    border-bottom: 0;
}

.directory-link-list a:hover span {
    color: var(--accent-dark);
}

.directory-link-list span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 900;
}

.directory-link-list small {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.store-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 132px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
}

.store-card:hover {
    border-color: rgba(0, 109, 119, 0.45);
    box-shadow: 0 16px 36px var(--shadow);
}

.store-card-logo {
    position: relative;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background: var(--accent-soft);
    border: 1px solid #c6d9d6;
    border-radius: 8px;
    color: var(--accent-dark);
    font-size: 22px;
    font-weight: 900;
}

.store-card-logo img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: contain;
    background: var(--surface-strong);
    border-radius: 6px;
}

.store-card-logo--large {
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
    font-size: 32px;
}

.store-card-logo--large img {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
}

.store-card-body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.store-card-title {
    color: var(--ink);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.15;
}

.store-card-domain,
.store-card-category,
.store-card-stats {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.store-card-category {
    justify-self: start;
    padding: 3px 8px;
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    font-weight: 900;
}

.store-card-stats strong {
    color: var(--ink);
}

.store-card-arrow {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
}

.store-visual-card {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
}

.store-visual-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.store-visual-card > span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.4fr);
    gap: 44px;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 42px;
    border-top: 1px solid var(--line);
}

.site-footer__brand {
    display: grid;
    align-content: start;
    gap: 12px;
}

.site-footer__logo {
    display: block;
    width: 148px;
    height: auto;
}

.site-footer p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 34px;
}

.site-footer__group {
    display: grid;
    align-content: start;
    gap: 7px;
}

.site-footer__group > span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-footer a,
.footer-cookie-button {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: 28px;
    padding: 3px 0;
    color: var(--accent-dark);
    line-height: 1.25;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
}

.site-footer a:hover,
.footer-cookie-button:hover {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.site-footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 200, 186, 0.72);
}

.site-footer__notices {
    display: grid;
    gap: 6px;
}

.site-footer__bottom span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.affiliate-note {
    max-width: 620px;
    font-size: 13px;
}

.site-footer .affiliate-note {
    max-width: 620px;
}

.footer-cookie-button {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.cookie-banner::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(243, 241, 237, 0.76);
    backdrop-filter: blur(8px);
}

.cookie-banner__panel {
    display: grid;
    gap: 16px;
    width: min(560px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(32, 33, 36, 0.24);
}

.cookie-banner__intro,
.cookie-banner__settings {
    display: grid;
    gap: 16px;
}

.cookie-banner__intro[hidden],
.cookie-banner__settings[hidden] {
    display: none;
}

.cookie-banner__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: var(--promo-soft);
    border: 1px solid var(--promo-line);
    border-radius: 999px;
    font-size: 26px;
    line-height: 1;
}

.cookie-banner__copy h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.15;
}

.cookie-banner__copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.cookie-banner__legal {
    margin: 2px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.cookie-banner__legal a {
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.cookie-banner__options {
    display: grid;
    gap: 10px;
}

.cookie-option {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.cookie-option input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--accent);
}

.cookie-option strong,
.cookie-option small {
    display: block;
}

.cookie-option strong {
    margin-bottom: 3px;
}

.cookie-option small {
    color: var(--muted);
    line-height: 1.35;
}

.cookie-option--locked {
    opacity: 0.86;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.cookie-banner__actions .button,
.cookie-banner__actions .text-button {
    min-height: 40px;
    margin-top: 0;
}

.button--light {
    background: var(--surface);
    color: var(--accent-dark);
}

.button--light:hover {
    background: var(--accent-soft);
}

.category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-badge,
.keyword-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.keyword-chip {
    gap: 6px;
    color: var(--ink);
}

.keyword-chip strong {
    color: var(--accent-dark);
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.hub-card {
    display: grid;
    gap: 10px;
    min-height: 184px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
}

.hub-card:hover {
    border-color: rgba(0, 109, 119, 0.45);
    box-shadow: 0 16px 36px var(--shadow);
}

.hub-card strong {
    font-size: 22px;
    line-height: 1.15;
}

.hub-card span:not(.hub-card__meta),
.hub-card em {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.hub-card em {
    align-self: end;
    font-style: normal;
    font-weight: 900;
}

.hub-card__meta {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--line);
}

th,
td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 14px;
}

th {
    background: var(--surface-soft);
    color: var(--ink);
}

.admin-page {
    background: var(--bg);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px max(20px, calc((100vw - 1180px) / 2));
    background: rgba(255, 250, 242, 0.96);
    border-bottom: 1px solid var(--line);
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
}

.admin-topbar p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-nav a,
.admin-secondary-link,
.admin-panel__header a,
.admin-offer-links a,
.admin-compact-list a,
.admin-pagination a {
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.admin-nav a {
    padding: 8px 10px;
    border-radius: 6px;
}

.admin-nav a[aria-current="page"] {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 64px;
}

.admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-heading--compact {
    margin-bottom: 18px;
}

.admin-heading h1 {
    font-size: 42px;
    line-height: 1.05;
}

.admin-heading p:not(.eyebrow) {
    margin: 12px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.45;
}

.admin-heading__button {
    flex: 0 0 auto;
    margin-top: 0;
}

.admin-flash {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #a9d9ce;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.admin-flash--error {
    border-color: var(--promo-line);
    background: var(--promo-soft);
    color: var(--promo-dark);
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.admin-kpis article,
.admin-panel,
.admin-offer-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-kpis article {
    padding: 16px;
}

.admin-kpis span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.admin-kpis strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    line-height: 1;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.admin-grid--wide {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.admin-panel {
    overflow: hidden;
}

.admin-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.admin-panel__header h2 {
    margin: 0;
    font-size: 18px;
}

.admin-table {
    border: 0;
    border-radius: 0;
}

.admin-table th,
.admin-table td {
    vertical-align: top;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.status-badge--published {
    border-color: #86efac;
    background: #f0fdf4;
    color: #166534;
}

.status-badge--needs_manual,
.status-badge--imported {
    border-color: #facc15;
    background: #fefce8;
    color: #854d0e;
}

.status-badge--hidden,
.status-badge--expired {
    border-color: #fecaca;
    background: #fff1f2;
    color: #9f1239;
}

.status-badge--ai_reviewed {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.admin-muted {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-compact-list {
    display: grid;
}

.admin-compact-list article {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.admin-compact-list article:last-child {
    border-bottom: 0;
}

.admin-compact-list div {
    display: grid;
    gap: 4px;
}

.admin-compact-list span {
    color: var(--muted);
    line-height: 1.4;
}

.admin-compact-list small {
    color: var(--promo-dark);
    font-size: 12px;
    font-weight: 900;
}

.admin-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-toolbar p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.admin-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.admin-filter-form label,
.admin-offer-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.admin-filter-form input,
.admin-filter-form select,
.admin-offer-form input,
.admin-offer-form select,
.admin-offer-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
}

.admin-filter-form input[type="search"] {
    width: min(320px, 72vw);
}

.admin-filter-form .button {
    margin-top: 0;
}

.admin-secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
}

.admin-offer-list {
    display: grid;
    gap: 14px;
}

.admin-offer-card {
    overflow: hidden;
}

.admin-offer-card > header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.admin-offer-card h2 {
    margin: 8px 0 0;
    font-size: 22px;
}

.admin-offer-meta,
.admin-offer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.admin-offer-meta > span:not(.status-badge) {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-offer-links {
    justify-content: flex-end;
}

.admin-offer-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 18px;
    padding: 16px;
}

.admin-source-copy h3 {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.admin-source-copy strong {
    display: block;
    line-height: 1.35;
}

.admin-source-copy p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-offer-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
}

.admin-offer-facts div {
    padding: 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.admin-offer-facts dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.admin-offer-facts dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    font-weight: 800;
}

.admin-offer-form {
    display: grid;
    gap: 10px;
    align-content: start;
}

.admin-offer-form textarea {
    min-height: 96px;
    padding-top: 10px;
    resize: vertical;
}

.admin-offer-form .button {
    justify-self: start;
    margin-top: 2px;
    cursor: pointer;
}

.admin-feedback-list {
    display: grid;
}

.admin-feedback-list > .admin-muted {
    padding: 16px;
}

.admin-feedback-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 18px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.admin-feedback-card:last-child {
    border-bottom: 0;
}

.admin-feedback-card h3 {
    margin: 8px 0 6px;
    font-size: 22px;
    line-height: 1.15;
}

.admin-feedback-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-feedback-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.admin-feedback-actions a {
    color: var(--accent-dark);
    font-weight: 900;
    text-decoration: none;
}

.admin-feedback-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.admin-feedback-metrics div {
    padding: 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.admin-feedback-metrics div.is-risk {
    border-color: var(--promo-line);
    background: var(--promo-soft);
}

.admin-feedback-metrics dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-feedback-metrics dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.admin-feedback-metrics .is-risk dd {
    color: var(--promo-dark);
}

.admin-market-list {
    display: grid;
    gap: 14px;
}

.admin-market-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-market-card > header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.admin-market-card h2 {
    margin: 8px 0 0;
    font-size: 24px;
}

.admin-market-card h2 span {
    color: var(--muted);
    font-size: 15px;
}

.market-readiness {
    display: grid;
    min-width: 92px;
    padding: 10px;
    background: var(--accent-soft);
    border: 1px solid #c6d9d6;
    border-radius: 8px;
    text-align: center;
}

.market-readiness strong {
    color: var(--accent-dark);
    font-size: 30px;
    line-height: 1;
}

.market-readiness span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-market-body {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
    gap: 18px;
    padding: 16px;
}

.admin-market-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-market-metrics div {
    padding: 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.admin-market-metrics span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-market-metrics strong {
    display: block;
    margin-top: 5px;
    font-size: 24px;
    line-height: 1;
}

.market-recommendation {
    margin: 14px 0 0;
    padding: 12px;
    background: var(--accent-soft);
    border: 1px solid #c6d9d6;
    border-radius: 8px;
    color: var(--accent-dark);
    font-weight: 900;
    line-height: 1.4;
}

.admin-market-snapshot {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 14px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-market-snapshot dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.admin-market-snapshot div {
    padding: 10px;
    background: var(--surface);
    border: 1px solid rgba(215, 200, 186, 0.72);
    border-radius: 6px;
}

.admin-market-snapshot dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-market-snapshot dd {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
}

.admin-market-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.admin-market-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
}

.admin-market-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-market-form input,
.admin-market-form select,
.admin-market-form textarea {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
}

.admin-market-form textarea {
    min-height: 82px;
    padding-top: 9px;
    resize: vertical;
}

.admin-market-form__notes,
.admin-market-form .button {
    grid-column: 1 / -1;
}

.admin-market-form .button {
    justify-self: start;
    margin-top: 0;
    cursor: pointer;
}

.admin-account-form {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.admin-account-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.admin-account-form input {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
}

.admin-account-form .button {
    justify-self: start;
    margin-top: 4px;
    cursor: pointer;
}

.admin-info-panel {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.admin-info-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.admin-pagination span {
    color: var(--muted);
    font-weight: 800;
}

@media (max-width: 760px) {
    .ops-grid {
        grid-template-columns: 1fr;
    }

    .coupon-card {
        grid-template-columns: 1fr;
    }

    .coupon-value {
        min-height: 68px;
        place-items: start;
        text-align: left;
    }

    .coupon-action {
        min-width: 0;
    }

    .coupon-button-wrap {
        width: 100%;
    }

    .store-stats {
        grid-template-columns: 1fr;
    }

    .store-hero--visual,
    .stores-hero,
    .directory-tools,
    .directory-highlights,
    .hero--search,
    .trust-strip,
    .legal-layout,
    .legal-facts,
    .store-pill-grid,
    .steps-grid,
    .hub-grid,
    .stores-grid {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px 14px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-brand {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .section-heading,
    .site-footer {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        gap: 4px;
    }

    .site-nav a {
        padding: 7px 8px;
        font-size: 14px;
    }

    .site-footer__nav {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer p {
        max-width: 100%;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .language-switch {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        margin-left: 0;
    }

    .language-switch select {
        width: 44px;
        min-height: 26px;
        padding: 4px 16px 4px 6px;
        border-color: transparent;
        border-radius: 5px;
        background:
            linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 10px) 11px / 4px 4px no-repeat,
            linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 6px) 11px / 4px 4px no-repeat,
            rgba(255, 255, 255, 0.32);
        color: var(--muted);
        font-size: 11px;
        font-weight: 700;
    }

    .store-card {
        grid-template-columns: 60px minmax(0, 1fr);
        min-height: 112px;
    }

    .store-card-logo {
        width: 60px;
        height: 60px;
    }

    .store-card-arrow {
        grid-column: 2;
    }

    .directory-filters {
        grid-template-columns: 1fr;
    }

    .directory-filters > a {
        grid-column: auto;
    }

    .directory-link-list a {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .coming-soon-shell {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
        padding: 48px 0;
    }

    .admin-topbar,
    .admin-heading,
    .admin-toolbar,
    .admin-offer-card > header {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-shell {
        padding-top: 24px;
    }

    .admin-kpis,
    .admin-grid,
    .admin-grid--wide,
    .admin-offer-body,
    .admin-feedback-card,
    .admin-feedback-metrics,
    .admin-market-body,
    .admin-market-form,
    .admin-market-snapshot dl,
    .admin-market-metrics,
    .admin-offer-facts {
        grid-template-columns: 1fr;
    }

    .admin-heading h1 {
        font-size: 34px;
    }

    .admin-filter-form,
    .admin-filter-form input[type="search"] {
        width: 100%;
    }
}
