    .esim-spotlight {
        position: fixed;
        inset: 0;
        z-index: 12000;
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: 12vh 16px 24px;
        background: rgba(7, 9, 12, 0.62);
        backdrop-filter: blur(10px) saturate(140%);
        -webkit-backdrop-filter: blur(10px) saturate(140%);
        animation: esim-spotlight-fade 0.18s ease-out;
    }

    .esim-spotlight.is-open { display: flex; }

    @keyframes esim-spotlight-fade {
        from { opacity: 0; transform: translateY(-4px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .esim-spotlight-box {
        width: 100%;
        max-width: 720px;
        background: linear-gradient(180deg, #1a1d23 0%, #15181d 100%);
        border: 1px solid rgba(255, 205, 0, 0.18);
        border-radius: 18px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
        display: flex;
        flex-direction: column;
        max-height: min(76vh, 720px);
        overflow: hidden;
    }

    .esim-spotlight-input-row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .esim-spotlight-input-row .icon {
        color: #ffcd00;
        font-size: 20px;
        flex-shrink: 0;
    }

    .esim-spotlight-input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 20px;
        line-height: 1.3;
        padding: 4px 0;
        font-family: inherit;
        min-width: 0;
    }

    .esim-spotlight-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

    .esim-spotlight-close {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.65);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        line-height: 1;
        flex-shrink: 0;
        transition: background 0.15s ease;
    }
    .esim-spotlight-close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
    .esim-spotlight-close kbd {
        font-family: inherit;
        font-size: 10px;
        opacity: 0.6;
    }

    .esim-spotlight-body {
        flex: 1;
        overflow-y: auto;
        padding: 12px 8px 16px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.15) transparent;
        scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
        .esim-spotlight-body {
            scroll-behavior: auto;
        }
    }

    /* In-modal category anchors (#spotlight-*) — offset from top of scrollport. */
    #spotlight-destinations,
    #spotlight-verification,
    #spotlight-phone-numbers {
        scroll-margin-top: 8px;
    }

    .esim-spotlight-section {
        padding: 4px 14px 8px;
    }

    .esim-spotlight-section-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: rgba(255, 205, 0, 0.85);
        padding: 6px 6px 8px;
    }

    .esim-spotlight-section-label .count {
        color: rgba(255, 255, 255, 0.35);
        font-weight: 500;
        margin-left: 6px;
    }

    /* Travel eSIM destination tree: parent category wraps regional
       bundles plus per-continent country groups. */
    .esim-spotlight-destinations {
        padding: 4px 14px 8px;
    }

    .esim-spotlight-section-label-parent {
        font-size: 12px;
        padding-top: 8px;
        padding-bottom: 4px;
        color: rgba(255, 205, 0, 0.95);
    }

    .esim-spotlight-subsection {
        padding: 0 0 4px 6px;
    }

    .esim-spotlight-subsection .esim-spotlight-section-label {
        font-size: 10px;
        color: rgba(255, 205, 0, 0.65);
        padding-top: 4px;
    }

    .esim-spotlight-empty {
        padding: 30px 22px;
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
    }

    .esim-spotlight-empty .big {
        font-size: 32px;
        color: rgba(255, 205, 0, 0.7);
        margin-bottom: 8px;
    }

    .esim-spotlight-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
        transition: background 0.12s ease;
        cursor: pointer;
    }

    .esim-spotlight-row:hover,
    .esim-spotlight-row.is-active {
        background: rgba(255, 205, 0, 0.12);
        color: #fff;
        text-decoration: none;
    }

    .esim-spotlight-row .flag {
        width: 32px;
        height: 24px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.05);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        font-size: 18px;
        color: #ffcd00;
    }

    .esim-spotlight-row .flag .flag-icon {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 4px;
    }

    .esim-spotlight-row .body {
        flex: 1;
        min-width: 0;
    }

    .esim-spotlight-row .name {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        line-height: 1.2;
        text-transform: none;
    }

    .esim-spotlight-row .meta {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-transform: none;
    }

    .esim-spotlight-section-label,
    .esim-spotlight-section-label-parent {
        text-transform: none;
    }

    .esim-spotlight-row .price {
        text-align: right;
        flex-shrink: 0;
    }

    .esim-spotlight-row .price .eur {
        font-size: 14px;
        font-weight: 700;
        color: #ffcd00;
    }

    .esim-spotlight-row .price .usd {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 2px;
    }

    .esim-spotlight-row .chev {
        color: rgba(255, 255, 255, 0.25);
        font-size: 12px;
        margin-left: 4px;
    }

    .esim-spotlight-row.is-region .flag {
        background: rgba(255, 205, 0, 0.12);
        color: #ffcd00;
    }

    /* Catalog rows (actions / products / info) — icon-based, no flag.
       Same height envelope as country rows. Product rows reuse the
       country `.price` column to surface "from €X/mo" so the modal
       has a single, consistent price language across destinations
       and services. Actions/info rows skip the price column. */
    .esim-spotlight-row.is-catalog .flag {
        background: rgba(255, 205, 0, 0.10);
        color: #ffcd00;
        font-size: 14px;
    }
    .esim-spotlight-row.is-catalog .meta {
        color: rgba(255, 255, 255, 0.55);
    }
    .esim-spotlight-row.is-catalog .price {
        white-space: nowrap;
    }
    .esim-spotlight-row.is-catalog .price .period {
        font-size: 11px;
        font-weight: 500;
        color: rgba(255, 205, 0, 0.7);
        margin-left: 1px;
    }
    .esim-spotlight-row.is-catalog .price .free {
        font-size: 12px;
        font-weight: 700;
        color: #6bcf7f;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    .esim-spotlight-row.is-catalog .badge {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #0a0a0a;
        background: #ffcd00;
        padding: 3px 8px;
        border-radius: 999px;
        margin-right: 6px;
        flex-shrink: 0;
    }
    /* Action rows (sign in / register / dashboard / logout) lean slightly
       more emphatic so they read as primary affordances when the modal
       opens cold. */
    .esim-spotlight-row.is-action .flag {
        background: rgba(255, 205, 0, 0.18);
        color: #ffcd00;
    }
    .esim-spotlight-row.is-action .name {
        color: #fff;
    }

    /* Region rows render the included country list under the meta line
       so the user can see exactly what each bundle covers without
       leaving the modal. Kept compact: one wrapped line max, gradient
       fade at the right edge of the row body before the price column. */
    .esim-spotlight-row.is-region {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .esim-spotlight-row.is-region .body { padding-top: 1px; }

    /* Coverage strip wraps freely. Earlier we capped it with
       max-height + overflow:hidden which clipped the bottom row in
       half (the issue the user reported). The chip count is already
       bounded by REGION_CHIP_LIMIT in JS, so just let the card grow.
       Each chip has its own padding so the row never collides with the
       price column. */
    .esim-spotlight-coverage {
        margin-top: 6px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px 6px;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.4;
    }

    .esim-spotlight-coverage .pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.06);
        padding: 2px 8px 2px 5px;
        border-radius: 10px;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .esim-spotlight-coverage .pill .pill-flag {
        width: 16px;
        height: 12px;
        flex-shrink: 0;
        border-radius: 2px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.06);
    }

    .esim-spotlight-coverage .pill .pill-flag .flag-icon {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .esim-spotlight-coverage .pill .pill-name {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .esim-spotlight-coverage .pill.match {
        background: rgba(255, 205, 0, 0.22);
        color: #ffe48a;
    }

    .esim-spotlight-coverage .more {
        color: rgba(255, 205, 0, 0.75);
        font-weight: 600;
        padding: 2px 4px;
    }

    .esim-spotlight-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.45);
        font-size: 11px;
        gap: 16px;
    }

    .esim-spotlight-footer .hints {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .esim-spotlight-footer kbd {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 4px;
        padding: 2px 6px;
        font-family: inherit;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.7);
        margin-right: 4px;
    }

    @media (max-width: 600px) {
        .esim-spotlight { padding: 8vh 8px 16px; }
        .esim-spotlight-input { font-size: 17px; }
        .esim-spotlight-body { padding: 8px 4px 12px; }
        .esim-spotlight-row .meta { font-size: 11px; }
        .esim-spotlight-footer .hints { display: none; }
    }
