:root {
    --orange: #f18338;
    --orange-2: #f38e49;
    --green: #2f984f;
    --lime: #8fbf29;
    --ink: #001322;
    --ink-soft: #08242f;
    --muted: #6d777c;
    --line: #e5e8e8;
    --panel: #f8f9f9;
    --pale: #fef9f5;
    --tab: #f2f4f4;
    --danger: #d94a42;
    --warn: #f18338;
    --max: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.62;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--max), calc(100vw - 64px));
    margin: 0 auto;
    background: #fff;
}

.brand,
.footer-brand {
    color: #f3a16d;
    font-size: 17px;
    font-weight: 500;
}

.brand strong,
.footer-brand strong {
    color: var(--orange);
    font-weight: 800;
}

.main-nav {
    display: flex;
    gap: 34px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.nav-logout-form {
    margin: 0;
}

.nav-logout-form button {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    cursor: pointer;
}

.flash {
    width: min(760px, calc(100vw - 40px));
    margin: 22px auto 0;
    padding: 14px 18px;
    border-radius: 3px;
    background: #eaf6ee;
    color: var(--green);
    text-align: center;
}

.feedback-page {
    padding: 72px 0 96px;
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.feedback-hero {
    width: min(var(--max), calc(100vw - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: end;
    margin: 0 auto 34px;
}

.feedback-hero h1 {
    max-width: 760px;
    margin: 10px 0 14px;
    color: var(--ink);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

.feedback-hero p {
    max-width: 720px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.7;
}

.feedback-context-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid #f0d8c6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(37, 24, 12, 0.06);
}

.feedback-context-card strong {
    color: var(--ink);
    font-size: 16px;
}

.feedback-context-card span {
    color: var(--orange);
    font-weight: 900;
}

.feedback-panel {
    width: min(900px, calc(100vw - 48px));
    display: grid;
    gap: 24px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid #eadfd7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.feedback-panel-copy h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.2;
}

.feedback-panel-copy p {
    margin: 0;
    color: #667085;
    line-height: 1.65;
}

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

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

.feedback-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.feedback-privacy-note {
    margin: 0;
    color: #7a8492;
    font-size: 13px;
    line-height: 1.55;
}

.feedback-submit {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    padding: 15px 26px;
    background: var(--orange);
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(241, 131, 56, 0.22);
}

.feedback-submit:hover {
    filter: brightness(0.98);
}

.not-found-page {
    width: min(var(--max), calc(100vw - 48px));
    margin: 0 auto;
    padding: 84px 0 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 56px;
    align-items: center;
}

.not-found-copy {
    max-width: 700px;
}

.not-found-copy h1 {
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: 0;
}

.not-found-copy p {
    max-width: 640px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.not-found-hero {
    position: relative;
    min-height: 420px;
    border-radius: 32px;
    display: grid;
    place-items: end center;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 126, 24, 0.18), transparent 44%),
        linear-gradient(180deg, #fff7f0 0%, #ffffff 78%);
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(23, 32, 51, 0.08);
}

.not-found-hero::before {
    content: "";
    position: absolute;
    inset: auto 34px 34px;
    height: 28px;
    border-radius: 999px;
    background: rgba(23, 32, 51, 0.1);
    filter: blur(8px);
}

.not-found-hero img {
    position: relative;
    width: min(78%, 300px);
    height: auto;
    animation: about-hero-float 4.5s ease-in-out infinite;
}

.server-error-hero {
    background:
        radial-gradient(circle at 58% 24%, rgba(239, 68, 68, 0.12), transparent 38%),
        radial-gradient(circle at 35% 28%, rgba(255, 126, 24, 0.16), transparent 42%),
        linear-gradient(180deg, #fff8f2 0%, #ffffff 78%);
}

.server-error-hero img {
    width: min(92%, 410px);
}

.not-found-suggestions {
    width: min(var(--max), calc(100vw - 48px));
    margin: 0 auto 110px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.not-found-suggestions article {
    border: 1px solid #eee4dc;
    border-radius: 22px;
    padding: 26px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(23, 32, 51, 0.04);
}

.not-found-suggestions span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff3e8;
    color: #ff7a18;
    font-weight: 800;
}

.not-found-suggestions h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1.25rem;
}

.not-found-suggestions p {
    margin: 0 0 18px;
    color: #667085;
    line-height: 1.65;
}

.not-found-suggestions a {
    color: #d96d25;
    font-weight: 800;
    text-decoration: none;
}

.feedback-sidebar-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.home-hero {
    min-height: 430px;
    display: grid;
    place-items: center;
    border-top: 1px solid #f3f3f3;
}

.home-hero-inner {
    width: min(720px, calc(100vw - 42px));
    text-align: center;
}

.home-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
}

.home-hero p {
    margin: 12px 0 28px;
    color: var(--muted);
    font-size: 14px;
}

.search-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 52px;
    height: 46px;
    background: var(--panel);
}

.search-form input {
    width: 100%;
    border: 0;
    padding: 0 18px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    outline: 0;
}

.search-form input[aria-invalid="true"] {
    box-shadow: inset 0 0 0 2px #f0b29a;
}

.search-form button {
    border: 0;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.search-suggestions {
    position: absolute;
    z-index: 25;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(0, 19, 34, 0.13);
    text-align: left;
}

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

.search-suggestion {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 7px;
    color: var(--ink);
}

.search-suggestion:hover,
.search-suggestion.is-active {
    background: #fff5ee;
}

.search-suggestion-logo {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--orange);
    font-size: 16px;
    font-weight: 900;
}

.search-suggestion-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.search-suggestion-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.search-suggestion-copy strong,
.search-suggestion-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestion-copy strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}

.search-suggestion-copy small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.search-suggestion-meta {
    justify-self: end;
    max-width: 145px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eaf6ee;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.search-error {
    margin-top: 12px;
    padding: 11px 14px;
    border: 1px solid #ffd2b5;
    background: #fff7f1;
    color: var(--orange);
    text-align: left;
    font-size: 13px;
    font-weight: 800;
}

.search-result {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: #eaf6ee;
    color: var(--green);
    text-align: left;
}

.form-error {
    padding: 10px 12px;
    border: 1px solid #ffd2b5;
    border-radius: 8px;
    background: #fff7f1;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.missing-shop-page {
    min-height: 520px;
    display: grid;
    place-items: center;
    padding: 76px 20px 110px;
    border-top: 1px solid #f3f3f3;
    background:
        linear-gradient(90deg, rgba(255, 122, 21, 0.09) 0 12px, transparent 12px),
        linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.missing-shop-card {
    width: min(720px, 100%);
    display: grid;
    gap: 18px;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(32, 34, 41, 0.08);
    text-align: center;
}

.missing-shop-card .scan-kicker {
    justify-self: center;
}

.missing-shop-card h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.missing-shop-card p {
    max-width: 590px;
    margin: 0 auto 6px;
    color: var(--muted);
    font-size: 16px;
}

.missing-shop-note {
    display: grid;
    gap: 3px;
    margin-top: 4px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #eaf6ee;
    color: var(--green);
    text-align: left;
}

.missing-shop-note span {
    color: #4c7f5f;
    font-size: 13px;
    font-weight: 700;
}

.explanation-page {
    width: min(var(--max), calc(100vw - 80px));
    margin: 0 auto;
    padding: 56px 0 96px;
}

.explanation-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #a0a8aa;
    font-size: 13px;
    font-weight: 800;
}

.explanation-breadcrumb a {
    color: var(--orange);
}

.explanation-breadcrumb a:hover {
    text-decoration: underline;
}

.explanation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid #f3f3f3;
}

.explanation-hero h1 {
    max-width: 780px;
    margin: 10px 0 16px;
    color: var(--ink);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.03;
    font-weight: 900;
}

.explanation-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.explanation-view-switch {
    display: inline-flex;
    gap: 6px;
    margin-top: 30px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
}

.explanation-view-switch a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.explanation-view-switch a.active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 26px rgba(241, 131, 56, 0.22);
}

.explanation-directory-menu {
    display: grid;
    grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin: 54px 0 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(33, 37, 41, 0.05);
}

.explanation-directory-menu__intro strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.explanation-directory-menu__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.explanation-directory-menu__links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.explanation-directory-menu__links a:hover,
.explanation-directory-menu__links a.active {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.explanation-directory-menu__links a:hover {
    transform: translateY(-1px);
}

.explanation-summary-card {
    padding: 30px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff8f2 0%, #fff 100%);
}

.explanation-summary-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 20px;
}

.explanation-summary-card p {
    margin: 0;
    color: var(--muted);
}

.explanation-index-hero {
    padding-bottom: 46px;
}

.explanation-index-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: 18px 0 52px;
    padding: 28px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff8f2 0%, #fff 100%);
}

.explanation-index-intro h2 {
    margin-bottom: 8px;
}

.explanation-index-intro p {
    max-width: 760px;
    margin: 0;
}

.explanation-topic-groups {
    display: grid;
    gap: 58px;
}

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

.explanation-topic-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    box-shadow: 0 16px 34px rgba(33, 37, 41, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.explanation-topic-card:hover {
    transform: translateY(-3px);
    border-color: #f1c6a7;
    box-shadow: 0 20px 42px rgba(241, 131, 56, 0.12);
}

.explanation-topic-card span {
    color: var(--ink);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
}

.explanation-topic-card p {
    margin: 0;
}

.explanation-topic-card strong {
    color: var(--orange);
    font-size: 14px;
}

.explanation-intro-grid,
.explanation-content-band,
.explanation-deep-dive,
.explanation-faq {
    margin: 58px 0;
}

.explanation-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 54px;
    align-items: start;
}

.explanation-page h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 32px;
    line-height: 1.15;
}

.explanation-page h3 {
    color: var(--ink);
}

.explanation-page p {
    color: var(--muted);
}

.explanation-checklist {
    padding: 24px;
    border-left: 6px solid var(--orange);
    background: var(--pale);
}

.explanation-checklist strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
}

.explanation-checklist ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.explanation-table-section {
    margin: 70px 0;
}

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

.comparison-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    text-align: center;
    vertical-align: top;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 230px;
    color: var(--ink);
    text-align: left;
    font-weight: 900;
}

.comparison-table th {
    background: #fff8f2;
    color: var(--ink);
    font-size: 13px;
}

.comparison-table th img {
    width: 54px;
    height: 54px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.comparison-table th span {
    display: block;
}

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

.explanation-footnote {
    margin: 12px 0 0;
    font-size: 13px;
}

.certification-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 70px 0;
}

.certification-explain-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.certification-explain-card > img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--panel);
}

.score-band-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff3ea, #f37021);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
}

.certification-explain-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.certification-explain-card p {
    margin: 0 0 16px;
}

.certification-explain-card dl {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
}

.certification-explain-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.certification-explain-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.certification-explain-card dd {
    margin: 0;
    color: var(--ink);
    text-align: right;
    font-weight: 800;
}

.certification-explain-card a {
    color: var(--orange);
    font-weight: 900;
}

.consumer-cert-points {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.consumer-cert-points li {
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf6;
}

.consumer-cert-points strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.consumer-cert-points span {
    display: block;
    color: var(--muted);
    line-height: 1.45;
}

.explanation-content-band {
    padding: 46px 52px;
    border-left: 8px solid var(--orange);
    background: var(--pale);
}

.entrepreneur-explain-grid,
.audience-explain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 34px 0 70px;
}

.entrepreneur-explain-grid article,
.audience-explain-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.entrepreneur-explain-grid h2,
.audience-explain-grid h2 {
    margin: 8px 0 14px;
    font-size: 24px;
}

.entrepreneur-explain-grid p,
.audience-explain-grid p {
    margin: 0 0 12px;
}

.entrepreneur-explain-grid p:last-of-type,
.audience-explain-grid p:last-of-type {
    margin-bottom: 16px;
}

.entrepreneur-explain-grid a,
.audience-explain-grid a {
    color: var(--orange);
    font-weight: 900;
}

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

.decision-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.decision-grid h3,
.decision-grid p {
    margin: 0;
}

.decision-grid h3 {
    margin-bottom: 10px;
}

.home-section {
    width: min(var(--max), calc(100vw - 80px));
    margin: 0 auto;
    padding: 82px 0;
}

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

.section-heading h2,
.home-section > h2,
.shop-main h2 {
    margin: 0;
    color: var(--ink);
    font-size: 25px;
    line-height: 1.18;
    font-weight: 800;
}

.section-heading p,
.home-section > p {
    margin: 10px 0 0;
    color: var(--muted);
}

.section-heading a,
.news-card a,
.quick-grid a strong,
.sidebar-card a,
.center-link {
    color: var(--orange);
    font-weight: 800;
}

.home-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-card {
    min-height: 270px;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 30px 26px;
    border: 1px solid var(--line);
    background: #fff;
}

.shop-card h3 {
    max-width: 100%;
    margin: 8px 0 0;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-card p {
    min-height: 78px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.score-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--score-color, var(--green));
    background: var(--score-bg, transparent);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 800;
}

.score-badge span {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.pill-button,
.outline-button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border-radius: 999px;
    padding: 0 20px;
    background: var(--orange);
    color: #fff;
    border: 0;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.pill-button.small,
.outline-button.small {
    min-height: 30px;
    padding-inline: 17px;
}

.outline-button {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.nearby-hero {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 52px;
    align-items: end;
    margin: 0 auto 54px;
    padding: 70px 0 28px;
}

.nearby-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
}

.nearby-hero p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
}

.nearby-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}

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

.nearby-form input,
.nearby-form select {
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--line);
    padding: 0 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.nearby-form button {
    grid-column: 1 / -1;
    width: 100%;
    border: 0;
}

.nearby-results-section {
    width: min(var(--max), calc(100vw - 80px));
    margin: 0 auto 90px;
}

.nearby-empty {
    padding: 28px 30px;
    border: 1px solid var(--line);
    background: #fff;
}

.nearby-empty strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.nearby-empty p {
    margin: 0;
    color: var(--muted);
}

.nearby-result-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.nearby-result-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid var(--line);
    background: #fff;
}

.nearby-shop-logo {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.nearby-shop-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 9px;
}

.nearby-shop-logo span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--pale);
    color: var(--orange);
    font-size: 30px;
    font-weight: 900;
}

.nearby-result-main {
    min-width: 0;
}

.nearby-result-card h3 {
    margin: 12px 0 8px;
    font-size: 24px;
}

.nearby-result-card p {
    margin: 0 0 10px;
    color: var(--muted);
}

.nearby-result-card small {
    color: var(--ink);
    font-weight: 800;
}

.nearby-result-meta {
    display: grid;
    justify-items: end;
    gap: 10px;
    min-width: 180px;
}

.nearby-review-score {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    color: var(--ink);
}

.nearby-review-score strong {
    color: var(--green);
    font-size: 28px;
    line-height: 1;
}

.nearby-review-score span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.nearby-review-score.muted strong {
    color: var(--muted);
}

.nearby-certifications {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.nearby-certification-logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.nearby-certification-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 4px;
}

.nearby-certification-text {
    max-width: 140px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #eef8f0;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.directory-hero {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 48px;
    align-items: center;
    margin: 46px auto 36px;
    padding: 46px 52px;
    border: 1px solid #ffe0c8;
    background: linear-gradient(135deg, #fff 0%, #fff7f1 100%);
}

.directory-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.directory-hero h1 {
    max-width: 560px;
    margin: 0;
    font-size: 43px;
    line-height: 1.08;
    font-weight: 900;
}

.directory-hero p {
    max-width: 590px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.directory-hero-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.directory-hero-search label:first-child {
    grid-column: 1 / -1;
}

.directory-hero-search label,
.directory-toolbar label,
.directory-filter-group label:not(.filter-check) {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.directory-hero-search input,
.directory-hero-search select,
.directory-toolbar select,
.directory-filter-group input[type="number"],
.directory-filter-group select {
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--line);
    padding: 0 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.directory-hero-search button {
    grid-column: 1 / -1;
    border: 0;
}

.directory-shell {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin: 0 auto 96px;
}

.directory-filters {
    border: 1px solid rgba(0, 19, 34, 0.09);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 19, 34, 0.07);
    overflow: hidden;
}

.directory-filters.is-sticky {
    position: sticky;
    top: 24px;
}

.directory-filter-disclosure > summary {
    display: none;
}

.directory-filters form {
    display: grid;
    gap: 0;
    padding: 22px;
}

.directory-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.directory-filter-head strong {
    font-size: 28px;
    line-height: 1.1;
}

.directory-filter-head span {
    min-width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(241, 131, 56, 0.28);
}

.directory-filter-group {
    display: grid;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.directory-filter-head + .directory-filter-group {
    border-top: 0;
}

.directory-filter-group summary {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.directory-filter-group summary::-webkit-details-marker {
    display: none;
}

.directory-filter-group summary::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: auto;
    border-right: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.16s ease;
}

.directory-filter-group[open] summary::after {
    transform: rotate(225deg) translateY(-2px);
}

.filter-summary-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #fff4ec;
    color: var(--orange);
}

.filter-summary-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    color: var(--ink);
    font-weight: 750;
}

.filter-check input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    accent-color: var(--orange);
}

.filter-signal-check {
    gap: 13px;
    min-height: 46px;
}

.filter-signal-check input {
    width: 22px;
    height: 22px;
}

.filter-check-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #fff4ec;
    color: var(--orange);
    font-size: 17px;
    font-weight: 950;
}

.filter-range-control {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(0, 19, 34, 0.1);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 19, 34, 0.04);
}

.filter-range-top,
.filter-range-scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.filter-range-top span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 850;
}

.filter-range-top output {
    min-width: 92px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8f2, #f8eee7);
    color: var(--orange);
    font-size: 15px;
    font-weight: 900;
    text-align: center;
}

.filter-range-control input[type="range"] {
    width: 100%;
    height: 32px;
    margin: 0;
    accent-color: var(--orange);
    cursor: pointer;
}

.filter-range-control input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
}

.filter-range-scale {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-scrollbox {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 220px;
    overflow-y: auto;
    padding: 2px 4px 2px 2px;
    background: transparent;
}

.filter-scrollbox::-webkit-scrollbar {
    width: 8px;
}

.filter-scrollbox::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #d8d8d4;
}

.filter-method-check {
    min-height: 58px;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #f8f8f7;
    font-size: 13px;
}

.filter-method-check span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-method-check:hover,
.filter-method-check:has(input:checked) {
    background: #fff7f0;
}

.filter-method-check:has(input:checked) {
    border-color: rgba(255, 122, 20, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 122, 20, 0.18);
}

.filter-method-logo {
    flex: 0 0 auto;
    width: 42px;
    height: 28px;
    object-fit: contain;
    border: 1px solid rgba(0, 19, 34, 0.08);
    border-radius: 6px;
    background: #fff;
}

@media (min-width: 1101px) {
    .filter-shipping-method:has(.filter-method-logo) {
        justify-content: center;
    }

    .filter-shipping-method:has(.filter-method-logo) span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .filter-shipping-method:has(.filter-method-logo) .filter-method-logo {
        width: 58px;
        height: 34px;
    }
}

.directory-filter-actions {
    display: grid;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.directory-filter-actions .pill-button,
.directory-reset {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.directory-reset {
    border: 1px solid rgba(0, 19, 34, 0.09);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.directory-reset:hover {
    border-color: rgba(241, 131, 56, 0.4);
    background: #fff7f0;
    color: var(--orange);
}

.directory-results {
    min-width: 0;
}

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

.directory-toolbar h2 {
    margin: 0;
    font-size: 28px;
}

.directory-toolbar p {
    margin: 4px 0 0;
    color: var(--muted);
}

.directory-alert,
.directory-empty {
    margin: 18px 0;
    padding: 24px;
    border: 1px solid #ffd6ba;
    background: #fff8f2;
}

.directory-alert strong,
.directory-empty strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
}

.directory-alert p,
.directory-empty p {
    margin: 0 0 14px;
    color: var(--muted);
}

.directory-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 18px;
}

.directory-active-chips span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #edf8f1;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

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

.directory-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 210px;
    gap: 20px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}

.directory-card-logo {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.directory-card-logo:hover,
.directory-card-logo:focus-visible {
    border-color: rgba(241, 131, 56, 0.45);
    box-shadow: 0 8px 20px rgba(0, 19, 34, 0.08);
    transform: translateY(-1px);
}

.directory-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 9px;
}

.directory-card-logo span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--pale);
    color: var(--orange);
    font-size: 32px;
    font-weight: 900;
}

.directory-card-main {
    min-width: 0;
}

.directory-card-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.directory-distance {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.directory-card h3 {
    margin: 10px 0 0;
    font-size: 25px;
    line-height: 1.15;
}

.directory-card h3 a {
    color: inherit;
    text-decoration: none;
}

.directory-card h3 a:hover,
.directory-card h3 a:focus-visible {
    color: var(--orange);
}

.directory-domain {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.directory-card p {
    margin: 9px 0 13px;
    color: var(--muted);
}

.directory-card-side {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.directory-review {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
}

.directory-review strong {
    color: var(--green);
    font-size: 30px;
    line-height: 1;
}

.directory-review span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.directory-review.muted strong {
    color: var(--muted);
}

.directory-certifications {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.directory-certification-logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.directory-certification-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 4px;
}

.directory-certification-text {
    max-width: 128px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #eef8f0;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.directory-pagination {
    margin-top: 34px;
}

.wc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(0, 19, 34, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 19, 34, 0.05);
}

.wc-pagination-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    align-items: center;
}

.wc-pagination-page,
.wc-pagination-button,
.wc-pagination-ellipsis {
    min-width: 40px;
    min-height: 40px;
    display: inline-grid;
    place-items: center;
    padding: 8px 13px;
    border: 1px solid rgba(0, 19, 34, 0.09);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.wc-pagination-button {
    min-width: 92px;
}

.wc-pagination-page:hover,
.wc-pagination-button:hover {
    border-color: rgba(241, 131, 56, 0.4);
    background: #fff7f0;
    color: var(--orange);
}

.wc-pagination-page.active {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 18px rgba(241, 131, 56, 0.25);
}

.wc-pagination-button.disabled {
    background: #f4f5f5;
    color: #a6aeb2;
    cursor: not-allowed;
}

.wc-pagination-ellipsis {
    min-width: 28px;
    border-color: transparent;
    color: var(--muted);
}

.highlight-band {
    border-left: 10px solid var(--orange);
    background: var(--pale);
}

.orange-band {
    background: var(--orange);
}

.orange-band .home-section {
    padding: 74px 0;
}

.light-heading h2,
.light-heading p,
.light-heading a {
    color: #fff;
}

.warning-card {
    border-color: #f2c4b8;
    background: #fff9f6;
}

.warning-label,
.community-date {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.warning-label {
    color: #c73326;
    background: #ffe6df;
}

.warning-card h3,
.community-card h3 {
    margin-top: 0;
}

.warning-card p,
.community-card p {
    min-height: 72px;
}

.card-meta {
    display: grid;
    gap: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.community-home-band .home-card-grid {
    gap: 34px;
}

.community-card {
    min-height: 288px;
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(0, 19, 34, .08);
}

.community-date {
    color: var(--orange);
    background: #fff2e8;
}

.community-card strong {
    color: var(--ink);
    font-size: 13px;
}

.local-shops-section {
    display: grid;
    gap: 34px;
    padding: 70px 0;
}

.local-search-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid #ffe0cc;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 122, 21, 0.08) 0 10px, transparent 10px),
        linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.local-search-card label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.local-search-card > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.local-search-card input[type="text"],
.local-search-card input[name="postcode"] {
    width: 100%;
    min-height: 58px;
    border: 1px solid #ffd4b8;
    border-radius: 8px;
    padding: 0 18px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 17px;
    font-weight: 800;
}

.local-search-card .pill-button {
    min-height: 58px;
    border-radius: 8px;
    padding-inline: 28px;
}

.popular-places-head {
    display: grid;
    gap: 5px;
}

.popular-places-head h3,
.popular-places-head p {
    margin: 0;
}

.popular-places-head h3 {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.15;
}

.popular-places-head p {
    color: var(--muted);
}

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

.place-tile {
    position: relative;
    min-height: 168px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ink);
    box-shadow: 0 14px 36px rgba(32, 34, 41, 0.08);
    isolation: isolate;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.place-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.62) 100%);
}

.place-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(32, 34, 41, 0.13);
}

.place-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.24s ease;
}

.place-tile:hover img {
    transform: scale(1.06);
}

.place-tile span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.news-section {
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    margin-top: 42px;
    text-align: left;
}

.news-card img {
    width: 100%;
    aspect-ratio: 1.65;
    object-fit: cover;
}

.news-card h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.news-card p {
    color: var(--muted);
}

.center-link {
    display: inline-flex;
    margin-top: 38px;
}

.quick-section {
    padding-bottom: 110px;
}

.blog-index-hero {
    width: min(var(--max), calc(100vw - 80px));
    margin: 0 auto;
    padding: 88px 0 46px;
}

.blog-index-hero > div {
    max-width: 760px;
}

.blog-index-hero h1 {
    margin: 18px 0 14px;
    color: var(--ink);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.06;
}

.blog-index-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.blog-index-section,
.blog-related-section,
.blog-article-page {
    width: min(var(--max), calc(100vw - 80px));
    margin: 0 auto;
}

.blog-index-section {
    padding: 0 0 92px;
}

.blog-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 42px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(32, 34, 41, 0.07);
}

.blog-feature-card img,
.blog-card img,
.blog-article-hero img {
    width: 100%;
    object-fit: cover;
}

.blog-feature-card img {
    aspect-ratio: 1.55;
    border-radius: 8px;
}

.blog-feature-card span,
.blog-card span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-feature-card h2,
.blog-card h2 {
    margin: 10px 0;
    color: var(--ink);
    line-height: 1.16;
}

.blog-feature-card h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.blog-feature-card h2 a,
.blog-card h2 a {
    color: inherit;
}

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

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.blog-card {
    display: grid;
    align-content: start;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.blog-card img {
    aspect-ratio: 1.62;
}

.blog-card > div {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.blog-card h2 {
    font-size: 20px;
}

.blog-card > div > a {
    color: var(--orange);
    font-weight: 900;
}

.blog-empty-state {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.blog-article-page {
    padding: 42px 0 70px;
}

.blog-article-hero {
    display: grid;
    gap: 18px;
}

.blog-article-hero h1 {
    max-width: 860px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
}

.blog-article-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.blog-article-hero img {
    aspect-ratio: 2.35;
    margin-top: 18px;
    border-radius: 8px;
}

.blog-article-content {
    max-width: 780px;
    margin: 54px auto 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.78;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    margin: 38px 0 12px;
    line-height: 1.2;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol,
.blog-article-content blockquote {
    margin: 0 0 24px;
}

.blog-article-content a {
    color: var(--orange);
    font-weight: 800;
}

.blog-article-content blockquote {
    padding: 22px 26px;
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    background: #fff7f1;
}

.blog-article-content img {
    max-width: 100%;
    border-radius: 8px;
}

.blog-article-back {
    max-width: 780px;
    margin: 34px auto 0;
}

.blog-related-section {
    padding: 24px 0 96px;
}

.about-hero-page {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 58px;
    align-items: center;
    margin: 0 auto;
    padding: 64px 0 78px;
}

.about-hero-copy h1 {
    max-width: 820px;
    margin: 18px 0 18px;
    color: var(--ink);
    font-size: clamp(42px, 5.4vw, 70px);
    line-height: 1.04;
}

.about-hero-copy p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.68;
}

.about-hero-actions,
.about-link-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.about-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 440px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff6ef 0%, #fff 100%);
    overflow: hidden;
}

.about-hero-visual::before {
    content: "";
    position: absolute;
    inset: auto 34px 34px;
    height: 84px;
    border-radius: 999px;
    background: rgba(255, 122, 21, 0.12);
}

.about-hero-visual img {
    position: relative;
    z-index: 1;
    width: min(300px, 84%);
    max-height: 410px;
    object-fit: contain;
    animation: about-hero-float 4.5s ease-in-out infinite;
}

@keyframes about-hero-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-mission-band {
    padding: 78px 0;
    background: #fff7f1;
}

.about-section-head,
.about-mission-grid,
.about-values-section,
.about-history-section,
.about-practical-section {
    width: min(var(--max), calc(100vw - 80px));
    margin-inline: auto;
}

.about-section-head {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin-bottom: 38px;
}

.about-section-head > span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-section-head h2,
.about-story-card h2,
.about-donation-card h2,
.about-practical-card h2,
.about-address-card h2 {
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
}

.about-section-head h2 {
    font-size: clamp(30px, 3vw, 44px);
}

.about-section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

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

.about-mission-grid article,
.about-story-card,
.about-donation-card,
.about-practical-card,
.about-address-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.about-mission-grid article {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px;
}

.about-mission-grid article > span {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
}

.about-mission-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: 22px;
}

.about-mission-grid p,
.about-story-card p,
.about-donation-card p,
.about-practical-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.about-values-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 28px;
    padding: 76px 0;
}

.about-story-card,
.about-donation-card,
.about-practical-card,
.about-address-card {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.about-donation-card {
    background: #f0faf4;
    border-color: #cfead7;
}

.scammed-report-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.scammed-report-card {
    align-content: start;
    min-height: 100%;
}

.scammed-report-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: #fff3e9;
    color: var(--orange);
}

.scammed-report-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-history-section {
    padding: 8px 0 76px;
}

.about-timeline {
    display: grid;
    gap: 18px;
}

.about-timeline article {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.about-timeline article > span {
    color: var(--orange);
    font-size: 24px;
    font-weight: 900;
}

.about-timeline h3 {
    margin: 0 0 8px;
    color: var(--ink);
}

.about-timeline p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.about-practical-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    padding: 0 0 96px;
}

.about-address-card address {
    color: var(--muted);
    font-style: normal;
    line-height: 1.7;
}

.advertise-hero {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: center;
    margin: 0 auto;
    padding: 64px 0 72px;
}

.advertise-hero h1 {
    max-width: 860px;
    margin: 18px 0 18px;
    color: var(--ink);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
}

.advertise-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.68;
}

.advertise-hero-card {
    display: grid;
    gap: 14px;
    padding: 32px;
    border: 1px solid #f2ded3;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #fff8f3 0%, #fff 100%);
    box-shadow: 0 24px 64px rgba(32, 34, 41, 0.07);
}

.advertise-hero-card span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.advertise-hero-card strong {
    color: var(--ink);
    font-size: 28px;
    line-height: 1.15;
}

.advertise-hero-card p {
    font-size: 16px;
}

.advertise-stats-band {
    padding: 56px 0;
    background: #fff7f1;
}

.advertise-stats-grid,
.advertise-content-section,
.advertise-cta-section {
    width: min(var(--max), calc(100vw - 80px));
    margin-inline: auto;
}

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

.advertise-stats-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advertise-stats-grid-four strong {
    font-size: clamp(32px, 3vw, 42px);
}

.advertise-stats-grid article {
    display: grid;
    gap: 8px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.advertise-stats-grid span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.advertise-stats-grid strong {
    color: var(--ink);
    font-size: 46px;
    line-height: 1;
}

.advertise-stats-grid p {
    margin: 0;
    color: var(--muted);
}

.scammed-steps-grid strong {
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: 1.08;
}

.advertise-content-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    padding: 76px 0;
}

.advertise-content-section.scammed-single-step {
    grid-template-columns: 1fr;
    padding-bottom: 0;
}

.scammed-community-screenshot {
    align-self: center;
    justify-self: center;
    display: grid;
    gap: 10px;
    max-width: 300px;
    margin: 0;
    text-align: center;
}

.scammed-community-screenshot img {
    width: 100%;
    display: block;
    border: 1px solid #eadfd7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.scammed-community-screenshot figcaption {
    color: #7a8492;
    font-size: 13px;
    font-weight: 800;
}

.advertise-main-card,
.advertise-rules-card {
    display: grid;
    gap: 18px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.advertise-rules-card {
    background: #f0faf4;
    border-color: #cfead7;
}

.advertise-main-card h2,
.advertise-rules-card h2,
.advertise-cta-section h2 {
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
}

.advertise-main-card p,
.advertise-rules-card li,
.advertise-cta-section p {
    color: var(--muted);
    line-height: 1.7;
}

.advertise-main-card p {
    margin: 0;
}

.advertise-rules-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
}

.advertise-cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 96px;
    padding: 38px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
}

.advertise-cta-section h2,
.advertise-cta-section p,
.advertise-cta-section .scan-kicker {
    color: #fff;
}

.advertise-cta-section .scan-kicker {
    background: rgba(255, 255, 255, 0.16);
}

.advertise-cta-section p {
    margin: 10px 0 0;
    max-width: 650px;
}

.advertise-cta-section .pill-button {
    background: #fff;
    color: var(--orange);
}

.privacy-hero {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: center;
    margin: 0 auto;
    padding: 64px 0 72px;
}

.privacy-hero h1 {
    max-width: 860px;
    margin: 18px 0 18px;
    color: var(--ink);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
}

.privacy-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.68;
}

.privacy-summary-card {
    display: grid;
    gap: 14px;
    padding: 32px;
    border: 1px solid #f2ded3;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
    box-shadow: 0 24px 64px rgba(32, 34, 41, 0.07);
}

.privacy-summary-card span,
.privacy-intro-grid article > span,
.privacy-toc strong {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.privacy-summary-card strong {
    color: var(--ink);
    font-size: 30px;
    line-height: 1.15;
}

.privacy-summary-card p {
    color: var(--muted);
    font-size: 16px;
}

.privacy-intro-band {
    padding: 56px 0;
    background: #fff7f1;
}

.privacy-intro-grid,
.privacy-content-section {
    width: min(var(--max), calc(100vw - 80px));
    margin-inline: auto;
}

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

.privacy-intro-grid article {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.privacy-intro-grid h2 {
    margin: 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.privacy-intro-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.privacy-content-section {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 76px 0 96px;
}

.privacy-toc {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.privacy-toc a {
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.privacy-toc a:hover,
.privacy-contact-card a:not(.pill-button) {
    color: var(--orange);
}

.privacy-article {
    display: grid;
    gap: 28px;
}

.privacy-article > section {
    display: grid;
    gap: 16px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.privacy-article h2,
.privacy-contact-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 1.16;
}

.privacy-article h3 {
    margin: 10px 0 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
}

.privacy-article p,
.privacy-article li,
.privacy-contact-card address {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.privacy-article ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 6px;
}

.privacy-rights-grid article {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid #cfead7;
    border-radius: 8px;
    background: #f0faf4;
}

.privacy-rights-grid h3 {
    margin: 0;
    font-size: 18px;
}

.privacy-contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    background: #fff7f1 !important;
    border-color: #f2ded3 !important;
}

.privacy-contact-card address {
    margin-top: 12px;
    font-style: normal;
}

.quick-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, calc((100% - 54px) / 4));
    gap: 18px;
    margin-top: 34px;
    padding-bottom: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--orange) #f2ebe5;
    -webkit-overflow-scrolling: touch;
}

.quick-grid a {
    min-height: 150px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    background: #fff;
    scroll-snap-align: start;
}

.quick-grid span {
    color: var(--muted);
}

.update-scan-page {
    min-height: 680px;
    display: grid;
    place-items: center;
    padding: 86px 20px 110px;
    background:
        linear-gradient(90deg, rgba(255, 122, 21, 0.09) 0 12px, transparent 12px),
        linear-gradient(180deg, #fff 0%, #fff8f3 56%, #fff 100%);
}

.scan-panel {
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 44px;
    padding: 58px 62px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(32, 34, 41, 0.08);
}

.scan-copy {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 18px;
}

.scan-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff0e8;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.scan-panel h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
}

.scan-panel p {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.scan-actions {
    width: min(470px, 100%);
}

.scan-actions[hidden] {
    display: none;
}

.scan-actions .pill-button {
    width: 100%;
    justify-content: center;
}

.scan-status {
    width: min(470px, 100%);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--panel);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.scan-status-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    align-items: center;
}

.scan-status-heading > span:last-child {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.scan-status strong {
    color: var(--ink);
    font-size: 15px;
}

.scan-status-text {
    min-width: 0;
    line-height: 1.45;
}

.scan-status small {
    color: var(--muted);
    font-size: 12px;
}

.scan-status a {
    color: var(--orange);
    font-weight: 900;
}

.scan-status-busy {
    border-color: #f2ded3;
    background: #fff8f3;
}

.scan-progress-details {
    display: grid;
    gap: 8px;
}

.scan-progress-details[hidden] {
    display: none;
}

.scan-progress-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.scan-progress-label > span:first-child {
    min-width: 0;
    line-height: 1.35;
}

.scan-progress-label > span:last-child {
    flex: 0 0 auto;
}

.scan-progress-label .is-changing {
    animation: scan-stage-change 360ms ease-out;
}

.scan-progress-track {
    height: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1d5c3;
    border-radius: 999px;
    background: #fff;
}

.scan-progress-fill {
    width: 0;
    height: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: inherit;
    background: linear-gradient(90deg, #ff9b4f, var(--orange));
    transition: width 160ms linear;
}

.scan-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: scan-progress-shimmer 2.4s ease-in-out infinite;
}

.scan-status-slow .scan-progress-fill {
    animation: scan-progress-breathe 2.2s ease-in-out infinite;
}

.scan-reassurance {
    max-width: none !important;
    color: var(--muted) !important;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1.45 !important;
}

.scan-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #ffe0cc;
    border-top-color: var(--orange);
    border-radius: 999px;
    animation: scan-spin 0.85s linear infinite;
}

.scan-status-warning {
    border-color: #ffd2b5;
    background: #fff7f1;
    color: var(--orange);
}

.scan-status-complete {
    border-color: #bfe2ce;
    background: #f2fbf6;
}

.scan-status-complete .scan-progress-fill {
    background: #24935a;
}

.scan-status-error {
    border-color: #ffc8c8;
    background: #fff0f2;
    color: var(--danger);
}

.scan-visual {
    position: relative;
    width: 330px;
    height: 360px;
    justify-self: center;
}

.scan-visual::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 18px;
    height: 84px;
    border-radius: 999px;
    background: #fff4ed;
}

.thanks-page,
.auth-page {
    min-height: 620px;
    display: grid;
    place-items: center;
    gap: 24px;
    padding: 76px 20px 110px;
    border-top: 1px solid #f3f3f3;
    background:
        linear-gradient(90deg, rgba(255, 122, 21, 0.09) 0 12px, transparent 12px),
        linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.thanks-panel {
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 44px;
    padding: 48px 56px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(32, 34, 41, 0.08);
}

.thanks-copy {
    display: grid;
    justify-items: start;
    gap: 18px;
}

.thanks-copy h1,
.auth-card h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.thanks-copy p,
.auth-card p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.thanks-status {
    display: grid;
    gap: 3px;
    width: min(540px, 100%);
    padding: 16px 18px;
    border: 1px solid #cfead7;
    border-radius: 8px;
    background: #f0faf4;
    color: var(--green);
}

.thanks-status span {
    color: #4c7f5f;
    font-size: 13px;
    font-weight: 800;
}

.thanks-inline-account {
    width: min(560px, 100%);
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #cfead7;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(240, 250, 244, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.thanks-inline-account h2 {
    margin: 0;
    color: var(--green);
    font-size: 23px;
    line-height: 1.2;
}

.thanks-inline-account p {
    max-width: none;
    color: #4c7f5f;
    font-size: 15px;
    line-height: 1.55;
}

.thanks-inline-account .account-create-form {
    gap: 11px;
}

.thanks-inline-account .account-create-form input {
    border-color: #cfead7;
}

.thanks-inline-account .account-create-form input:disabled {
    background: #f7fcf9;
    color: #4c7f5f;
}

.thanks-inline-account .pill-button {
    justify-self: start;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.text-link {
    color: var(--orange);
    font-weight: 900;
}

.thanks-visual {
    position: relative;
    width: 310px;
    height: 340px;
    justify-self: center;
}

.thanks-visual::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 18px;
    height: 84px;
    border-radius: 999px;
    background: #fff4ed;
}

.thanks-account-card,
.auth-card {
    width: min(720px, 100%);
    display: grid;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(32, 34, 41, 0.07);
}

.thanks-account-card h2,
.auth-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
}

.thanks-account-card p {
    margin: 0;
    color: var(--muted);
}

.account-create-form {
    display: grid;
    gap: 12px;
}

.account-create-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-create-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.account-create-form input:disabled {
    background: var(--panel);
    color: var(--muted);
}

.auth-small-link {
    font-size: 14px !important;
}

.auth-small-link a {
    color: var(--orange);
    font-weight: 900;
}

.verification-help,
.auth-card .verification-help,
.claim-confirm-card .verification-help {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.verification-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.verification-actions form {
    margin: 0;
}

.auth-checkbox {
    grid-template-columns: auto 1fr;
    align-items: center;
    text-transform: none;
    color: var(--muted);
}

.auth-checkbox input {
    width: auto;
}

.hero-yoga {
    position: absolute;
    left: 50%;
    top: 34px;
    width: 190px;
    height: 290px;
    transform: translateX(-50%);
    animation: hero-breathe 2.8s ease-in-out infinite;
}

.dashboard-page {
    padding: 46px 0 96px;
    border-top: 1px solid #f3f3f3;
    background:
        linear-gradient(90deg, rgba(255, 122, 21, 0.08) 0 12px, transparent 12px),
        linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.dashboard-shell {
    width: min(var(--max), calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.dashboard-main {
    display: grid;
    gap: 24px;
}

.dashboard-sidebar {
    position: sticky;
    top: 22px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(32, 34, 41, 0.06);
}

.dashboard-account-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
}

.dashboard-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff1e7;
    color: var(--orange);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.dashboard-account-card strong,
.dashboard-account-card span {
    display: block;
}

.dashboard-account-card strong {
    line-height: 1.25;
}

.dashboard-account-card div > span {
    color: var(--muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.dashboard-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.dashboard-sidebar-label {
    width: 100%;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-role-pill,
.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #eaf6ee;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.status-pill.warning {
    background: #fff1e7;
    color: var(--orange);
}

.dashboard-muted {
    color: var(--muted);
    font-size: 13px;
}

.dashboard-side-nav {
    display: grid;
    gap: 6px;
}

.dashboard-side-nav a,
.dashboard-sidebar-label-link,
.dashboard-logout-form button {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 12px 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.dashboard-sidebar-label-link {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-side-nav a:hover,
.dashboard-side-nav a.active,
.dashboard-sidebar-label-link:hover,
.dashboard-sidebar-label-link.active {
    background: #fff1e7;
    color: var(--orange);
}

.dashboard-utility-nav {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.dashboard-logout-form {
    margin: 0;
}

.dashboard-logout-form button {
    color: var(--danger);
}

.dashboard-claimed-shops {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.dashboard-claimed-shop {
    display: grid;
    gap: 5px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf6;
}

.dashboard-claimed-shop strong,
.dashboard-claimed-shop span {
    display: block;
}

.dashboard-claimed-shop strong {
    line-height: 1.25;
}

.dashboard-claimed-shop span {
    color: var(--muted);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.dashboard-claimed-shop-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 4px;
}

.dashboard-claimed-shop a {
    width: fit-content;
    border-radius: 999px;
    padding: 6px 11px;
    background: #fff;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-claimed-shop a:hover,
.dashboard-claimed-shop a.active {
    background: var(--orange);
    color: #fff;
}

.dashboard-hero,
.dashboard-panel,
.dashboard-feature-card,
.dashboard-stat-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.dashboard-hero {
    display: grid;
    gap: 12px;
    padding: 34px;
}

.dashboard-hero.compact {
    padding: 28px 34px;
}

.dashboard-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.dashboard-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-stat-card {
    display: grid;
    gap: 4px;
    padding: 22px;
}

.dashboard-stat-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-stat-card strong {
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
}

.dashboard-stat-card small {
    color: var(--muted);
    font-weight: 700;
}

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

.dashboard-owner-shops {
    display: grid;
    gap: 18px;
}

.dashboard-owner-shop-card {
    display: grid;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.dashboard-owner-shop-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-owner-shop-head h2,
.dashboard-owner-shop-head p {
    margin: 0;
}

.dashboard-owner-shop-head h2 {
    margin-top: 6px;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.dashboard-owner-shop-head p {
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.dashboard-owner-shop-head-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.dashboard-completion-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid #ffe1cc;
    border-radius: 8px;
    background: #fff;
}

.dashboard-completion-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-completion-copy {
    display: grid;
    gap: 4px;
}

.dashboard-completion-copy span,
.dashboard-owner-metrics span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-completion-copy strong {
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
}

.dashboard-completion-copy small,
.dashboard-owner-metrics small {
    color: var(--muted);
    font-weight: 700;
}

.dashboard-completion-meter {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #f0f1f2;
}

.dashboard-completion-meter span {
    display: block;
    width: var(--completion, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), #26a867);
}

.dashboard-completion-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

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

.dashboard-owner-metrics a {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.dashboard-owner-metrics a:hover,
.dashboard-owner-metrics a:focus-visible {
    border-color: #ffd3b5;
    box-shadow: 0 14px 28px rgba(255, 122, 24, .12);
    transform: translateY(-1px);
}

.dashboard-owner-metrics strong {
    color: var(--ink);
    font-size: 32px;
    line-height: 1;
}

.dashboard-owner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.dashboard-feature-card {
    display: grid;
    gap: 9px;
    padding: 24px;
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.dashboard-feature-card span {
    width: fit-content;
    border-radius: 999px;
    padding: 4px 10px;
    background: #fff1e7;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-feature-card h2,
.dashboard-panel-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.2;
}

.dashboard-feature-card p {
    margin: 0;
    color: var(--muted);
}

.dashboard-panels,
.account-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dashboard-panel {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.dashboard-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-panel-heading a,
.dashboard-inline-link {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.dashboard-list-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.dashboard-list-item:first-of-type {
    border-top: 0;
}

.dashboard-list-item strong,
.dashboard-list-item p {
    margin: 0;
}

.dashboard-list-item p {
    color: var(--muted);
}

.dashboard-report-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.dashboard-report-row:first-of-type {
    border-top: 0;
}

.dashboard-report-row span,
.dashboard-report-row strong,
.dashboard-report-row p {
    display: block;
}

.dashboard-report-row > div:first-child > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-report-row strong {
    margin-top: 4px;
    color: var(--ink);
}

.dashboard-report-row p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.dashboard-report-row-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.status-pill.is-approved {
    background: #eaf6ee;
    color: var(--green);
}

.consumer-safety-callout {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 24px;
    align-items: center;
    padding: 26px;
    border: 1px solid #ffe1cc;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff7f1 0%, #ffffff 58%, #eaf6ee 100%);
}

.consumer-safety-copy {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.consumer-safety-copy h2,
.consumer-safety-copy p {
    margin: 0;
}

.consumer-safety-copy h2 {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.consumer-safety-copy p {
    max-width: 660px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.consumer-safety-visual {
    min-height: 170px;
    display: grid;
    place-items: center;
}

.mini-hero {
    position: relative;
    width: 118px;
    height: 146px;
    animation: mini-hero-float 3.2s ease-in-out infinite;
}

.mini-hero-cape {
    position: absolute;
    left: 19px;
    top: 52px;
    width: 82px;
    height: 82px;
    border-radius: 18px 18px 44px 44px;
    background: #2f8a18;
    transform: skewX(-8deg);
}

.mini-hero-head {
    position: absolute;
    left: 34px;
    top: 14px;
    width: 50px;
    height: 48px;
    border-radius: 16px 16px 18px 18px;
    background: #ffc589;
    box-shadow: inset 0 7px 0 #222;
}

.mini-hero-mask {
    position: absolute;
    left: 34px;
    top: 34px;
    width: 50px;
    height: 13px;
    border-radius: 999px;
    background: #25a84f;
}

.mini-hero-body {
    position: absolute;
    left: 29px;
    top: 62px;
    width: 60px;
    height: 54px;
    border-radius: 12px;
    background: var(--orange);
}

.mini-hero-body::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 14px;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
}

.mini-hero-arm {
    position: absolute;
    top: 66px;
    width: 14px;
    height: 50px;
    border-radius: 999px;
    background: var(--orange);
}

.mini-hero-arm-left {
    left: 15px;
    transform: rotate(28deg);
}

.mini-hero-arm-right {
    right: 15px;
    transform: rotate(-28deg);
}

.mini-hero-shadow {
    position: absolute;
    left: 25px;
    bottom: 0;
    width: 68px;
    height: 10px;
    border-radius: 50%;
    background: rgba(32, 34, 41, .12);
}

@keyframes mini-hero-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.dashboard-empty {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 8px;
    background: var(--panel);
}

.dashboard-empty strong,
.dashboard-empty p {
    margin: 0;
}

.dashboard-empty p {
    color: var(--muted);
}

.dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.dashboard-tabs a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.dashboard-tabs a:hover,
.dashboard-tabs a.active {
    background: var(--orange);
    color: #fff;
}

.review-filter-panel {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: end;
}

.review-filter-panel label:not(.review-compare-toggle) {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.review-filter-panel select {
    min-height: 46px;
    border: 1px solid var(--line);
    padding: 0 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.review-compare-toggle {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 850;
}

.review-compare-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

.profile-stats-panel,
.benchmark-panel,
.competitor-search-panel {
    overflow: hidden;
}

.profile-stats-chart {
    min-height: 280px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.profile-stats-bar {
    min-width: 0;
    height: 230px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: end;
    text-align: center;
}

.profile-stats-bar-value {
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.profile-stats-bar i {
    width: 100%;
    min-height: 6px;
    display: block;
    align-self: end;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--orange) 0%, #ff9f45 100%);
}

.profile-stats-bar strong {
    color: var(--muted);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

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

.benchmark-summary article {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

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

.benchmark-summary span {
    font-size: 12px;
    text-transform: uppercase;
}

.benchmark-summary strong {
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
}

.benchmark-summary .positive strong {
    color: var(--green);
}

.benchmark-summary .negative strong {
    color: var(--danger);
}

.benchmark-list {
    display: grid;
}

.review-line-chart {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.review-line-chart svg {
    width: 100%;
    height: 260px;
    overflow: visible;
}

.review-line-chart line {
    stroke: rgba(0, 19, 34, 0.08);
    stroke-width: 0.6;
}

.review-line-chart polyline {
    fill: none;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-line-chart polyline.own {
    stroke: var(--orange);
}

.review-line-chart polyline.comparison {
    stroke: var(--green);
    stroke-dasharray: 5 5;
}

.review-chart-labels,
.review-chart-legend {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
}

.review-chart-labels span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.review-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.review-chart-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.review-chart-legend i {
    width: 22px;
    height: 4px;
    display: inline-block;
    border-radius: 999px;
}

.review-chart-legend i.own {
    background: var(--orange);
}

.review-chart-legend i.comparison {
    background: var(--green);
}

.review-count-chart {
    min-height: 280px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.review-count-column {
    min-width: 0;
    height: 230px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 8px;
    text-align: center;
}

.review-count-column span {
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.review-count-column div {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
}

.review-count-column i {
    width: 44%;
    min-height: 6px;
    display: block;
    border-radius: 8px 8px 3px 3px;
}

.review-count-column i.own {
    background: linear-gradient(180deg, var(--orange) 0%, #ff9f45 100%);
}

.review-count-column i.comparison {
    background: linear-gradient(180deg, var(--green) 0%, #59bf78 100%);
    opacity: 0.75;
}

.review-count-column strong {
    color: var(--muted);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.review-insights {
    display: grid;
    gap: 10px;
}

.review-insights article {
    padding: 14px 16px;
    border: 1px solid #f4dfce;
    border-radius: 8px;
    background: #fff8f2;
    color: var(--ink);
    font-weight: 800;
}

.competitor-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.competitor-search-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.competitor-search-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.competitor-suggestions {
    display: grid;
    gap: 10px;
}

.competitor-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.competitor-card strong,
.competitor-card span {
    display: block;
}

.competitor-card span {
    color: var(--muted);
    font-size: 13px;
}

.dashboard-success-panel {
    border-color: #cdebd7;
    background: #f4fbf6;
    color: var(--green);
    font-weight: 900;
}

.status-pill.warning {
    background: #fff1e7;
    color: var(--orange);
}

.product-feed-panel,
.product-feed-selection-panel {
    gap: 18px;
}

.spelling-check-panel {
    gap: 20px;
}

.spelling-check-intro {
    padding: 18px;
    border: 1px solid #ffd7bd;
    border-radius: 8px;
    background: #fff8f3;
}

.spelling-check-intro p {
    margin: 0;
}

.spelling-check-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.product-feed-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}

.product-feed-form label {
    display: grid;
    gap: 7px;
}

.product-feed-form label span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.product-feed-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--ink);
    font: inherit;
}

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

.product-feed-status-grid article {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fafafa;
}

.product-feed-status-grid span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-feed-status-grid strong {
    color: var(--ink);
}

.product-feed-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-feed-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}

.product-feed-search {
    display: grid;
    gap: 7px;
}

.product-feed-search span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.product-feed-search input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--ink);
    font: inherit;
}

.product-feed-counter {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 0 18px;
    background: #fff1e7;
    color: var(--orange);
    font-weight: 900;
    white-space: nowrap;
}

.product-feed-preview-card {
    position: relative;
    display: grid;
    grid-template-rows: 160px minmax(0, 1fr);
    gap: 12px;
    min-height: 308px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-feed-preview-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(20, 20, 20, 0.06);
}

.product-feed-preview-card:has(input:checked) {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 131, 56, 0.12);
}

.product-feed-preview-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.product-feed-preview-media {
    width: 100%;
    height: 160px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--orange);
    font-size: 26px;
    font-weight: 900;
}

.product-feed-preview-media img {
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    object-fit: contain;
}

.product-feed-preview-copy {
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
}

.product-feed-preview-copy strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.2;
}

.product-feed-preview-copy small {
    color: var(--orange);
    font-weight: 900;
}

.product-feed-preview-copy em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.35;
}

.product-feed-check {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border: 2px solid #cbd3d8;
    border-radius: 999px;
    background: #fff;
}

.product-feed-preview-card:has(input:checked) .product-feed-check {
    position: relative;
    border-color: var(--orange);
    background: var(--orange);
}

.product-feed-preview-card:has(input:checked) .product-feed-check::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 7px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.widget-create-panel,
.widget-list-panel,
.widget-config-form,
.widget-preview-panel,
.widget-embed-panel {
    display: grid;
    gap: 18px;
}

.widget-type-form {
    display: grid;
    gap: 18px;
}

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

.widget-type-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: 190px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.widget-type-card:hover,
.widget-type-card:has(input:checked) {
    border-color: rgba(255, 122, 21, 0.5);
    box-shadow: 0 18px 38px rgba(32, 34, 41, 0.08);
    transform: translateY(-1px);
}

.widget-type-card input {
    position: absolute;
    inset: 16px 16px auto auto;
}

.widget-type-card strong,
.widget-list-card h3 {
    display: block;
    margin: 0;
    color: var(--ink);
}

.widget-type-card small,
.widget-list-card p {
    color: var(--muted);
    line-height: 1.45;
}

.widget-type-visual {
    display: grid;
    gap: 8px;
    width: 100%;
    min-height: 104px;
    padding: 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff7f0, #fff);
    border: 1px solid rgba(255, 122, 21, 0.12);
}

.widget-type-visual b {
    display: inline-grid;
    width: 54px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    background: #edf7f0;
    color: var(--green);
    font-size: 18px;
    font-weight: 900;
}

.widget-type-visual i {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 122, 21, 0.22);
}

.widget-type-visual em {
    color: #f7b928;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}

.widget-type-visual i:first-child {
    width: 54%;
    height: 18px;
    background: var(--orange);
}

.widget-type-visual.trust_compact {
    grid-template-columns: 62px 1fr;
    align-items: center;
}

.widget-type-visual.trust_compact i {
    height: 12px;
}

.widget-type-visual.trust_compact i:nth-child(2) {
    width: 88%;
}

.widget-type-visual.trust_compact i:nth-child(3) {
    width: 72%;
}

.widget-type-visual.trust_compact i:nth-child(4) {
    width: 58%;
}

.widget-type-visual.shop_info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
}

.widget-type-visual.shop_info b {
    grid-column: 1 / -1;
    width: 70%;
    height: 18px;
    background: var(--orange);
}

.widget-type-visual.checker_score {
    grid-template-columns: 58px 1fr;
    align-items: center;
}

.widget-type-visual.checker_score b {
    width: 58px;
    height: 42px;
    background: #edf7f0;
    color: var(--green);
}

.widget-type-visual.checker_score strong {
    display: block;
    color: var(--green);
    font-size: 16px;
    line-height: 1;
}

.widget-type-visual.checker_score i {
    grid-column: 2;
    width: 80%;
    height: 10px;
}

.widget-type-visual.trust_card {
    align-content: start;
    gap: 7px;
    padding: 12px;
}

.widget-type-visual.trust_card strong {
    font-size: 14px;
}

.widget-type-visual.trust_card em {
    color: var(--green);
    font-size: 12px;
}

.widget-type-visual.trust_card i {
    width: 100%;
    height: 12px;
    background: rgba(21, 153, 71, 0.14);
}

@media (max-width: 1180px) {
    .widget-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.widget-type-visual.shop_info i:first-child {
    width: 70%;
}

.widget-type-visual.review_bar {
    grid-template-columns: 48px minmax(0, 1fr) 84px;
    align-items: center;
    min-height: 78px;
}

.widget-type-visual.review_bar b {
    width: 44px;
    height: 32px;
    font-size: 15px;
}

.widget-type-visual.review_bar i {
    width: 78px;
    height: 14px;
    justify-self: end;
    background: rgba(0, 19, 34, 0.72);
}

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

.widget-list-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.widget-list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.text-button {
    border: 0;
    background: transparent;
    color: var(--orange);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.text-button.danger {
    color: #d83a2f;
}

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

.widget-settings-grid .owner-full-field {
    grid-column: 1 / -1;
}

.widget-preview-panel-wide {
    margin-top: 22px;
}

.widget-embed-panel {
    margin-top: 22px;
}

.widget-settings-section {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfc;
}

.widget-settings-section h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
}

.widget-settings-section p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.widget-color-settings {
    display: grid;
    gap: 12px;
}

.widget-color-settings > span {
    color: var(--ink);
    font-weight: 800;
}

.widget-color-presets {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.widget-color-presets label {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.widget-color-presets label:has(input:checked) {
    border-color: rgba(255, 122, 21, 0.55);
    box-shadow: 0 12px 24px rgba(32, 34, 41, 0.07);
}

.widget-color-presets input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.widget-color-presets label > span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--widget-preset-color);
    box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(32, 34, 41, 0.12);
}

.widget-color-presets small {
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.widget-width-presets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.widget-width-presets label {
    align-items: center;
    justify-items: start;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    min-height: 62px;
    text-align: left;
}

.widget-width-presets label > span {
    position: relative;
    background: #fff7f0;
}

.widget-width-presets label > span::before {
    content: "";
    position: absolute;
    inset: 9px 7px;
    border: 2px solid var(--orange);
    border-radius: 6px;
}

.widget-width-presets label:has(input[value="auto"]) > span::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 50%;
    height: 2px;
    background: var(--orange);
    transform: translateY(-50%);
}

.widget-width-presets label:has(input[value="fixed"]) > span::before {
    inset: 8px 10px;
}

.widget-width-presets small {
    font-size: 13px;
    font-weight: 750;
    text-align: left;
}

.widget-custom-color {
    display: grid;
    gap: 8px;
}

.widget-config-form:has(input[name="width_mode"][value="auto"]:checked) [data-widget-fixed-width-field] {
    opacity: 0.48;
}

.widget-config-form:has(input[name="width_mode"][value="auto"]:checked) [data-widget-fixed-width-field] input {
    pointer-events: none;
}

.widget-toggle-grid {
    display: grid;
    gap: 10px;
}

.widget-toggle-card {
    margin: 0;
}

.widget-plus-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 7px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fff1e7;
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.2;
    vertical-align: middle;
}

.widget-preview-frame {
    width: 100%;
    min-height: 220px;
    border: 0;
    background: transparent;
}

.widget-preview-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-preview-toolbar .active {
    border-color: rgba(255, 122, 21, 0.5);
    background: #fff7f0;
    color: var(--orange);
}

.widget-preview-shell {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    transition: max-width 0.2s ease;
}

.widget-preview-shell.is-desktop {
    max-width: 920px;
}

.widget-preview-shell.is-mobile {
    max-width: 430px;
}

.widget-preview-shell.is-sidebar {
    max-width: 320px;
}

.widget-embed-panel textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #f8fafc;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    resize: vertical;
}

.text-danger-button {
    border: 0;
    background: transparent;
    color: var(--danger);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.account-email-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.account-email-panel strong,
.account-email-panel p {
    display: block;
    margin: 0;
}

.account-email-panel p {
    color: var(--muted);
}

.claim-page {
    min-height: 620px;
    padding: 70px 0 110px;
    border-top: 1px solid #f3f3f3;
    background:
        linear-gradient(90deg, rgba(255, 122, 21, 0.08) 0 12px, transparent 12px),
        linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.claim-shell {
    width: min(1120px, calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: start;
}

.claim-intro,
.claim-card,
.claim-confirm-card,
.claim-welcome-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(32, 34, 41, 0.07);
}

.claim-intro {
    display: grid;
    gap: 20px;
    padding: 42px;
}

.claim-intro h1,
.claim-confirm-card h1,
.claim-welcome-copy h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
}

.claim-intro p,
.claim-confirm-card p,
.claim-welcome-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.claim-benefits,
.claim-next-steps {
    display: grid;
    gap: 12px;
}

.claim-benefits article,
.claim-next-steps article {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: #fff7f0;
}

.claim-benefits article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.claim-benefit-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--orange);
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 122, 21, 0.22);
}

.claim-benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.claim-benefits strong,
.claim-next-steps strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
}

.claim-benefits span,
.claim-next-steps span {
    color: var(--muted);
}

.claim-benefits .claim-benefit-icon {
    color: var(--orange);
}

.claim-benefits article > span:last-child {
    display: grid;
    gap: 4px;
}

.claim-card {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.claim-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.15;
}

.claim-card label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.claim-card input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.claim-card small,
.claim-domain-help {
    color: var(--muted);
}

.claim-domain-help {
    margin: 0;
    padding: 13px 15px;
    border-radius: 8px;
    background: #f0faf4;
}

.claim-domain-help strong {
    color: var(--green);
}

.claim-alert {
    padding: 14px 16px;
    border-radius: 8px;
    background: #fff1e7;
    color: var(--orange);
    font-weight: 800;
}

.claim-cost-notice {
    display: grid;
    gap: 5px;
    padding: 15px 16px;
    border: 1px solid #ffd7bd;
    border-radius: 8px;
    background: #fff8f2;
    color: var(--ink);
}

.claim-cost-notice p,
.claim-cost-notice small {
    margin: 0;
    line-height: 1.5;
}

.claim-card .claim-cost-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
    text-transform: none;
}

.claim-card .claim-cost-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    padding: 0;
}

.claim-confirm-card {
    width: min(720px, calc(100vw - 40px));
    margin: 0 auto;
    display: grid;
    gap: 18px;
    padding: 42px;
}

.claim-welcome-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: center;
    padding: 36px;
}

.claim-welcome-copy {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.claim-party-visual {
    position: relative;
    width: 280px;
    height: 320px;
    justify-self: center;
}

.claim-party-visual::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    height: 80px;
    border-radius: 999px;
    background: #fff4ed;
}

.hero-party {
    top: 24px;
}

.party-hat {
    left: 82px;
    top: -21px;
    z-index: 2;
    width: 34px;
    height: 42px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, #ffcf54 0 45%, var(--orange) 45% 65%, #35a869 65%);
    transform: rotate(7deg);
}

.owner-edit-hero {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.owner-edit-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.owner-edit-form {
    display: grid;
    gap: 20px;
}

.owner-form-section {
    gap: 18px;
}

.owner-section-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.owner-step-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    border: 1px solid #ffd7bd;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
    color: var(--orange);
}

.owner-step-icon svg {
    width: 23px;
    height: 23px;
}

.owner-form-help {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

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

.owner-option-card {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.owner-option-card:hover {
    border-color: #f4c3a1;
    background: #fffaf6;
    transform: translateY(-1px);
}

.owner-option-card input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

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

.owner-option-card small {
    color: var(--muted);
    font-weight: 700;
}

.shipping-method-option {
    grid-template-columns: auto 64px minmax(0, 1fr);
}

.shipping-method-option img {
    width: 64px;
    height: 38px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}

.shop-logo-edit-row {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.shop-logo-edit-field {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: #fffaf6;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-logo-edit-field img,
.shop-logo-placeholder {
    width: 170px;
    height: 96px;
    justify-self: center;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
}

.shop-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 34px;
    font-weight: 900;
}

.shop-logo-edit-field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.shop-logo-edit-field small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
}

.shop-logo-copy-fields {
    display: grid;
    gap: 14px;
}

.entrepreneur-edit-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.entrepreneur-photo-field {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: #fffaf6;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.entrepreneur-photo-field img,
.entrepreneur-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    justify-self: center;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 12px 30px rgba(29, 35, 42, 0.1);
}

.entrepreneur-photo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--orange);
    font-size: 18px;
}

.entrepreneur-photo-field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.entrepreneur-photo-field small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
}

.entrepreneur-text-fields {
    display: grid;
    gap: 14px;
}

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

.owner-textarea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-field-grid label,
.owner-textarea-grid label,
.owner-full-field {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.owner-field-grid input,
.owner-field-grid select,
.owner-textarea-grid textarea,
.owner-full-field textarea,
.owner-full-field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.owner-field-grid select {
    min-height: 50px;
}

.owner-textarea-grid textarea,
.owner-full-field textarea {
    resize: vertical;
    min-height: 116px;
}

.shipping-cost-group {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.9fr);
    gap: 12px 14px;
    align-items: end;
    padding: 16px;
    border: 1px solid #f4c3a1;
    border-radius: 8px;
    background: #fffaf6;
}

.shipping-cost-group label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shipping-cost-group input,
.shipping-cost-group select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-transform: none;
}

.shipping-cost-note {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.shipping-cost-dependent-field[hidden] {
    display: none;
}

.owner-save-bar {
    position: sticky;
    bottom: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid #f4c3a1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 54px rgba(32, 34, 41, 0.12);
}

.owner-save-bar strong,
.owner-save-bar span {
    display: block;
}

.owner-save-bar span {
    color: var(--muted);
}

.dashboard-list-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.hero-yoga span,
.hero-yoga i,
.scan-orbit,
.scan-bubble {
    position: absolute;
    display: block;
}

.hero-cape {
    left: 42px;
    top: 82px;
    width: 104px;
    height: 170px;
    border-radius: 46px 46px 72px 72px;
    background: #24864c;
    transform: skewX(-6deg);
    box-shadow: inset -18px 0 0 rgba(0, 0, 0, 0.08);
}

.hero-head {
    left: 58px;
    top: 0;
    width: 78px;
    height: 78px;
    overflow: hidden;
    border-radius: 24px 24px 30px 30px;
    background: #ffc48a;
    box-shadow: inset -8px -6px 0 rgba(222, 137, 68, 0.18);
}

.hero-head::before {
    content: "";
    position: absolute;
    left: -6px;
    top: -10px;
    width: 88px;
    height: 34px;
    border-radius: 30px 30px 16px 16px;
    background: #25272d;
    transform: rotate(-5deg);
}

.hero-head::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 55px;
    width: 24px;
    height: 7px;
    border-bottom: 3px solid #7b5542;
    border-radius: 0 0 20px 20px;
}

.hero-head i {
    left: 17px;
    top: 41px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(237, 133, 80, 0.24);
    box-shadow: 34px 0 0 rgba(237, 133, 80, 0.24);
}

.hero-mask {
    left: 58px;
    top: 30px;
    width: 78px;
    height: 22px;
    border-radius: 10px;
    background: #188953;
}

.hero-mask::before,
.hero-mask::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 10px;
    height: 6px;
    border-radius: 999px;
    background: #fff;
}

.hero-mask::before {
    left: 18px;
}

.hero-mask::after {
    right: 18px;
}

.hero-body {
    left: 42px;
    top: 78px;
    width: 108px;
    height: 92px;
    border-radius: 16px 16px 22px 22px;
    background: var(--orange);
    box-shadow: inset -12px -8px 0 rgba(214, 82, 0, 0.16);
}

.hero-body::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 25px;
    width: 38px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-body i {
    left: 45px;
    top: 31px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.hero-body i::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid rgba(255, 255, 255, 0.42);
    border-bottom: 2px solid rgba(255, 255, 255, 0.42);
    transform: rotate(42deg);
}

.hero-arm {
    top: 86px;
    width: 16px;
    height: 112px;
    border-radius: 999px;
    background: var(--orange);
    transform-origin: top center;
}

.hero-arm-left {
    left: 36px;
    transform: rotate(142deg);
    animation: arm-left-yoga 2.8s ease-in-out infinite;
}

.hero-arm-right {
    right: 34px;
    transform: rotate(-142deg);
    animation: arm-right-yoga 2.8s ease-in-out infinite;
}

.hero-arm::after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: -13px;
    width: 25px;
    height: 24px;
    border-radius: 999px;
    background: #ffc48a;
}

.hero-leg {
    top: 158px;
    width: 18px;
    height: 116px;
    border-radius: 999px;
    background: var(--orange);
    transform-origin: top center;
}

.hero-leg-left {
    left: 70px;
    transform: rotate(34deg);
}

.hero-leg-right {
    right: 68px;
    height: 106px;
    transform: rotate(-56deg);
    animation: leg-yoga 2.8s ease-in-out infinite;
}

.hero-leg::after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: -8px;
    width: 30px;
    height: 14px;
    border-radius: 999px;
    background: #24935a;
}

.hero-shadow {
    left: 20px;
    bottom: 0;
    width: 150px;
    height: 16px;
    border-radius: 999px;
    background: rgba(32, 34, 41, 0.12);
    animation: shadow-breathe 2.8s ease-in-out infinite;
}

.scan-orbit {
    border: 1px solid rgba(255, 122, 21, 0.22);
    border-radius: 999px;
}

.scan-orbit-one {
    inset: 44px 22px 42px;
    animation: scan-spin 9s linear infinite;
}

.scan-orbit-two {
    inset: 74px 54px 72px;
    animation: scan-spin 7s linear infinite reverse;
}

.scan-bubble {
    min-width: 54px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border: 1px solid #f5cfb7;
    border-radius: 999px;
    background: #fff;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 122, 21, 0.12);
    animation: bubble-float 2.6s ease-in-out infinite;
}

.scan-bubble-one {
    left: 4px;
    top: 76px;
}

.scan-bubble-two {
    right: -10px;
    top: 132px;
    animation-delay: 0.35s;
}

.scan-bubble-three {
    left: 36px;
    bottom: 78px;
    animation-delay: 0.7s;
}

@keyframes scan-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scan-progress {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(325%);
    }
}

@keyframes scan-progress-shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes scan-progress-breathe {
    50% {
        filter: saturate(1.15) brightness(1.08);
    }
}

@keyframes scan-stage-change {
    from {
        opacity: 0.35;
        transform: translateY(2px);
    }
}

@keyframes scan-pulse {
    50% {
        box-shadow: 0 0 0 8px rgba(255, 122, 21, 0.12);
    }
}

@keyframes hero-breathe {
    50% {
        transform: translateX(-50%) translateY(-8px) rotate(-1deg);
    }
}

@keyframes arm-left-yoga {
    50% {
        transform: rotate(128deg);
    }
}

@keyframes arm-right-yoga {
    50% {
        transform: rotate(-128deg);
    }
}

@keyframes leg-yoga {
    50% {
        transform: rotate(-66deg) translateY(-3px);
    }
}

@keyframes shadow-breathe {
    50% {
        transform: scaleX(0.86);
        opacity: 0.65;
    }
}

@keyframes bubble-float {
    50% {
        transform: translateY(-9px);
    }
}

.shop-hero {
    border-top: 1px solid #f3f3f3;
    background: #fff;
}

.shop-hero-inner {
    width: min(var(--max), calc(100vw - 80px));
    min-height: 292px;
    display: grid;
    grid-template-columns: 160px 1fr 290px;
    gap: 48px;
    align-items: center;
    margin: 0 auto;
}

.shop-mark {
    width: 126px;
    height: 110px;
    display: grid;
    align-content: center;
    justify-items: center;
    border: 4px solid var(--score-color, var(--lime));
    color: var(--score-color, var(--green));
    text-align: center;
}

.shop-mark span {
    max-width: 112px;
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
}

.shop-mark strong {
    margin-top: 6px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1;
}

.shop-mark small {
    margin-top: 14px;
    color: #fff;
    background: var(--score-color, var(--lime));
    width: 100%;
    padding: 4px 2px;
    font-size: 10px;
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    color: #b6bdbf;
    font-size: 12px;
}

.breadcrumb a {
    color: #8d979a;
    font-weight: 800;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    color: var(--orange);
}

.shop-intro h1 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 31px;
    line-height: 1.1;
}

.shop-intro p {
    max-width: 680px;
    margin: 0 0 18px;
    color: var(--muted);
}

.owner-box {
    grid-column: 3;
    grid-row: 1;
    padding: 24px;
    background: var(--pale);
}

.owner-box strong {
    display: block;
    margin-bottom: 8px;
}

.owner-box p {
    margin: 0 0 12px;
    color: var(--muted);
}

.owner-box a {
    color: var(--orange);
    font-weight: 800;
}

.shop-verdict {
    margin-bottom: 34px;
    padding: 28px 30px 24px;
    border: 1px solid rgba(0, 19, 34, 0.09);
    border-top: 4px solid var(--score-color, var(--green));
    border-radius: 10px;
    background: #fafcfb;
}

.shop-verdict-copy h2,
.shop-verdict-copy p {
    margin: 0;
}

.shop-verdict-copy h2 {
    margin-top: 6px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.25;
}

.shop-verdict-copy p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.shop-verdict-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.shop-verdict-signal {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 2px 18px;
    border-left: 1px solid var(--line);
    color: var(--ink);
    line-height: 1.35;
}

.shop-verdict-signal:first-child {
    padding-left: 0;
    border-left: 0;
}

.shop-verdict-signal:last-child {
    padding-right: 0;
}

.shop-verdict-status {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #9aa3a8;
}

.shop-verdict-signal.positive .shop-verdict-status {
    background: var(--green);
}

.shop-verdict-signal.warning .shop-verdict-status {
    background: var(--danger);
}

.shop-verdict-signal-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.shop-verdict-signal-copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.shop-verdict-signal-copy strong {
    overflow-wrap: anywhere;
    font-size: 13px;
    font-weight: 850;
}

.shop-verdict-arrow {
    color: var(--orange);
    font-size: 22px;
    line-height: 1;
    transition: transform 0.18s ease;
}

.shop-verdict-signal:hover .shop-verdict-arrow,
.shop-verdict-signal:focus-visible .shop-verdict-arrow {
    transform: translateX(3px);
}

.shop-verdict-costs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 28px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.shop-verdict-costs-kicker {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.shop-verdict-cost {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.shop-verdict-cost small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}

.shop-verdict-cost strong {
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
}

.score-intro a {
    color: var(--orange);
    font-weight: 800;
}

.profile-tabs {
    min-height: 50px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    background: var(--tab);
    text-align: center;
}

.profile-tabs a {
    color: #aeb7bb;
    font-size: 13px;
    font-weight: 700;
}

.shop-layout {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 58px;
    margin: 0 auto;
    padding: 72px 0 108px;
}

.shop-main {
    min-width: 0;
}

.unclaimed-profile-cta {
    padding: 0 0 88px;
}

.unclaimed-profile-cta-inner {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
    gap: 36px;
    align-items: center;
    margin: 0 auto;
    padding: 34px 42px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: var(--pale);
}

.unclaimed-profile-cta-copy {
    min-width: 0;
}

.unclaimed-profile-cta-copy h2 {
    margin: 20px 0 12px;
    font-size: 38px;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.unclaimed-profile-cta-copy > p {
    max-width: 430px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 21px;
    line-height: 1.45;
}

.unclaimed-profile-cta-actions {
    display: grid;
    justify-items: start;
    gap: 12px;
    margin-top: 28px;
}

.unclaimed-profile-cta-actions .pill-button {
    min-height: 48px;
    max-width: 100%;
    gap: 10px;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
}

.unclaimed-profile-cta-actions .pill-button svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.unclaimed-profile-cta-link {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
}

.unclaimed-profile-cta-link span {
    margin-left: 3px;
    font-size: 18px;
    line-height: 1;
}

.unclaimed-profile-hub {
    position: relative;
    min-width: 0;
    min-height: 460px;
}

.unclaimed-profile-hub-card {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 232px;
    height: 160px;
    min-height: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    padding: 20px 18px 18px;
    overflow: hidden;
    border: 1px solid #efcdb7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 19, 34, 0.11);
    text-align: center;
    transform: translate(-50%, -50%);
}

.unclaimed-profile-hub-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--orange);
    content: '';
}

.unclaimed-profile-hub-card img {
    width: auto;
    max-width: 150px;
    height: 42px;
    margin: 2px 0 3px;
    object-fit: contain;
}

.unclaimed-profile-hub-card strong {
    max-width: 100%;
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.unclaimed-profile-hub-card > span:last-child {
    color: var(--muted);
    font-size: 12px;
}

.unclaimed-profile-benefit {
    position: absolute;
    z-index: 2;
    width: 150px;
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
}

.unclaimed-profile-benefit.benefit-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.unclaimed-profile-benefit.benefit-right {
    top: 50%;
    right: 0;
    transform: translateY(-29px);
}

.unclaimed-profile-benefit.benefit-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.unclaimed-profile-benefit.benefit-left {
    top: 50%;
    left: 0;
    transform: translateY(-29px);
}

.unclaimed-profile-benefit-icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #cfe8d7;
    border-radius: 50%;
    background: #edf8f1;
    color: var(--green);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.82), 0 8px 18px rgba(0, 19, 34, 0.08);
}

.benefit-right .unclaimed-profile-benefit-icon {
    border-color: #e2d8f8;
    background: #f4f0fc;
    color: #7e55d9;
}

.benefit-bottom .unclaimed-profile-benefit-icon {
    border-color: #cfe0f5;
    background: #eef5fc;
    color: #347ed5;
}

.benefit-left .unclaimed-profile-benefit-icon {
    border-color: #f3c8aa;
    background: #fff3ea;
    color: var(--orange);
}

.unclaimed-profile-benefit-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.unclaimed-profile-benefit h3 {
    margin: 1px 0 4px;
    font-size: 15px;
    line-height: 1.3;
}

.unclaimed-profile-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.unclaimed-profile-hub-line {
    position: absolute;
    z-index: 1;
    display: block;
    border-color: var(--orange);
    opacity: 0.8;
}

.unclaimed-profile-hub-line::after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    content: '';
}

.unclaimed-profile-hub-line::before {
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    background: var(--pale);
    content: '';
}

.unclaimed-profile-hub-line.line-top,
.unclaimed-profile-hub-line.line-bottom {
    left: 50%;
    height: 27px;
    border-left: 2px dotted var(--orange);
}

.unclaimed-profile-hub-line.line-top {
    top: 123px;
}

.unclaimed-profile-hub-line.line-top::after {
    bottom: -2px;
    left: -3px;
}

.unclaimed-profile-hub-line.line-top::before {
    top: -2px;
    left: -4px;
}

.unclaimed-profile-hub-line.line-bottom {
    bottom: 123px;
}

.unclaimed-profile-hub-line.line-bottom::after {
    top: -2px;
    left: -3px;
}

.unclaimed-profile-hub-line.line-bottom::before {
    right: auto;
    bottom: -2px;
    left: -4px;
}

.unclaimed-profile-hub-line.line-right,
.unclaimed-profile-hub-line.line-left {
    top: 50%;
    width: calc(50% - 260px);
    border-top: 2px dotted var(--orange);
}

.unclaimed-profile-hub-line.line-right {
    right: 150px;
}

.unclaimed-profile-hub-line.line-right::after {
    top: -3px;
    left: -2px;
}

.unclaimed-profile-hub-line.line-right::before {
    top: -4px;
    right: -2px;
}

.unclaimed-profile-hub-line.line-left {
    left: 150px;
}

.unclaimed-profile-hub-line.line-left::after {
    top: -3px;
    right: -2px;
}

.unclaimed-profile-hub-line.line-left::before {
    top: -4px;
    left: -2px;
}

.scan-profile-alert {
    display: grid;
    gap: 7px;
    margin-bottom: 34px;
    padding: 18px 22px;
    border: 1px solid #ffd2b5;
    border-radius: 8px;
    background: #fff7f1;
}

.scan-profile-alert strong {
    color: var(--orange);
    font-size: 18px;
}

.scan-profile-alert p {
    margin: 0;
    color: var(--ink);
}

.scan-profile-alert span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.manual-review {
    position: relative;
    overflow: hidden;
    margin-bottom: 42px;
    padding: 30px 32px 26px;
    border: 1px solid #bee2d2;
    border-radius: 22px;
    background: linear-gradient(135deg, #eaf8f0 0%, #f9fdfa 48%, #ffffff 100%);
    box-shadow: 0 14px 32px rgba(29, 107, 79, 0.12);
}

.manual-review::before {
    position: absolute;
    top: -78px;
    right: -54px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(48, 157, 111, 0.09);
    content: '';
}

.manual-review-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.manual-review-title-group {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 13px;
}

.manual-review-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    flex: 0 0 46px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(29, 107, 79, 0.13);
}

.manual-review-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.manual-review-kicker {
    display: block;
    color: #227454;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.manual-review-badge {
    position: relative;
    z-index: 1;
    padding: 6px 10px;
    border: 1px solid #b8ddcd;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #227454;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.manual-review h2 {
    margin: 0;
    color: var(--ink);
    font-size: 25px;
}

.manual-review-body {
    position: relative;
    z-index: 1;
    color: var(--ink);
    line-height: 1.75;
}

.manual-review-body p {
    margin: 0;
}

.manual-review-body p + p {
    margin-top: 14px;
}

.manual-review-date {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #cbe7da;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.score-section {
    margin-bottom: 44px;
}

.score-intro {
    margin: 8px 0 34px;
    color: var(--muted);
}

.check-block-list {
    display: grid;
    gap: 42px;
}

.check-block-summary {
    display: grid;
    gap: 12px;
    cursor: pointer;
    list-style: none;
}

.check-block-summary::-webkit-details-marker {
    display: none;
}

.check-block-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.check-block-label-text {
    min-width: 0;
}

.check-block .check-help-link {
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--orange);
    border-radius: 999px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.check-block .check-help-link:hover,
.check-block .check-help-link:focus-visible {
    background: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}

.check-block-chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-left: auto;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.check-block-toggle[open] .check-block-chevron {
    transform: rotate(225deg) translateY(-2px);
}

.check-block-head .robot-icon {
    position: relative;
    width: 20px;
    height: 16px;
    flex: 0 0 20px;
    border: 2px solid var(--orange);
    border-radius: 6px;
    background: #fff;
}

.check-block-head .robot-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 2px;
    height: 6px;
    background: var(--orange);
    transform: translateX(-50%);
}

.check-block-head .robot-icon::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 7px 0 0 var(--orange);
}

.check-block-card {
    overflow: hidden;
    border-radius: 16px;
    background: var(--check-bg);
}

.check-block-toggle[open] .check-block-summary .check-block-card {
    border-radius: 16px 16px 0 0;
}

.check-block-head {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 18px 24px;
    background: var(--check-head);
    color: var(--check-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

.check-block-head > span:first-child {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 999px;
    background: currentColor;
}

.check-block-head strong {
    min-width: 0;
}

.check-block-body {
    padding: 24px;
    color: var(--ink);
    font-size: 17px;
    background: var(--check-bg);
    border-radius: 0 0 16px 16px;
}

.check-block-body > p,
.check-block-body address {
    margin: 0 0 24px;
}

.check-block-good {
    --check-color: var(--green);
    --check-head: #d8f0df;
    --check-bg: #eaf8f0;
}

.check-block-warn {
    --check-color: var(--orange);
    --check-head: #ffe5d6;
    --check-bg: #fff0e8;
}

.check-block-bad {
    --check-color: var(--danger);
    --check-head: #ffdfe2;
    --check-bg: #fff0f2;
}

.check-block-unknown {
    --check-color: var(--ink);
    --check-head: #e6ebed;
    --check-bg: #f7f8f8;
}

.check-detail-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 22px;
    padding: 0;
    list-style: none;
}

.check-detail-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
}

.check-detail-list strong {
    color: var(--check-color);
}

.check-tip {
    display: grid;
    gap: 8px;
    padding: 20px 24px;
    border-radius: 8px;
    background: #fff;
}

.check-tip strong {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-weight: 500;
}

.check-tip strong::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--orange);
}

.check-tip p {
    margin: 0;
}

.report-overview {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
}

.report-overview-item {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 19, 34, 0.07);
    border-left: 4px solid var(--check-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.report-overview-item strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.25;
}

.report-overview-item span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.report-overview-item p {
    margin: 2px 0 0;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
}

.report-overview-item a {
    width: fit-content;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.community-report-overview-item {
    border-left-color: var(--orange);
}

.check-icons,
.review-source-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 6px 0 24px;
}

.check-icons > span:not(.certification-logo),
.check-icons > a:not(.certification-logo) {
    min-height: 54px;
    display: inline-grid;
    align-content: center;
    gap: 2px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}

.check-icons .certification-logo {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
}

.check-icons a.certification-logo {
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.check-icons a.certification-logo:hover,
.check-icons a.certification-logo:focus-visible {
    border-color: rgba(241, 131, 56, 0.35);
    box-shadow: 0 8px 20px rgba(0, 19, 34, 0.08);
    transform: translateY(-1px);
}

.certification-logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.review-source-icons small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.review-source-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    align-items: stretch;
    gap: 18px;
}

.review-source-card {
    position: relative;
    min-height: 194px;
    display: grid;
    grid-template-rows: auto auto 1px auto;
    gap: 15px;
    align-content: start;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 19, 34, 0.075);
    border-radius: 20px;
    background:
        radial-gradient(circle at 21% 17%, color-mix(in srgb, var(--source-accent) 8%, transparent), transparent 36%),
        linear-gradient(180deg, #fff 0%, #fbfcfc 100%);
    box-shadow: 0 8px 18px rgba(0, 19, 34, 0.045);
    color: inherit;
    text-decoration: none;
}

.review-source-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: var(--source-accent);
}

a.review-source-card {
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

a.review-source-card:hover,
a.review-source-card:focus-visible {
    border-color: color-mix(in srgb, var(--source-accent) 32%, rgba(0, 19, 34, 0.08));
    box-shadow: 0 10px 22px rgba(0, 19, 34, 0.065);
    transform: translateY(-1px);
}

.review-source-top {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 18px;
}

.review-source-logo {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 19, 34, 0.06);
}

.review-source-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.review-source-icons .review-source-score,
.review-source-icons .review-source-name,
.review-source-icons .review-source-top,
.review-source-icons .review-source-foot,
.review-source-icons .review-source-stars,
.review-source-icons .review-source-divider {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.review-source-icons .review-source-score {
    color: var(--ink);
    font-size: 46px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
}

.review-source-stars {
    position: relative;
    width: 128px;
    height: 24px;
    display: inline-block;
    color: #d8dde0;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1px;
}

.review-source-stars::before,
.review-source-stars::after {
    content: "★★★★★";
    position: absolute;
    inset: 0;
}

.review-source-stars::after {
    width: var(--source-stars);
    overflow: hidden;
    color: var(--source-accent);
}

.review-source-divider {
    display: block;
    width: 100%;
    border-top: 1px dashed rgba(0, 19, 34, 0.13);
}

.review-source-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.review-source-icons .review-source-name {
    overflow: hidden;
    color: var(--ink);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-source-card small {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 19, 34, 0.04);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.review-check-block .check-block-body > p {
    max-width: 720px;
}

.review-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 32px;
    align-items: center;
    margin-bottom: 24px;
}

.risk-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 32px;
    align-items: center;
}

.risk-detail-grid p {
    max-width: 740px;
    margin: 0;
}

.ai-risk-block .check-block-card {
    box-shadow: inset 0 0 0 1px rgba(255, 128, 22, .08);
}

.ai-risk-block .ai-badge {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    margin-left: auto;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 4px 10px;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.ai-risk-block .ai-badge + .check-block-chevron {
    margin-left: 8px;
}

.review-detail-grid .review-source-icons {
    align-content: start;
    margin: 0;
}

.review-detail-grid .review-source-icons .review-source-card {
    min-width: 220px;
}

.review-gauge {
    position: relative;
    justify-self: end;
    width: 210px;
    height: 132px;
    overflow: hidden;
}

.review-gauge-arc {
    position: absolute;
    inset: 0 0 auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: conic-gradient(from 270deg, #e94232 0deg 58deg, #ffb42f 58deg 128deg, #74b95b 128deg 180deg, transparent 180deg 360deg);
}

.review-gauge-inner {
    position: absolute;
    left: 31px;
    top: 31px;
    width: 148px;
    height: 148px;
    border-radius: 999px;
    background: var(--check-bg);
}

.review-gauge-needle {
    position: absolute;
    left: 101px;
    bottom: 20px;
    width: 8px;
    height: 92px;
    border-radius: 999px 999px 2px 2px;
    background: var(--ink);
    transform: rotate(var(--needle-angle));
    transform-origin: 50% calc(100% - 4px);
}

.review-gauge-center {
    position: absolute;
    left: 87px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    border: 8px solid var(--ink);
    border-radius: 999px;
    background: #fff;
}

.review-gauge-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 43px;
    display: grid;
    justify-items: center;
    pointer-events: none;
}

.review-gauge-label strong {
    color: var(--orange);
    font-size: 25px;
    line-height: 1;
}

.review-gauge-label span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.risk-gauge .review-gauge-arc {
    background: conic-gradient(from 270deg, #2fa05a 0deg 2deg, #ffb42f 2deg 126deg, #e94232 126deg 180deg, transparent 180deg 360deg);
}

.risk-gauge .review-gauge-label strong {
    color: var(--check-color);
}

.check-note {
    margin: -8px 0 0;
    color: var(--muted);
}

.support-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 48px 0;
}

.support-row article {
    min-width: 0;
    padding: 24px 26px;
    border: 1px solid var(--line);
    background: #fff;
}

.support-row-wide {
    grid-column: 1 / -1;
}

.profile-ad-card {
    display: grid;
    align-content: center;
    min-height: 100%;
}

.profile-ad-card .adsbygoogle {
    width: 100%;
    min-height: 100%;
}

.support-row h3,
.sidebar-card h3,
.product-card h3,
.faq-grid h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.25;
}

.support-row p,
.sidebar-card p,
.product-card p,
.faq-grid p,
.messages-band p,
.community-section p {
    color: var(--muted);
}

.support-row a:not(.pill-button) {
    color: var(--orange);
    font-weight: 800;
}

.about-band,
.messages-band {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 58px;
    margin: 70px 0;
    padding: 62px 56px;
    background: var(--pale);
    border-left: 8px solid var(--orange);
}

.about-band > img {
    align-self: center;
    width: 100%;
    aspect-ratio: 1.4;
    object-fit: cover;
}

.entrepreneur-profile-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff 0%, #fff8f2 100%);
}

.entrepreneur-profile-card > img,
.entrepreneur-profile-fallback {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 12px 28px rgba(29, 35, 42, 0.1);
}

.entrepreneur-profile-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 44px;
    font-weight: 900;
}

.entrepreneur-profile-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 26px;
}

.entrepreneur-profile-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.shop-info-panel {
    grid-column: 1 / -1;
    display: grid;
    gap: 22px;
    margin-top: 12px;
    padding: 28px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: #fff;
}

.shop-info-panel-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 28px;
}

.shop-info-panel-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-info-panel-head h3 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
}

.shop-info-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.shop-info-highlight {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--panel);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.shop-info-highlight.good {
    background: #eaf8f0;
    color: var(--green);
}

.shop-info-highlight.warn {
    background: #fff2e8;
    color: var(--orange);
}

.shop-info-tabs {
    position: relative;
    display: grid;
    gap: 20px;
}

.shop-info-tabs > input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.shop-info-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    width: fit-content;
}

.shop-info-tab-list label {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.shop-info-tabs input[id$="-payment"]:checked ~ .shop-info-tab-list label[for$="-payment"],
.shop-info-tabs input[id$="-shipping"]:checked ~ .shop-info-tab-list label[for$="-shipping"],
.shop-info-tabs input[id$="-returns"]:checked ~ .shop-info-tab-list label[for$="-returns"],
.shop-info-tabs input[id$="-sustainability"]:checked ~ .shop-info-tab-list label[for$="-sustainability"] {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 5px 16px rgba(0, 19, 34, 0.08);
}

.shop-info-tab-panel {
    display: none;
}

.shop-info-tabs input[id$="-payment"]:checked ~ .payment-panel,
.shop-info-tabs input[id$="-shipping"]:checked ~ .shipping-panel,
.shop-info-tabs input[id$="-returns"]:checked ~ .returns-panel,
.shop-info-tabs input[id$="-sustainability"]:checked ~ .sustainability-panel {
    display: grid;
    gap: 18px;
}

.commerce-chip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.commerce-chip {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.commerce-chip-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--panel);
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.commerce-chip strong {
    display: block;
    color: var(--ink);
    line-height: 1.2;
}

.commerce-chip small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.commerce-chip.good {
    border-color: #cfead7;
    background: #f4fbf6;
}

.commerce-chip.good .commerce-chip-icon {
    background: #dff4e6;
    color: var(--green);
}

.shipping-chip {
    min-height: 68px;
}

.shipping-chip img {
    width: 76px;
    height: 44px;
    flex: 0 0 76px;
    object-fit: contain;
    padding: 5px;
    border: 1px solid #eef0f0;
    border-radius: 7px;
    background: #fff;
}

.shop-info-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.shop-info-stat {
    padding: 17px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.shop-info-stat span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-info-stat strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
}

.shop-info-stat small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.shop-info-stat.good {
    border-color: #cfead7;
    background: #f0faf4;
}

.shop-info-stat.good strong {
    color: var(--green);
}

.shop-info-stat.warn {
    border-color: #ffd9bf;
    background: #fff5ee;
}

.shop-info-stat.warn strong {
    color: var(--orange);
}

.contact-source-note {
    margin: 10px 0 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}

.shop-info-note {
    margin: 0;
    padding: 16px 18px;
    border-radius: 8px;
    background: var(--pale);
    color: var(--muted);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.sustainability-card,
.sustainability-explanation {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border: 1px solid #d6ecd9;
    border-radius: 8px;
    background: linear-gradient(180deg, #f5fbf6, #fff);
}

.sustainability-explanation {
    border-color: #dbe8df;
    background: #f7fbf8;
}

.sustainability-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #e4f6e8;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.sustainability-icon-packaging,
.sustainability-icon-delivery {
    background: #fff2e8;
    color: var(--orange);
}

.sustainability-card strong,
.sustainability-explanation strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    line-height: 1.2;
}

.sustainability-card p,
.sustainability-explanation p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.faq-section,
.products-section,
.community-section {
    margin: 70px 0;
}

.profile-faq-ad {
    width: 100%;
    min-height: 180px;
    display: grid;
    align-content: center;
    margin: 70px 0 -22px;
}

.profile-faq-ad .adsbygoogle {
    width: 100%;
    min-height: 180px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 54px;
    margin-top: 34px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 38px;
}

.product-card {
    display: grid;
    align-content: start;
    text-align: center;
}

.product-card img {
    height: 170px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.product-placeholder {
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 8px;
    background: var(--pale);
    color: var(--orange);
    font-size: 54px;
    font-weight: 800;
}

.product-card strong {
    display: block;
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 15px;
}

.product-card a {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}

.empty-products {
    margin-top: 28px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    background: var(--pale);
}

.empty-products strong {
    color: var(--ink);
}

.empty-products p {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--muted);
}

.messages-band {
    grid-template-columns: 1fr;
}

.message-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid #f0d9cc;
}

.message-item span {
    color: var(--muted);
    font-size: 12px;
}

.related-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}

.community-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 60px;
}

.community-section-highlight {
    padding: 56px;
    border-left: 8px solid var(--orange);
    background: var(--pale);
}

.community-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.community-list article {
    padding: 18px 20px;
    background: var(--panel);
}

.community-list article.community-warning {
    background: #fff0f2;
}

.community-list article.community-warning strong {
    color: var(--danger);
}

.community-list article.community-note {
    background: #f7f8f8;
}

.community-list article.community-empty-state {
    display: grid;
    gap: 6px;
    padding: 22px 24px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(29, 35, 42, 0.06);
}

.community-list article.community-empty-state strong {
    color: var(--ink);
    font-size: 18px;
}

.community-list span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.community-list p {
    margin: 8px 0 0;
}

.community-list article.community-thread-item {
    display: grid;
    gap: 12px;
    padding: 0;
    background: transparent;
    scroll-margin-top: 96px;
}

.community-thread-card {
    padding: 18px 20px;
    border-left: calc(var(--thread-level) * 4px) solid #f1dfd2;
    background: var(--panel);
}

.community-thread-item.community-warning .community-thread-card {
    background: #fff0f2;
}

.community-thread-item.community-warning .community-thread-card strong {
    color: var(--danger);
}

.community-thread-item.community-note .community-thread-card {
    background: #f7f8f8;
}

.community-thread-item .reply-form strong {
    color: var(--ink);
}

.community-thread-children {
    display: grid;
    gap: 12px;
    margin-left: 28px;
    padding-left: 18px;
    border-left: 1px solid #f1dfd2;
}

.community-reply-button,
.reply-cancel-button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.reply-form {
    margin-left: 28px;
    padding: 18px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: #fff;
}

.reply-form-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.report-form {
    display: grid;
    align-content: start;
    gap: 12px;
    max-width: none;
    scroll-margin-top: 96px;
}

.report-form[hidden] {
    display: none;
}

.report-form h2 {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: 0;
}

.report-form > p {
    max-width: none;
    margin: 0 0 8px;
    color: #657083;
    font-size: 15px;
    line-height: 1.55;
}

.report-field {
    position: relative;
    display: block;
}

.report-field input,
.report-field textarea {
    width: 100%;
    border: 1px solid #d8dee7;
    border-radius: 8px;
    padding: 13px 14px 13px 46px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.report-field input:focus,
.report-field textarea:focus {
    outline: none;
    border-color: rgba(241, 131, 56, 0.72);
    box-shadow: 0 0 0 4px rgba(241, 131, 56, 0.1);
}

.report-field input[aria-invalid="true"],
.report-field textarea[aria-invalid="true"] {
    border-color: #f0b29a;
    box-shadow: 0 0 0 3px rgba(241, 131, 56, 0.1);
}

.report-field textarea {
    min-height: 126px;
    resize: vertical;
}

.report-field-icon {
    position: absolute;
    top: 15px;
    left: 16px;
    z-index: 1;
    width: 20px;
    height: 20px;
    color: #6b7484;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.report-field-icon::before,
.report-field-icon::after {
    content: none;
}

.report-field-icon svg,
.report-type-icon svg,
.report-account-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.report-account-note {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    padding: 13px 14px;
    border: 1px solid #a7dfba;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fff9 0%, #eefaf2 100%);
    color: var(--green);
    font-weight: 900;
}

.report-account-note strong,
.report-account-note > span:not(.report-account-icon) {
    grid-column: 2;
}

.report-account-note strong {
    font-size: 15px;
}

.report-account-note span {
    color: #516173;
    font-size: 12px;
    font-weight: 600;
}

.report-account-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--green);
    border-radius: 50%;
    color: var(--green);
}

.report-account-icon::before {
    content: none;
}

.report-account-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.6;
}

.report-type-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.report-type-option {
    position: relative;
    min-height: 112px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
    padding: 14px 34px 14px 14px;
    border: 1px solid #d7dde6;
    border-radius: 8px;
    background: linear-gradient(145deg, #fff 0%, #fbfcfd 100%);
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.report-type-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.report-type-choice input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.report-type-copy {
    display: grid;
    gap: 5px;
}

.report-type-copy strong {
    color: #071426;
    font-size: 14px;
    line-height: 1.15;
}

.report-type-copy span {
    color: #596678;
    font-size: 12px;
    line-height: 1.35;
}

.warning-option:has(input:checked) {
    border-color: #ed1c24;
    background: linear-gradient(145deg, #fff 0%, #fff8f8 100%);
    box-shadow: 0 18px 40px rgba(237, 28, 36, 0.08);
}

.note-option:has(input:checked) {
    border-color: #9ca7ad;
    background: linear-gradient(145deg, #fff 0%, #f7f9fb 100%);
    box-shadow: 0 18px 40px rgba(82, 95, 108, 0.08);
}

.report-type-icon {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.note-icon {
    background: linear-gradient(145deg, #f7f9fb, #e9eef3);
    border: 1px solid #d7dde0;
    color: #657384;
}

.warning-icon {
    background: linear-gradient(145deg, #fff7f7, #ffe9e9);
    border: 1px solid #ffd2d2;
    color: #df4f52;
}

.note-icon::before,
.note-icon::after,
.warning-icon::before,
.warning-icon::after {
    content: none;
}

.report-type-icon svg {
    width: 25px;
    height: 25px;
}

.warning-icon svg {
    stroke-width: 2.3;
}

.report-radio-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    border: 2px solid #c7ced7;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.report-type-option:has(input:checked) .report-radio-indicator {
    border-color: #ed1c24;
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 2px rgba(237, 28, 36, 0.08);
    background: #ed1c24;
}

.note-option:has(input:checked) .report-radio-indicator {
    border-color: #6b7484;
    background: #6b7484;
}

.report-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    background: linear-gradient(135deg, #ff7c16 0%, #f26f12 100%);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(241, 131, 56, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.report-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(241, 131, 56, 0.28);
}

.related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.sidebar-related {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.sidebar-related a {
    justify-content: space-between;
    width: 100%;
    min-height: 38px;
    border-color: var(--line);
    border-radius: 8px;
    color: var(--ink);
}

.sidebar-related a::after {
    content: ">";
    color: var(--orange);
}

.shop-sidebar {
    position: sticky;
    top: 26px;
    align-self: start;
    display: grid;
    gap: 22px;
}

.sidebar-card {
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}

.update-card {
    border-color: #ffd2b5;
    background: #fff7f1;
}

.update-card .pill-button {
    margin-top: 12px;
}

.sidebar-card a.pill-button,
.sidebar-card a.pill-button:hover,
.sidebar-card a.pill-button:focus-visible {
    color: #fff;
}

.sidebar-card a.pill-button:hover {
    background: #e96f12;
}

.sidebar-card a.pill-button:focus-visible {
    outline: 3px solid rgba(255, 122, 21, 0.28);
    outline-offset: 3px;
}

.logo-card {
    min-height: 92px;
    display: grid;
    place-items: center;
}

.logo-card img {
    max-width: 170px;
    max-height: 76px;
    display: block;
    object-fit: contain;
}

.logo-card strong {
    font-size: 22px;
}

.sidebar-ad {
    width: 100%;
    min-height: 260px;
    margin: 0 auto;
}

.sidebar-ad .adsbygoogle {
    width: 100%;
    min-height: 260px;
}

.site-footer {
    color: #fff;
    background: var(--orange);
}

.footer-main {
    width: min(var(--max), calc(100vw - 80px));
    min-height: 240px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin: 0 auto;
}

.footer-brand,
.footer-brand strong {
    color: #fff;
}

.footer-main p {
    max-width: 420px;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 12px;
    font-weight: 800;
}

.footer-bottom {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: #fff;
    color: #8b9296;
    font-size: 12px;
}

.owner-sales-hero {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 58px;
    align-items: center;
    margin: 0 auto;
    padding: 42px 0 34px;
    border-top: 1px solid #f3f3f3;
}

.owner-sales-hero-copy h1 {
    max-width: 740px;
    margin: 12px 0 18px;
    color: var(--ink);
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1.02;
    font-weight: 900;
}

.owner-sales-hero-copy p {
    max-width: 760px;
    margin: 0 0 14px;
    color: #5f6d73;
    font-size: 16px;
    line-height: 1.72;
}

.owner-sales-hero-copy .owner-sales-lead {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.62;
}

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

.owner-sales-actions .pill-button,
.owner-sales-actions .outline-button,
.owner-sales-claim-card .search-form button {
    min-height: 46px;
    padding-inline: 24px;
    font-size: 13px;
}

.owner-sales-visual {
    min-height: 458px;
    display: grid;
    align-items: center;
    padding: 34px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(241, 131, 56, 0.12), rgba(47, 152, 79, 0.10)),
        #f8f9f9;
}

.trust-hub-card {
    border: 1px solid rgba(0, 19, 34, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(0, 19, 34, 0.14);
}

.trust-hub-preview {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: visible;
    background: #f5f6f2;
}

.trust-hub-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.owner-sales-strip {
    width: min(var(--max), calc(100vw - 80px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto 34px;
}

.owner-sales-strip article,
.owner-sales-feature-grid article,
.owner-sales-panel,
.owner-sales-widget-card,
.owner-sales-metric-grid article,
.owner-sales-claim-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(0, 19, 34, 0.05);
}

.owner-sales-strip article {
    padding: 20px;
}

.owner-sales-strip strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 17px;
}

.owner-sales-strip span {
    color: var(--muted);
}

.owner-sales-section,
.owner-sales-band,
.owner-sales-cta {
    width: min(var(--max), calc(100vw - 80px));
    margin: 0 auto;
}

.owner-sales-section {
    padding: 78px 0;
}

.owner-sales-section-head {
    max-width: 830px;
    margin-bottom: 34px;
}

.owner-sales-section-head h2,
.owner-sales-split h2,
.owner-sales-panel h2,
.owner-sales-widget-card h2,
.owner-sales-story h2,
.owner-sales-cta h2 {
    margin: 10px 0 12px;
    color: var(--ink);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.1;
    font-weight: 900;
}

.owner-sales-section-head p,
.owner-sales-split p,
.owner-sales-panel p,
.owner-sales-widget-card p,
.owner-sales-story p,
.owner-sales-cta p,
.owner-sales-claim-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.owner-sales-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.owner-sales-feature-grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 292px;
    padding: 26px;
}

.owner-sales-feature-grid span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff3e8;
    color: var(--orange);
    font-weight: 900;
}

.owner-sales-feature-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.18;
}

.owner-sales-feature-grid p {
    margin: 0;
    color: var(--muted);
}

.owner-sales-band {
    padding: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff8f2 0%, #f6fbf7 100%);
}

.owner-sales-split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.owner-sales-checklist,
.owner-sales-panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.owner-sales-checklist li,
.owner-sales-panel li {
    position: relative;
    padding: 13px 14px 13px 42px;
    border: 1px solid #e8ece9;
    border-radius: 8px;
    background: #fff;
    color: var(--ink-soft);
    font-weight: 750;
}

.owner-sales-checklist li::before,
.owner-sales-panel li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.owner-sales-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 22px;
    align-items: stretch;
}

.owner-sales-panel,
.owner-sales-widget-card {
    padding: 30px;
}

.owner-sales-panel ul {
    margin: 20px 0;
}

.owner-sales-widget-card {
    display: grid;
    gap: 22px;
    align-content: start;
    background: #fbfcfc;
}

.widget-preview {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #dfe6e2;
    border-radius: 8px;
    background: #fff;
}

.widget-preview-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.widget-preview-head strong {
    color: var(--green);
}

.widget-preview-score {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf6ee;
    color: var(--green);
    font-size: 30px;
    font-weight: 900;
}

.widget-preview a {
    color: var(--orange);
    font-weight: 900;
}

.owner-sales-dashboard {
    padding-top: 30px;
}

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

.owner-sales-metric-grid article {
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 20px;
    color: var(--ink);
    font-weight: 900;
}

.owner-sales-story {
    display: grid;
    place-items: center;
    min-height: 360px;
    margin-bottom: 80px;
    background:
        linear-gradient(90deg, rgba(0, 19, 34, 0.82), rgba(0, 19, 34, 0.58)),
        url("/images/design/workspace.jpg") center / cover;
}

.owner-sales-story > div {
    max-width: 820px;
    margin-right: auto;
}

.owner-sales-story h2,
.owner-sales-story p {
    color: #fff;
}

.owner-sales-story .scan-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.owner-sales-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 36px;
    align-items: center;
    margin-bottom: 96px;
    padding: 42px;
    border: 1px solid #f1dfd2;
    border-radius: 8px;
    background: #fff8f2;
}

.owner-sales-claim-card {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.owner-sales-claim-card strong {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.owner-sales-claim-card .search-form {
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    overflow: visible;
}

@media (max-width: 1100px) {
    .home-card-grid,
    .compact-grid,
    .place-grid,
    .owner-sales-strip,
    .owner-sales-feature-grid,
    .owner-sales-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-hero-inner,
    .shop-layout,
    .explanation-hero,
    .explanation-intro-grid,
    .directory-hero,
    .directory-shell,
    .directory-card,
    .about-band,
    .messages-band,
    .community-section,
    .footer-main,
    .owner-sales-hero,
    .owner-sales-split,
    .owner-sales-two-column,
    .owner-sales-cta {
        grid-template-columns: 1fr;
    }

    .owner-sales-hero {
        gap: 34px;
        padding-top: 52px;
    }

    .owner-sales-visual {
        min-height: auto;
    }

    .feedback-hero {
        grid-template-columns: 1fr;
    }

    .scan-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .thanks-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .thanks-copy {
        justify-items: center;
    }

    .scan-copy {
        justify-items: center;
    }

    .shop-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-mark {
        order: 1;
    }

    .shop-intro {
        order: 2;
    }

    .owner-box {
        order: 4;
        grid-column: 1;
        grid-row: auto;
    }

    .unclaimed-profile-cta-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .unclaimed-profile-cta-copy {
        text-align: center;
    }

    .unclaimed-profile-cta-copy > p {
        margin-inline: auto;
    }

    .unclaimed-profile-cta-actions {
        justify-items: center;
    }

    .unclaimed-profile-hub {
        width: min(700px, 100%);
        justify-self: center;
    }

    .directory-filters {
        position: static;
        overflow: visible;
    }

    .directory-results {
        order: 1;
    }

    .directory-filters {
        order: 2;
        width: 100%;
        margin-bottom: 18px;
    }

    .directory-filter-disclosure > summary {
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 18px;
        cursor: pointer;
        list-style: none;
    }

    .directory-filter-disclosure > summary::-webkit-details-marker {
        display: none;
    }

    .directory-filter-disclosure > summary > span:first-child {
        display: grid;
        gap: 1px;
    }

    .directory-filter-disclosure > summary strong {
        color: var(--ink);
        font-size: 20px;
    }

    .directory-filter-disclosure > summary small {
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
    }

    .directory-filter-disclosure > summary::after {
        content: "";
        width: 10px;
        height: 10px;
        margin-left: auto;
        border-right: 3px solid var(--ink);
        border-bottom: 3px solid var(--ink);
        transform: rotate(45deg) translateY(-2px);
        transition: transform 0.16s ease;
    }

    .directory-filter-disclosure[open] > summary::after {
        transform: rotate(225deg) translateY(-2px);
    }

    .directory-mobile-filter-count {
        min-width: 34px;
        height: 34px;
        display: inline-grid;
        place-items: center;
        border-radius: 999px;
        background: var(--orange);
        color: #fff;
        font-weight: 900;
    }

    .directory-filter-head {
        display: none;
    }

    .filter-scrollbox {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .directory-card-side {
        justify-items: start;
    }

    .shop-info-panel-head {
        display: grid;
    }

    .benchmark-summary,
    .dashboard-stats-grid,
    .dashboard-owner-metrics,
    .certification-card-grid,
    .decision-grid,
    .explanation-topic-grid,
    .entrepreneur-explain-grid,
    .audience-explain-grid,
    .review-filter-panel,
    .competitor-search-form,
    .product-feed-preview-grid,
    .shop-logo-edit-row,
    .entrepreneur-edit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-info-highlights {
        justify-content: flex-start;
    }

    .explanation-directory-menu {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .explanation-directory-menu__links {
        justify-content: flex-start;
    }

}

@media (max-width: 760px) {
    body {
        font-size: 14px;
    }

    .unclaimed-profile-cta {
        padding: 0 0 70px;
    }

    .unclaimed-profile-cta-inner {
        width: calc(100vw - 36px);
        gap: 32px;
        padding: 28px 20px;
    }

    .unclaimed-profile-cta-copy h2 {
        margin-top: 15px;
        font-size: 30px;
    }

    .unclaimed-profile-cta-copy > p {
        font-size: 18px;
    }

    .unclaimed-profile-cta-actions {
        align-items: stretch;
    }

    .unclaimed-profile-cta-actions .pill-button {
        width: 100%;
    }

    .unclaimed-profile-hub {
        min-height: auto;
        grid-template-columns: 1fr;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .unclaimed-profile-hub-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 120px;
        grid-column: 1 / -1;
        transform: none;
    }

    .unclaimed-profile-hub .unclaimed-profile-benefit {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
        transform: none !important;
    }

    .unclaimed-profile-hub-line {
        display: none;
    }

    .site-header {
        width: calc(100vw - 36px);
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 22px 0;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px 22px;
    }

    .home-section,
    .owner-sales-hero,
    .owner-sales-strip,
    .owner-sales-section,
    .owner-sales-band,
    .owner-sales-cta,
    .blog-index-hero,
    .blog-index-section,
    .blog-related-section,
    .blog-article-page,
    .about-hero-page,
    .about-section-head,
    .about-mission-grid,
    .about-values-section,
    .about-history-section,
    .about-practical-section,
    .advertise-hero,
    .advertise-stats-grid,
    .advertise-content-section,
    .advertise-cta-section,
    .privacy-hero,
    .privacy-intro-grid,
    .privacy-content-section,
    .explanation-page,
    .shop-hero-inner,
    .shop-layout,
    .nearby-hero,
    .nearby-results-section,
    .directory-hero,
    .directory-shell,
    .dashboard-shell,
    .footer-main {
        width: calc(100vw - 36px);
    }

    .dashboard-page {
        padding: 34px 0 70px;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dashboard-sidebar {
        position: static;
        order: 2;
    }

    .dashboard-main {
        order: 1;
    }

    .dashboard-hero,
    .dashboard-hero.compact,
    .dashboard-panel,
    .dashboard-feature-card,
    .dashboard-stat-card,
    .dashboard-owner-shop-card {
        padding: 22px;
    }

    .dashboard-stats-grid,
    .dashboard-card-grid,
    .dashboard-panels,
    .dashboard-owner-metrics,
    .account-settings-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-owner-shop-head {
        display: grid;
    }

    .dashboard-owner-shop-head-actions {
        justify-content: flex-start;
    }

    .dashboard-completion-top {
        display: grid;
        justify-items: start;
    }

    .dashboard-list-item,
    .dashboard-report-row,
    .consumer-safety-callout,
    .account-email-panel,
    .about-hero-page,
    .about-mission-grid,
    .about-values-section,
    .about-practical-section,
    .advertise-hero,
    .advertise-stats-grid,
    .advertise-content-section,
    .privacy-hero,
    .privacy-intro-grid,
    .privacy-content-section,
    .privacy-rights-grid,
    .privacy-contact-card,
    .blog-feature-card,
    .blog-card-grid,
    .explanation-index-intro,
    .product-feed-form,
    .product-feed-toolbar,
    .product-feed-status-grid,
    .product-feed-preview-grid,
    .certification-card-grid,
    .decision-grid,
    .explanation-topic-grid,
    .entrepreneur-explain-grid,
    .audience-explain-grid,
    .review-filter-panel {
        grid-template-columns: 1fr;
    }

    .dashboard-report-row-meta {
        justify-content: flex-start;
    }

    .consumer-safety-visual {
        min-height: 120px;
        justify-content: start;
    }

    .advertise-hero {
        gap: 24px;
        padding: 42px 0 54px;
    }

    .privacy-hero {
        gap: 24px;
        padding: 42px 0 54px;
    }

    .advertise-stats-band {
        padding: 42px 0;
    }

    .privacy-intro-band {
        padding: 42px 0;
    }

    .advertise-content-section {
        padding: 48px 0;
    }

    .privacy-content-section {
        padding: 48px 0 58px;
    }

    .privacy-toc {
        position: static;
    }

    .advertise-cta-section {
        display: grid;
        justify-items: start;
        margin-bottom: 58px;
        padding: 28px 22px;
    }

    .about-hero-page {
        gap: 28px;
        padding: 42px 0 58px;
    }

    .about-hero-visual {
        min-height: 340px;
    }

    .about-hero-visual img {
        max-height: 320px;
    }

    .about-mission-band {
        padding: 52px 0;
    }

    .about-values-section,
    .about-history-section,
    .about-practical-section {
        padding-bottom: 58px;
    }

    .about-timeline article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .blog-index-hero {
        padding: 42px 0 28px;
    }

    .blog-feature-card {
        padding: 22px;
        gap: 22px;
    }

    .blog-card-grid {
        gap: 18px;
    }

    .blog-article-hero img {
        aspect-ratio: 1.45;
    }

    .blog-article-content {
        margin-top: 34px;
        font-size: 16px;
    }

    .explanation-page {
        padding-top: 26px;
    }

    .explanation-breadcrumb {
        margin-bottom: 12px;
    }

    .explanation-hero {
        padding: 34px 0;
    }

    .explanation-hero h1 {
        font-size: 38px;
    }

    .explanation-directory-menu {
        margin: 34px 0 0;
        padding: 16px;
    }

    .explanation-directory-menu__links {
        flex-wrap: nowrap;
        margin: 0 -16px;
        padding: 0 16px 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .explanation-directory-menu__links a {
        white-space: nowrap;
        scroll-snap-align: start;
    }

    .explanation-index-intro {
        align-items: start;
        padding: 22px;
    }

    .explanation-topic-card {
        min-height: auto;
        padding: 22px;
    }

    .explanation-content-band {
        padding: 30px 24px;
    }

    .certification-explain-card {
        grid-template-columns: 64px minmax(0, 1fr);
        padding: 18px;
    }

    .certification-explain-card > img {
        width: 64px;
        height: 64px;
    }

    .score-band-icon {
        width: 64px;
        height: 64px;
        font-size: 14px;
    }

    .profile-stats-chart,
    .review-count-chart {
        min-height: 230px;
        gap: 6px;
        padding: 14px;
        overflow-x: auto;
    }

    .review-line-chart {
        overflow-x: auto;
    }

    .review-line-chart svg {
        min-width: 620px;
        height: 220px;
    }

    .review-chart-labels {
        min-width: 620px;
    }

    .profile-stats-bar,
    .review-count-column {
        width: 34px;
        height: 190px;
    }

    .profile-stats-bar-value,
    .review-count-column span {
        font-size: 11px;
    }

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

    .owner-option-grid,
    .owner-field-grid,
    .owner-textarea-grid,
    .shipping-cost-group,
    .local-search-card > div,
    .place-grid {
        grid-template-columns: 1fr;
    }

    .local-search-card .pill-button {
        width: 100%;
        justify-content: center;
    }

    .shipping-method-option {
        grid-template-columns: auto 72px minmax(0, 1fr);
    }

    .report-form {
        gap: 12px;
    }

    .report-form h2 {
        font-size: 32px;
    }

    .report-form > p {
        font-size: 15px;
    }

    .owner-sales-hero {
        padding: 42px 0 46px;
    }

    .owner-sales-hero-copy h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .owner-sales-hero-copy .owner-sales-lead {
        font-size: 17px;
    }

    .owner-sales-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .owner-sales-actions .pill-button,
    .owner-sales-actions .outline-button {
        width: 100%;
    }

    .owner-sales-visual {
        padding: 18px;
    }

    .owner-sales-strip,
    .owner-sales-feature-grid,
    .owner-sales-metric-grid {
        grid-template-columns: 1fr;
    }

    .owner-sales-section {
        padding: 50px 0;
    }

    .owner-sales-band,
    .owner-sales-cta {
        padding: 26px 20px;
    }

    .owner-sales-feature-grid article {
        min-height: auto;
    }

    .owner-sales-panel,
    .owner-sales-widget-card,
    .owner-sales-claim-card {
        padding: 22px;
    }

    .owner-sales-story {
        min-height: 340px;
        margin-bottom: 56px;
    }

    .owner-sales-claim-card .search-form {
        grid-template-columns: 1fr;
        height: auto;
        background: transparent;
        border: 0;
        gap: 10px;
    }

    .owner-sales-claim-card .search-form input {
        min-height: 50px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--panel);
    }

    .owner-sales-claim-card .search-form button {
        min-height: 50px;
        border-radius: 999px;
    }

    .report-type-choice {
        grid-template-columns: 1fr;
    }

    .report-type-option {
        min-height: 92px;
        grid-template-columns: 54px 1fr;
        gap: 12px;
        padding: 16px 44px 16px 16px;
    }

    .report-type-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .report-type-copy strong {
        font-size: 16px;
    }

    .report-type-copy span {
        font-size: 13px;
    }

    .report-radio-indicator {
        top: 14px;
        right: 14px;
    }

    .report-account-note {
        grid-template-columns: 38px 1fr;
        padding: 14px;
    }

    .report-account-icon {
        width: 32px;
        height: 32px;
    }

    .report-account-note strong {
        font-size: 15px;
    }

    .report-field input,
    .report-field textarea {
        min-height: 50px;
        padding-left: 46px;
        font-size: 15px;
    }

    .report-field textarea {
        min-height: 126px;
    }

    .report-field-icon {
        left: 16px;
    }

    .report-submit {
        width: 100%;
        justify-content: center;
    }

    .owner-save-bar {
        position: static;
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-list-actions {
        justify-content: flex-start;
    }

    .claim-page {
        padding: 42px 0 70px;
    }

    .claim-shell {
        width: calc(100vw - 36px);
        grid-template-columns: 1fr;
    }

    .claim-intro,
    .claim-card,
    .claim-confirm-card,
    .claim-welcome-panel {
        padding: 26px 20px;
    }

    .claim-welcome-panel {
        grid-template-columns: 1fr;
    }

    .claim-party-visual {
        width: 270px;
        height: 310px;
        transform: scale(0.9);
        transform-origin: top center;
        margin: 0 auto -28px;
    }

    .home-hero {
        min-height: 340px;
    }

    .update-scan-page {
        padding: 42px 18px 70px;
    }

    .thanks-page,
    .auth-page {
        padding: 42px 18px 70px;
    }

    .scan-panel {
        padding: 34px 22px;
        gap: 24px;
    }

    .thanks-panel,
    .thanks-account-card,
    .auth-card {
        padding: 30px 20px;
    }

    .missing-shop-page {
        padding: 42px 18px 70px;
    }

    .missing-shop-card {
        padding: 30px 20px;
    }

    .scan-panel p {
        font-size: 15px;
    }

    .scan-status {
        text-align: left;
    }

    .scan-status {
        padding: 14px;
    }

    .scan-visual {
        width: 270px;
        height: 310px;
        transform: scale(0.88);
        transform-origin: top center;
        margin-bottom: -30px;
    }

    .thanks-visual {
        width: 270px;
        height: 310px;
        transform: scale(0.88);
        transform-origin: top center;
        margin-bottom: -30px;
    }

    .section-heading,
    .search-result {
        display: grid;
    }

    .search-suggestion {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 62px;
    }

    .search-suggestion-logo {
        width: 38px;
        height: 38px;
    }

    .search-suggestion-meta {
        grid-column: 2;
        justify-self: start;
        max-width: 100%;
        margin-top: 4px;
    }

    .home-card-grid,
    .compact-grid,
    .place-grid,
    .news-grid,
    .nearby-hero,
    .nearby-form,
    .nearby-result-card,
    .directory-hero,
    .directory-hero-search,
    .directory-shell,
    .directory-card,
    .review-detail-grid,
    .risk-detail-grid,
    .support-row,
    .faq-grid,
    .product-grid,
    .shop-logo-edit-row,
    .entrepreneur-profile-card,
    .entrepreneur-edit-grid,
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .entrepreneur-profile-card {
        justify-items: start;
    }

    .nearby-result-meta {
        justify-items: start;
        min-width: 0;
    }

    .nearby-review-score,
    .nearby-certifications {
        justify-content: flex-start;
    }

    .directory-hero {
        margin-top: 24px;
        padding: 30px 22px;
    }

    .directory-hero h1 {
        font-size: 34px;
    }

    .directory-filters {
        position: static;
        overflow: visible;
    }

    .directory-filters form {
        padding: 18px;
    }

    .wc-pagination {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 14px;
    }

    .wc-pagination-pages {
        grid-column: 1 / -1;
        order: -1;
    }

    .wc-pagination-button {
        width: 100%;
    }

    .directory-filter-head strong {
        font-size: 25px;
    }

    .directory-filter-group summary {
        font-size: 19px;
    }

    .filter-scrollbox {
        grid-template-columns: 1fr;
        max-height: 260px;
    }

    .directory-toolbar,
    .directory-card-side {
        display: grid;
        justify-items: start;
    }

    .directory-toolbar form {
        width: 100%;
    }

    .directory-card {
        align-items: start;
    }

    .directory-card-side,
    .directory-review,
    .directory-certifications {
        justify-content: flex-start;
    }

    .shop-info-panel {
        padding: 22px 18px;
    }

    .shop-info-tab-list {
        width: 100%;
        border-radius: 8px;
    }

    .shop-info-tab-list label {
        flex: 1 1 120px;
        justify-content: center;
        border-radius: 7px;
    }

    .commerce-chip-grid,
    .shop-info-stat-row {
        grid-template-columns: 1fr;
    }

    .shipping-chip img {
        width: 68px;
    }

    .profile-tabs {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 14px 18px;
        text-align: left;
    }

    .shop-hero-inner {
        gap: 22px;
        padding: 36px 0;
    }

    .shop-verdict {
        gap: 18px;
        padding: 20px;
    }

    .shop-verdict-signals {
        grid-template-columns: 1fr;
        padding-top: 6px;
    }

    .shop-verdict-signal,
    .shop-verdict-signal:first-child,
    .shop-verdict-signal:last-child {
        padding: 14px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .shop-verdict-signal:first-child {
        padding-top: 8px;
        border-top: 0;
    }

    .shop-verdict-costs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .shop-verdict-cost {
        justify-content: space-between;
    }

    .profile-faq-ad,
    .profile-faq-ad .adsbygoogle {
        min-height: 250px;
    }

    .profile-faq-ad {
        margin: 48px 0 -22px;
    }

    .about-band,
    .messages-band,
    .community-section-highlight {
        padding: 34px 24px;
    }

    .community-section {
        gap: 34px;
    }

    .community-thread-children,
    .reply-form {
        margin-left: 10px;
        padding-left: 12px;
    }

    .review-gauge {
        justify-self: start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .manual-review {
        padding: 24px 22px 20px;
        border-radius: 18px;
    }

    .manual-review-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .manual-review-badge {
        margin-left: 59px;
    }

    .feedback-page {
        padding: 46px 0 70px;
    }

    .not-found-page {
        width: min(100% - 28px, 900px);
        padding: 48px 0 30px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .not-found-copy h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .not-found-copy p {
        font-size: 16px;
    }

    .not-found-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .not-found-actions .pill-button,
    .not-found-actions .outline-button {
        justify-content: center;
        width: 100%;
    }

    .not-found-hero {
        min-height: 320px;
        border-radius: 22px;
    }

    .not-found-hero img {
        width: min(70%, 220px);
    }

    .not-found-suggestions {
        width: min(100% - 28px, 900px);
        margin-bottom: 70px;
        grid-template-columns: 1fr;
    }

    .feedback-hero,
    .feedback-panel {
        width: min(100% - 28px, 900px);
    }

    .feedback-panel {
        padding: 22px;
    }

    .feedback-form-grid {
        grid-template-columns: 1fr;
    }

    .feedback-submit {
        width: 100%;
        justify-content: center;
    }
}

.subscription-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.subscription-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin: 8px 0 -6px;
}

.subscription-section-heading h2,
.subscription-section-heading p {
    margin: 0;
}

.subscription-section-heading h2 {
    margin-top: 6px;
    color: var(--ink);
    font-size: 26px;
}

.subscription-section-heading p {
    max-width: 510px;
    color: var(--muted);
    line-height: 1.6;
}

.subscription-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.subscription-plan-card.is-highlighted {
    border: 2px solid #ff7a15;
    box-shadow: 0 18px 50px rgba(255, 122, 21, 0.13);
}

.subscription-price {
    display: grid;
    gap: 4px;
    margin: 18px 0;
}

.subscription-price strong {
    font-size: 28px;
}

.subscription-price span,
.subscription-price small,
.subscription-feature-list,
.subscription-consent {
    color: #626b7a;
}

.subscription-price small {
    max-width: 420px;
    line-height: 1.5;
}

.subscription-feature-list {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.subscription-feature-list li::marker {
    color: var(--orange);
}

.subscription-plan-action {
    margin-top: auto;
    padding-top: 26px;
}

.subscription-plan-cta,
.subscription-current-choice {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subscription-current-choice {
    border: 1px solid #d9dee5;
    border-radius: 999px;
    color: #626b7a;
    font-weight: 850;
}

.subscription-upgrade-panel {
    margin-top: 8px;
    padding: 32px;
    scroll-margin-top: 24px;
    border-color: #ffd6b8;
    background: linear-gradient(135deg, #fffaf6 0%, #fff 58%);
}

.subscription-upgrade-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 26px;
    border-bottom: 1px solid #f0e2d8;
}

.subscription-upgrade-heading h2,
.subscription-upgrade-heading p,
.subscription-form-heading h3,
.subscription-form-heading p,
.subscription-order-summary h3 {
    margin: 0;
}

.subscription-upgrade-heading h2 {
    margin: 7px 0 8px;
    color: var(--ink);
    font-size: clamp(27px, 3vw, 36px);
}

.subscription-upgrade-heading p,
.subscription-form-heading p {
    color: var(--muted);
    line-height: 1.55;
}

.subscription-free-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 10px 15px;
    background: #eaf8ef;
    color: #137a3e;
    font-weight: 900;
}

.subscription-upgrade-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
    padding-top: 28px;
}

.subscription-details-form {
    display: grid;
    gap: 20px;
}

.subscription-form-heading {
    display: grid;
    gap: 6px;
}

.subscription-form-heading .subscription-prefill-note {
    margin-top: 8px;
    border-left: 3px solid var(--orange);
    padding: 10px 12px;
    background: #fff7f1;
    color: #505968;
    font-size: 14px;
}

.subscription-prefill-note strong {
    color: var(--ink);
}

.subscription-form-heading h3,
.subscription-order-summary h3 {
    color: var(--ink);
    font-size: 22px;
}

.subscription-order-summary {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid #f3c8a9;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(36, 24, 14, 0.07);
}

.subscription-order-summary ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
    color: #505968;
}

.subscription-order-summary li::marker {
    color: var(--orange);
}

.subscription-future-price {
    display: grid;
    gap: 2px;
    padding: 16px 0;
    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
    color: #626b7a;
}

.subscription-future-price strong {
    color: var(--ink);
    font-size: 32px;
    line-height: 1.1;
}

.subscription-price-breakdown {
    display: grid;
    gap: 4px;
    margin-top: 10px;
    color: #626b7a;
    font-size: 12px;
    line-height: 1.45;
}

.subscription-price-breakdown strong {
    color: var(--orange);
    font-size: 12px;
}

.subscription-submit {
    width: 100%;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.subscription-return-note {
    margin: -8px 0 0;
    color: #7a8492;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.subscription-billing-panel { margin-top: 24px; }

.subscription-billing-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e3e7eb;
}

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

.subscription-form-grid label {
    display: grid;
    gap: 7px;
    font-weight: 750;
}

.subscription-form-grid .owner-full-field {
    grid-column: 1 / -1;
}

.subscription-form-grid label span small {
    color: var(--muted);
    font-weight: 600;
}

.subscription-form-grid input,
.subscription-form-grid select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9dee5;
    border-radius: 10px;
    background: #fff;
    font: inherit;
}

.subscription-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    line-height: 1.5;
}

.subscription-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--orange);
}

.form-field-error {
    color: #b42318;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.upgrade-modal-backdrop {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(20, 24, 33, 0.62);
}

.upgrade-modal {
    position: relative;
    width: min(100%, 560px);
    padding: 34px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.upgrade-modal h2 { margin: 8px 0 10px; }
.upgrade-modal li { margin: 8px 0; }
.upgrade-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: none;
    color: #626b7a;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 800px) {
    .subscription-plan-grid,
    .subscription-form-grid,
    .subscription-upgrade-layout { grid-template-columns: 1fr; }

    .subscription-section-heading,
    .subscription-upgrade-heading {
        align-items: start;
        flex-direction: column;
        gap: 14px;
    }

    .subscription-plan-card {
        min-height: 0;
    }

    .subscription-upgrade-panel {
        padding: 24px;
    }
}

@media (max-width: 980px) {
    .widget-type-grid,
    .widget-list-grid,
    .widget-settings-grid {
        grid-template-columns: 1fr;
    }

    .widget-color-presets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .widget-list-card,
    .widget-list-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .widget-type-card {
        min-height: 0;
    }
}
.email-preference-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid #e7e1d9;
    border-radius: 14px;
    background: #fff;
}

.email-preference-option input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
}

.email-preference-option span {
    display: grid;
    gap: 0.2rem;
}

.email-preference-option small {
    color: #6b625b;
}

@media (prefers-reduced-motion: reduce) {
    .hero-arm-left,
    .hero-arm-right,
    .hero-leg-right,
    .hero-shadow,
    .scan-orbit,
    .scan-bubble,
    .scan-loader,
    .scan-progress-label .is-changing,
    .scan-progress-fill,
    .scan-progress-fill::after {
        animation: none !important;
    }

    .scan-progress-fill {
        transition: none;
    }
}
