/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
    --bg:      #F0EDE8;
    --surface: #FFFFFF;
    --border:  #DDD9D2;
    --text:    #1C1B18;
    --muted:   #8A877E;
    --radius:  12px;

    /* verdict themes */
    --v-good-a:  #2D6A4F;
    --v-good-b:  #52B788;
    --v-warn-a:  #B5621A;
    --v-warn-b:  #F4A261;
    --v-bad-a:   #1B3A5C;
    --v-bad-b:   #2E6F95;
    --v-ban-a:   #8B0000;
    --v-ban-b:   #C1121F;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    transition: background 1s ease;
}

/* body tints per verdict */
body.good { background: #EBF5F0; }
body.warn { background: #FDF3EB; }
body.bad  { background: #EBF0F5; }
body.ban  { background: #F5EBEB; }

/* ─── FLAME ANIMATION ─────────────────────────────────────── */
.flame-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.flame-svg {
    width: 72px;
    height: 108px;
    filter: drop-shadow(0 0 18px rgba(255, 107, 53, .45));
    animation: flame-sway 3s ease-in-out infinite;
    transform-origin: center bottom;
}

.flame-outer {
    fill: #FF6B35;
    animation: flame-pulse 1.8s ease-in-out infinite;
    transform-origin: 40px 115px;
}

.flame-mid {
    fill: #F4A261;
    animation: flame-pulse 1.4s ease-in-out infinite .2s;
    transform-origin: 40px 108px;
}

.flame-inner {
    fill: #FFE8A3;
    animation: flame-pulse 1.1s ease-in-out infinite .1s;
    transform-origin: 40px 98px;
}

@keyframes flame-sway {
    0%,100% { transform: rotate(-3deg) scaleX(.97); }
    33%      { transform: rotate(2deg)  scaleX(1.03); }
    66%      { transform: rotate(-1.5deg) scaleX(.99); }
}

@keyframes flame-pulse {
    0%,100% { transform: scaleY(1);    opacity: 1; }
    50%      { transform: scaleY(.94); opacity: .88; }
}

/* ─── IDLE STATE ──────────────────────────────────────────── */
body.idle .results-section { display: none; }
body.idle footer { display: none; }
body.idle .header-info { display: none; }
body.idle .location-section { padding-top: 80px; padding-bottom: 8px; max-width: 720px; }
body.idle .location-bar { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

/* ─── RECENTS BAR ─────────────────────────────────────────── */
.recents-bar {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 14px 0 8px;
}
.recents-bar.has-recents { display: flex; }
body:not(.idle) .recents-bar { display: none !important; }

.recent-pill {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: border-color .15s, color .15s, background .15s;
    white-space: nowrap;
}
.recent-pill:hover {
    border-color: #B5621A;
    color: #B5621A;
    background: #FDF3EB;
}

.idle-hero {
    display: none;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 80px;
    text-align: center;
}
body.idle .idle-hero { display: block; }

.idle-headline {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 86px);
    line-height: .95;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 20px;
}
.idle-headline em {
    font-style: normal;
    color: #B5621A;
}

.idle-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 36px;
}

.idle-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.idle-pill {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── HEADER ──────────────────────────────────────────────── */
header {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    font-size: 24px;
    line-height: 1;
}
.logo-text {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -.5px;
    color: var(--text);
}
.logo-text span { color: var(--muted); font-weight: 400; }

.header-info {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .3px;
}

/* ─── LOCATION BAR ────────────────────────────────────────── */
.location-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 32px;
}

.location-bar {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: border-color .2s, box-shadow .2s;
}
.location-bar:focus-within {
    border-color: #555;
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.location-icon {
    padding: 0 16px;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 18px;
    flex-shrink: 0;
}

.location-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    background: none;
    padding: 16px 0;
}
.location-input::placeholder { color: var(--muted); font-weight: 400; }

.location-gps {
    background: none;
    border: none;
    border-left: 1.5px solid var(--border);
    padding: 0 16px;
    cursor: pointer;
    color: var(--muted);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .15s, background .15s;
    flex-shrink: 0;
}
.location-gps span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}
.location-gps:hover { color: var(--text); background: var(--bg); }

.location-submit {
    background: var(--text);
    border: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 0 24px;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}
.location-submit:hover { background: #333; }

/* ─── VERDICT CARD ────────────────────────────────────────── */
.verdict-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.verdict-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 52px;
    box-shadow: 0 12px 60px rgba(0,0,0,.15);
    transition: all .8s cubic-bezier(.16,1,.3,1);
}

.verdict-card.good { background: linear-gradient(135deg, var(--v-good-a) 0%, var(--v-good-b) 100%); }
.verdict-card.warn { background: linear-gradient(135deg, var(--v-warn-a) 0%, var(--v-warn-b) 100%); }
.verdict-card.bad  { background: linear-gradient(135deg, var(--v-bad-a)  0%, var(--v-bad-b)  100%); }
.verdict-card.ban  { background: linear-gradient(135deg, var(--v-ban-a)  0%, var(--v-ban-b)  100%); }

.verdict-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .5;
}

.verdict-bg-text {
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(160px, 22vw, 320px);
    line-height: 1;
    color: rgba(255,255,255,.07);
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.verdict-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.verdict-location {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 40px;
    padding: 6px 14px 6px 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}
.verdict-time {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

.verdict-label {
    position: relative;
    z-index: 2;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 10vw, 120px);
    line-height: .92;
    letter-spacing: -2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: verdictIn .6s cubic-bezier(.16,1,.3,1) both;
}
@keyframes verdictIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.verdict-sub {
    position: relative;
    z-index: 2;
    font-family: 'Lora', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    color: rgba(255,255,255,.8);
    max-width: 520px;
    line-height: 1.6;
}

.verdict-bar {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.confidence-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 4px;
    max-width: 200px;
}
.confidence-fill {
    height: 100%;
    background: rgba(255,255,255,.8);
    border-radius: 4px;
    transition: width .8s ease;
}
.confidence-label {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    letter-spacing: .3px;
}

/* ─── CONDITIONS GRID ─────────────────────────────────────── */
.conditions-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 32px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.condition-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .2s, transform .2s;
}
.condition-card:hover { transform: translateY(-2px); }

.condition-card.good-factor { border-color: #52B78860; }
.condition-card.bad-factor  { border-color: #E6321860; }
.condition-card.neutral     { border-color: var(--border); }

.cond-icon { font-size: 24px; line-height: 1; margin-bottom: 2px; }
.cond-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}
.cond-value {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -.5px;
    color: var(--text);
    line-height: 1;
}
.cond-unit {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
}
.cond-verdict {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.cond-verdict.ok   { color: #2D6A4F; }
.cond-verdict.warn { color: #B5621A; }
.cond-verdict.bad  { color: #C1121F; }

/* ─── GEMEENTE BLOCK ──────────────────────────────────────── */
.gemeente-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 32px;
}

.gemeente-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.gemeente-card.allowed { border-left: 4px solid #52B788; }
.gemeente-card.partial { border-left: 4px solid #F4A261; }
.gemeente-card.banned  { border-left: 4px solid #C1121F; }

.gemeente-icon { font-size: 36px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.gemeente-body { flex: 1; }
.gemeente-name {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.3px;
    color: var(--text);
    margin-bottom: 4px;
}
.gemeente-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.status-allowed { background: #EBF5F0; color: #2D6A4F; }
.status-partial { background: #FEF3E2; color: #B5621A; }
.status-banned  { background: #FEE9E8; color: #C1121F; }

.gemeente-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.gemeente-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    margin-top: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px;
    transition: border-color .15s;
}
.gemeente-link:hover { border-color: var(--text); }

/* ─── AFFILIATE STRIP ────────────────────────────────────── */
.affiliate-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 12px;
}
.affiliate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.affiliate-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}
.affiliate-disclaimer { font-size: 11px; color: var(--border); }
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.affiliate-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .15s, box-shadow .15s;
}
.affiliate-card:hover {
    border-color: #999;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.affiliate-icon { font-size: 26px; flex-shrink: 0; line-height: 1; }
.affiliate-body { flex: 1; min-width: 0; }
.affiliate-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.affiliate-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.affiliate-cta { font-size: 11px; font-weight: 700; color: var(--muted); flex-shrink: 0; white-space: nowrap; }

/* ─── ADVICE ──────────────────────────────────────────────── */
.advice-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.advice-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px;
}
.advice-card-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.advice-card-body {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── MORGEN KAART ────────────────────────────────────────── */
.morgen-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 12px;
}
.morgen-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.morgen-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
}
.morgen-verdict {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.3px;
}
.morgen-detail {
    font-size: 13px;
    color: var(--muted);
    margin-left: auto;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.morgen-detail span { white-space: nowrap; }

/* ─── SMOG WARNING BANNER ─────────────────────────────────── */
.smog-banner {
    background: #FEF3E2;
    border: 1.5px solid #F4A261;
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #7C4A1A;
    display: none;
}
.smog-banner.visible { display: flex; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 24px 32px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
}
footer a { color: var(--muted); text-decoration: underline; }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.on { opacity: 1; transform: none; }

/* ─── LOADING STATE ───────────────────────────────────────── */
.loading-overlay {
    display: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.loading-overlay.active { display: flex; }
.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.verdict-section { position: relative; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1C1B18;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
    z-index: 999;
    max-width: 340px;
    text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.location-submit:disabled { opacity: .5; cursor: not-allowed; }
.location-gps:disabled { opacity: .5; cursor: not-allowed; }

/* ─── AUTOCOMPLETE ────────────────────────────────────────── */
.location-wrapper { position: relative; }

.location-bar.dropdown-open {
    border-radius: var(--radius) var(--radius) 0 0;
}

.ac-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--surface);
    border: 1.5px solid #555;
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 100;
    overflow: hidden;
}
.ac-dropdown.open { display: block; }

.ac-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    border-top: 1px solid var(--border);
    transition: background .1s;
}
.ac-item:first-child { border-top: none; }
.ac-item:hover,
.ac-item.focused { background: var(--bg); }

/* ─── SHARE + PUSH KNOPPEN ───────────────────────────────── */
.share-btn,
.push-btn {
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    cursor: pointer;
    transition: background .15s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .3px;
    white-space: nowrap;
    flex-shrink: 0;
}
.share-btn:hover,
.push-btn:hover { background: rgba(255,255,255,.28); }
.push-btn.active { background: rgba(255,255,255,.3); }

/* ─── DARK MODE ───────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    :root {
        --bg:      #1C1B18;
        --surface: #252420;
        --border:  #3A3830;
        --text:    #F0EDE8;
        --muted:   #9A9690;
    }

    body.good { background: #182820; }
    body.warn { background: #28200E; }
    body.bad  { background: #18202A; }
    body.ban  { background: #2A1818; }

    body.idle .location-bar { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

    .idle-headline em { color: #F4A261; }

    .recent-pill:hover {
        border-color: #F4A261;
        color: #F4A261;
        background: #28200E;
    }

    .location-bar:focus-within {
        border-color: #888;
        box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .location-gps:hover { background: #2E2D2A; }
    .location-submit:hover { background: #444; }

    .ac-dropdown {
        border-color: #888;
        box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
    .ac-item:hover,
    .ac-item.focused { background: #2E2D2A; }

    .condition-card.good-factor { border-color: #52B78840; }
    .condition-card.bad-factor  { border-color: #E6321840; }

    .cond-verdict.ok   { color: #52B788; }
    .cond-verdict.warn { color: #F4A261; }
    .cond-verdict.bad  { color: #E86060; }

    .status-allowed { background: #1A3028; color: #52B788; }
    .status-partial { background: #2A1E08; color: #F4A261; }
    .status-banned  { background: #2A1018; color: #E86060; }

    .smog-banner {
        background: #2A1E08;
        border-color: #B5621A;
        color: #F4A261;
    }

    .affiliate-card:hover {
        border-color: #666;
        box-shadow: 0 2px 10px rgba(0,0,0,.3);
    }

    .toast {
        background: #F0EDE8;
        color: #1C1B18;
    }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 700px) {
    header { padding: 16px 20px; }
    .location-section, .verdict-section, .conditions-section,
    .gemeente-section, .advice-section { padding-left: 16px; padding-right: 16px; }
    .verdict-card { padding: 28px 28px; min-height: 280px; }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .advice-section { grid-template-columns: 1fr; }
    .affiliate-grid { grid-template-columns: 1fr; }
    .verdict-label { font-size: 52px; }
    .location-gps span { display: none; }
}
