:root {
    --bg: #f4f7fc;
    --surface: rgba(255, 255, 255, 0.90);
    --surface-strong: #ffffff;
    --surface-soft: #f8fbff;
    --text: #111827;
    --text-primary: #111827;
    --text-soft: #6b7280;
    --text-secondary: #6b7280;
    --border: rgba(30, 64, 175, 0.08);

    --green: #2563eb;         /* azul principal */
    --green-dark: #1e40af;    /* azul oscuro */
    --green-soft: #e0edff;    /* azul suave */
    --green-soft-2: #eef4ff;  /* azul aún más suave */

    --warning: #ff6b00;       /* naranja gasolina / CTA */

    --shadow: 0 10px 30px rgba(37, 99, 235, 0.10);
    --shadow-soft: 0 6px 20px rgba(37, 99, 235, 0.08);

    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 30%),
        linear-gradient(180deg, #f3f7fd 0%, #f8faff 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(14px);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-bottom: 1px solid rgba(30, 64, 175, 0.06);
}

.topbar-inner {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo-wrap {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #edf4ff);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.brand-text h1 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
}

.brand-text p {
    margin: 2px 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    color: white;
}

.icon-pill-btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--green-soft), #f8fbff);
    color: var(--green-dark);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    transition: .2s ease;
}

.icon-pill-btn:hover {
    transform: translateY(-1px);
}

.main-shell {
    max-width: 1600px;
}

.search-panel,
.results-header,
.map-card,
.station-card,
.app-modal,
.loading-box {
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.search-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.93));
    padding: 22px;
    margin-bottom: 18px;
}

.search-panel-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.label-soft {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.app-input {
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(34, 61, 39, 0.08);
    background: rgba(255,255,255,0.95);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    padding-left: 16px;
    padding-right: 16px;
}

.app-input-sm {
    height: 50px;
}

.app-input:focus,
.form-select:focus,
.form-control:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 .22rem rgba(37, 99, 235, 0.12);
}

.search-input-wrap {
    position: relative;
}

.search-leading-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a968d;
    z-index: 4;
}

.input-with-left-icon {
    padding-left: 42px;
    padding-right: 42px;
}

.clear-input-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #7f8d84;
    z-index: 4;
}

.action-buttons-row {
    display: flex;
    gap: 10px;
}

.app-btn-main,
.app-btn-ghost {
    height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: 18px;
}

.btn-main {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.btn-main:hover,
.btn-main:focus {
    color: #fff;
    transform: translateY(-1px);
}

.btn-ghost {
    background: #fff;
    color: var(--green-dark);
    border: 1px solid rgba(37, 99, 235, 0.16);
}

.active-filters {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--green-dark);
    border: 1px solid rgba(37, 99, 235, 0.08);
    font-size: 0.85rem;
    font-weight: 700;
}

.results-header {
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.results-header h2 {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 800;
}

.results-header p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.view-toggle {
    display: inline-flex;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    flex-shrink: 0;
}

.toggle-btn {
    min-width: 104px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--green-dark);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-inline: 16px;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.loading-box {
    background: rgba(255,255,255,0.84);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
}

.station-card {
    position: relative;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 18px;
    height: 100%;
    transition: .2s ease;
    cursor: pointer;
    overflow: hidden;
}

.station-card:hover {
    transform: translateY(-2px);
}

.station-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,0.06), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255,107,0,0.04), transparent 22%);
    pointer-events: none;
}

.station-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.station-brand {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.1;
}

.station-address {
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.35;
}

.station-price-box {
    flex: 0 0 auto;
    min-width: 104px;
    background: linear-gradient(180deg, #ffffff, #f4f7ff);
    border-radius: 18px;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.station-price-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 800;
    color: var(--text-secondary);
    opacity: 0.8;
}

.station-price-value {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 900;
    color: var(--text-primary);
}

.station-meta-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.meta-pill {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f8fbff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    font-size: 0.83rem;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.trend-up {
    color: #dc2626;
}

.trend-down {
    color: #16a34a;
}

.trend-flat {
    color: #6b7280;
}

.sparkline-wrapper {
    position: relative;
    margin-top: 14px;
    height: 52px;
    padding: 6px 0 0;
}

.favorite-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff4db, #ffe5a8);
    color: #b77900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.map-card {
    background: rgba(255,255,255,0.88);
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 68vh;
    min-height: 420px;
    border-radius: 18px;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.07);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
    padding-bottom: 10px;
}

.search-item {
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(30, 64, 175, 0.05);
}

.search-item:hover {
    background: #f5f9ff;
}

.search-item .name {
    font-weight: 800;
    margin-bottom: 2px;
}

.search-item .meta {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.app-modal {
    border-radius: 28px;
    border: 1px solid rgba(20, 44, 26, 0.06);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.modal-subtitle {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.range-card {
    background: #f8fbff;
    border-radius: 18px;
    border: 1px solid rgba(30, 64, 175, 0.06);
    padding: 16px;
}

.range-value {
    font-weight: 800;
    color: var(--green-dark);
    margin-top: 8px;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.brands-clear-btn {
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}

.brand-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    background: #f8fbff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--text);
}

.detail-modal-content {
    border-radius: 28px;
}

.detail-modal-header {
    padding-bottom: 0;
    align-items: flex-start;
}

.detail-modal-title-block {
    padding-right: 12px;
}

.detail-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.circle-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: .2s ease;
    flex: 0 0 auto;
}

.circle-action-btn:hover {
    transform: translateY(-1px);
}

.circle-action-fav {
    background: linear-gradient(180deg, #fff4db, #ffe5a8);
    color: #a66b00;
}

.circle-action-alert {
    background: linear-gradient(180deg, #e0edff, #cfe3ff);
    color: #1e40af;
}

.circle-action-alert.is-active {
    background: linear-gradient(180deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.circle-action-close {
    background: #f2f6fb;
    color: #475569;
}

.detail-section {
    background: #f8fbff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 16px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.detail-box {
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 16px;
    padding: 14px;
}

.detail-box .k {
    font-size: 0.82rem;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.detail-box .v {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}

.detail-fuel-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.detail-fuel-btn {
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: #fff;
    color: var(--green-dark);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 800;
}

.detail-fuel-btn.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.chart-shell {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    border: 1px solid rgba(30, 64, 175, 0.06);
}

.custom-close {
    opacity: 1;
}

.price-alert-summary {
    display: grid;
    gap: 10px;
}

.price-alert-summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.price-alert-summary-label {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.price-alert-status {
    margin-bottom: 14px;
}

.price-alert-status-card {
    border-radius: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(30, 64, 175, 0.08);
    background: #f8fbff;
}

.price-alert-status-card.is-success {
    background: linear-gradient(180deg, #ecfdf5, #dcfce7);
    border-color: rgba(34, 197, 94, 0.22);
}

.price-alert-status-card.is-warning {
    background: linear-gradient(180deg, #fff7ed, #ffedd5);
    border-color: rgba(249, 115, 22, 0.20);
}

.price-alert-status-card.is-muted {
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.price-alert-status-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    margin-bottom: 4px;
}

.price-alert-status-copy {
    color: var(--text-soft);
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.price-alert-input-wrap {
    position: relative;
}

.price-alert-input-wrap .app-input {
    padding-right: 64px;
}

.price-alert-input-suffix {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
    font-weight: 700;
    pointer-events: none;
}

.price-alert-help {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.price-alert-modal-footer {
    display: flex;
    gap: 10px;
}

@media (max-width: 991.98px) {
    .results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .view-toggle {
        align-self: flex-start;
    }
}

@media (max-width: 767.98px) {
    .topbar-inner {
        min-height: 74px;
    }

    .brand-logo-wrap {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .brand-text h1 {
        font-size: 1.08rem;
    }

    .brand-text p {
        font-size: 0.83rem;
    }

    .icon-pill-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .icon-pill-btn span {
        display: none;
    }

    .search-panel {
        padding: 16px;
        border-radius: 22px;
    }

    .action-buttons-row {
        gap: 8px;
    }

    .app-btn-main,
    .app-btn-ghost {
        height: 50px;
        border-radius: 14px;
        padding-inline: 14px;
    }

    .results-header {
        padding: 16px;
        border-radius: 20px;
    }

    .results-header h2 {
        font-size: 1.05rem;
    }

    .results-header p {
        font-size: 0.88rem;
    }

    .view-toggle {
        width: auto;
        align-self: flex-start;
        max-width: 100%;
    }

    .toggle-btn {
        min-width: 92px;
        height: 40px;
        padding-inline: 14px;
        font-size: 0.92rem;
    }

    .station-card {
        padding: 16px;
        border-radius: 20px;
    }

    .station-top {
        gap: 10px;
    }

    .station-price-box {
        min-width: 92px;
        border-radius: 16px;
        padding: 9px 10px;
    }

    .station-price-value {
        font-size: 1.02rem;
    }

    .favorite-badge {
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
    }

    #map {
        height: 56vh;
        min-height: 320px;
    }

    .detail-modal-actions {
        gap: 8px;
    }

    .circle-action-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .topbar-inner {
        gap: 10px;
    }

    .brand-block {
        gap: 10px;
    }

    .brand-text p:not(.brand-title) {
        display: none;
    }

    .view-toggle {
        padding: 4px;
    }

    .toggle-btn {
        min-width: 84px;
        height: 38px;
        gap: 6px;
        font-size: 0.88rem;
    }

    .toggle-btn span {
        display: inline;
    }
}

.station-card.cheapest .station-price-box {
    background: linear-gradient(180deg, #ecfdf5, #d1fae5);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.station-card.cheapest .station-price-value {
    color: #15803d;
}
.search-input-wrap {
    position: relative;
    z-index: 1000;
}
.search-panel {
    overflow: visible;
}
.search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 9999;

    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.app-footer {
    margin-top: 40px;
    padding: 20px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-soft);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-content a {
    color: var(--text-soft);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-content a:hover {
    opacity: 0.7;
}

.footer-separator {
    opacity: 0.5;
}

html[data-resolved-theme="dark"] {

        --bg: #0b1120;
        --surface: rgba(15, 23, 42, 0.88);
        --surface-strong: #111827;
        --surface-soft: #1e293b;
        --text: #e5edf8;
        --text-primary: #f8fafc;
        --text-soft: #94a3b8;
        --text-secondary: #94a3b8;
        --border: rgba(148, 163, 184, 0.14);

        --green: #3b82f6;
        --green-dark: #1d4ed8;
        --green-soft: #1e3a5f;
        --green-soft-2: #172554;

        --warning: #fb923c;

        --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.28);
}

html[data-resolved-theme="dark"] body {

        background:
            radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 30%),
            linear-gradient(180deg, #0b1120 0%, #111827 100%);
        color: var(--text);
}

html[data-resolved-theme="dark"] .topbar {

        border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .brand-logo-wrap {

        background: linear-gradient(145deg, #1f2937, #111827);
}

html[data-resolved-theme="dark"] .icon-pill-btn {

        background: linear-gradient(135deg, var(--green-soft), #0f172a);
        color: #dbeafe;
}

html[data-resolved-theme="dark"] .search-panel {

        background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(30, 41, 59, 0.93));
}

html[data-resolved-theme="dark"] .app-input {

        border: 1px solid rgba(148, 163, 184, 0.14);
        background: rgba(15, 23, 42, 0.92);
        color: var(--text);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

html[data-resolved-theme="dark"] .app-input::placeholder {

        color: #8aa0b8;
}

html[data-resolved-theme="dark"] .search-leading-icon,
html[data-resolved-theme="dark"] .clear-input-btn {

        color: #94a3b8;
}

html[data-resolved-theme="dark"] .btn-ghost {

        background: #111827;
        color: #dbeafe;
        border: 1px solid rgba(148, 163, 184, 0.16);
}

html[data-resolved-theme="dark"] .active-filter-chip {

        background: rgba(59, 130, 246, 0.16);
        color: #dbeafe;
        border: 1px solid rgba(59, 130, 246, 0.18);
}

html[data-resolved-theme="dark"] .results-header {

        background: rgba(17, 24, 39, 0.82);
}

html[data-resolved-theme="dark"] .view-toggle {

        background: #0f172a;
        border: 1px solid rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .toggle-btn {

        color: #c7d2fe;
}

html[data-resolved-theme="dark"] .loading-box {

        background: rgba(17, 24, 39, 0.84);
}

html[data-resolved-theme="dark"] .station-card {

        background: rgba(17, 24, 39, 0.92);
}

html[data-resolved-theme="dark"] .station-price-box {

        background: linear-gradient(180deg, #0f172a, #1e293b);
        border: 1px solid rgba(59, 130, 246, 0.14);
}

html[data-resolved-theme="dark"] .meta-pill {

        background: #0f172a;
        border: 1px solid rgba(148, 163, 184, 0.10);
        color: var(--text-soft);
}

html[data-resolved-theme="dark"] .favorite-badge {

        background: linear-gradient(180deg, #4b3a14, #6b4f1d);
        color: #ffd66b;
}

html[data-resolved-theme="dark"] .map-card {

        background: rgba(17, 24, 39, 0.88);
}

html[data-resolved-theme="dark"] .search-dropdown {

        background: #111827;
        border: 1px solid rgba(148, 163, 184, 0.12);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

html[data-resolved-theme="dark"] .search-item {

        border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

html[data-resolved-theme="dark"] .search-item:hover {

        background: #1e293b;
}

html[data-resolved-theme="dark"] .app-modal {

        border: 1px solid rgba(148, 163, 184, 0.12);
        background: rgba(17, 24, 39, 0.96);
}

html[data-resolved-theme="dark"] .range-card,
html[data-resolved-theme="dark"] .brand-check,
html[data-resolved-theme="dark"] .detail-section {

        background: #0f172a;
        border: 1px solid rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .detail-box,
html[data-resolved-theme="dark"] .detail-fuel-btn,
html[data-resolved-theme="dark"] .chart-shell {

        background: #111827;
        border: 1px solid rgba(148, 163, 184, 0.10);
        color: var(--text);
}

html[data-resolved-theme="dark"] .detail-fuel-btn {

        color: #dbeafe;
}

html[data-resolved-theme="dark"] .circle-action-close {

        background: #1f2937;
        color: #cbd5e1;
}

html[data-resolved-theme="dark"] .station-card.cheapest .station-price-box {

        background: linear-gradient(180deg, #052e1b, #064e2a);
        border: 1px solid rgba(34, 197, 94, 0.28);
}

html[data-resolved-theme="dark"] .station-card.cheapest .station-price-value {

        color: #86efac;
}

html[data-resolved-theme="dark"] .app-footer {

        border-top: 1px solid rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .brands-filter-icon {

        color: #94a3b8;
}

html[data-resolved-theme="dark"] .brand-empty-state {

        background: #0f172a;
        border: 1px solid rgba(148, 163, 184, 0.10);
        color: var(--text-soft);
}


.brands-filter-wrap {
    position: relative;
    margin-bottom: 12px;
}

.brands-filter-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a968d;
    z-index: 4;
    pointer-events: none;
}

.brands-filter-input {
    padding-right: 42px;
}

.brand-empty-state {
    grid-column: 1 / -1;
    background: #f8fbff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
    color: var(--text-soft);
    text-align: center;
}

.search-panel-top-copy {
    margin-bottom: 14px;
}

.search-kicker {
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.search-heading {
    margin: 0;
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
}

.search-subcopy {
    margin: 6px 0 0;
    max-width: 760px;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.35;
}

.search-support-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.support-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.12);
    color: #8a5a00;
    border: 1px solid rgba(255, 193, 7, 0.18);
    font-size: 0.84rem;
    font-weight: 700;
}

.support-pill-muted {
    background: rgba(37, 99, 235, 0.06);
    color: var(--green-dark);
    border-color: rgba(37, 99, 235, 0.10);
}

.seo-mini-block {
    margin-top: 20px;
    margin-bottom: 8px;
}

.seo-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.seo-mini-item {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow-soft);
}

.seo-mini-item h2 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}

.seo-mini-item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.4;
}

.icon-pill-btn.is-active {
    background: linear-gradient(135deg, #fff4db, #ffe5a8);
    color: #8a5a00;
}

@media (max-width: 991.98px) {
    .seo-mini-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .search-panel-top-copy {
        margin-bottom: 10px;
    }

    .search-kicker {
        font-size: 0.72rem;
        margin-bottom: 2px;
    }

    .search-heading {
        font-size: 1.06rem;
    }

    .search-subcopy {
        font-size: 0.86rem;
        line-height: 1.3;
    }

    .search-support-row {
        margin-top: 12px;
        gap: 6px;
    }

    .support-pill {
        font-size: 0.77rem;
        padding: 6px 10px;
        min-height: 30px;
    }

    .seo-mini-block {
        margin-top: 14px;
    }

    .seo-mini-item {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .seo-mini-item h2 {
        font-size: 0.92rem;
    }

    .seo-mini-item p {
        font-size: 0.82rem;
    }
}

@media (max-width: 575.98px) {
    .search-subcopy {
        max-width: none;
    }

    .support-pill-muted {
        display: none;
    }

    .seo-mini-grid {
        gap: 8px;
    }

    .seo-mini-item {
        padding: 11px 12px;
    }
}

html[data-resolved-theme="dark"] .support-pill {

        background: rgba(251, 191, 36, 0.14);
        color: #ffd66b;
        border-color: rgba(251, 191, 36, 0.18);
}

html[data-resolved-theme="dark"] .support-pill-muted {

        background: rgba(59, 130, 246, 0.14);
        color: #dbeafe;
        border-color: rgba(59, 130, 246, 0.18);
}

html[data-resolved-theme="dark"] .seo-mini-item {

        background: rgba(17, 24, 39, 0.78);
}

html[data-resolved-theme="dark"] .icon-pill-btn.is-active {

        background: linear-gradient(135deg, #4b3a14, #6b4f1d);
        color: #ffd66b;
}



.legal-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding: 24px 12px;
}

.legal-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.legal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
}

.legal-back {
    border: none;
    background: #eef2ff;
    color: #1e40af;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.legal-back:hover {
    background: #e0e7ff;
}

.legal-content h2 {
    margin-top: 18px;
    font-size: 1.1rem;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .legal-card {
        padding: 18px 16px;
    }

    .legal-title {
        font-size: 1.3rem;
    }

    .legal-back {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.loading-overlay-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(37, 99, 235, 0.16), transparent 38%),
        rgba(244, 247, 252, 0.78);
    backdrop-filter: blur(10px);
}

.loading-center {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    text-align: center;
    padding: 34px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.16);
}

.loading-orb {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, #60a5fa, #2563eb 70%);
    box-shadow:
        0 0 0 10px rgba(37, 99, 235, 0.08),
        0 12px 30px rgba(37, 99, 235, 0.24);
    animation: loadingPulse 1.8s ease-in-out infinite;
}

.loading-orb-inner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1.45rem;
    backdrop-filter: blur(4px);
}

.loading-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 8px;
}

.loading-subtitle {
    min-height: 44px;
    font-size: 0.96rem;
    color: var(--text-soft);
    line-height: 1.45;
    transition: opacity .25s ease, transform .25s ease;
}

.loading-subtitle.is-changing {
    opacity: .35;
    transform: translateY(2px);
}

.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.loading-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2563eb;
    opacity: .25;
    animation: loadingDots 1.2s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
    animation-delay: .2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: .4s;
}

body.loading-active {
    overflow: hidden;
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 10px rgba(37, 99, 235, 0.08),
            0 12px 30px rgba(37, 99, 235, 0.24);
    }
    50% {
        transform: scale(1.04);
        box-shadow:
            0 0 0 16px rgba(37, 99, 235, 0.05),
            0 16px 38px rgba(37, 99, 235, 0.28);
    }
}

@keyframes loadingDots {
    0%, 80%, 100% {
        opacity: .25;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@media (max-width: 575.98px) {
    .loading-center {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .loading-orb {
        width: 78px;
        height: 78px;
    }

    .loading-orb-inner {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .loading-title {
        font-size: 1.02rem;
    }

    .loading-subtitle {
        font-size: 0.91rem;
        min-height: 48px;
    }
}

html[data-resolved-theme="dark"] .loading-overlay-backdrop {

        background:
            radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 38%),
            rgba(10, 14, 24, 0.76);
}

html[data-resolved-theme="dark"] .loading-center {

        background: rgba(17, 24, 39, 0.78);
        border-color: rgba(148, 163, 184, 0.12);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}



.circle-action-share {
    background: linear-gradient(180deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}

.share-feedback-modal .modal-content,
.share-feedback-modal {
    border-radius: 24px;
}

.share-feedback-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

html[data-resolved-theme="dark"] .circle-action-alert {

        background: linear-gradient(180deg, #172554, #1e3a8a);
        color: #dbeafe;
}

html[data-resolved-theme="dark"] .circle-action-share {

        background: linear-gradient(180deg, #1e3a5f, #172554);
        color: #dbeafe;
}

html[data-resolved-theme="dark"] .circle-action-alert.is-active {

        background: linear-gradient(180deg, #1d4ed8, #1e40af);
        color: #eff6ff;
}

html[data-resolved-theme="dark"] .share-feedback-icon {

        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

html[data-resolved-theme="dark"] .price-alert-status-card {

        background: #0f172a;
        border-color: rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .price-alert-status-card.is-success {

        background: linear-gradient(180deg, #052e1b, #064e3b);
        border-color: rgba(34, 197, 94, 0.20);
}

html[data-resolved-theme="dark"] .price-alert-status-card.is-warning {

        background: linear-gradient(180deg, #431407, #7c2d12);
        border-color: rgba(251, 146, 60, 0.24);
}



html[data-resolved-theme="dark"] .meta-pill.trend-up {

        color: #dc2626;
}

html[data-resolved-theme="dark"] .meta-pill.trend-down {

        color: #16a34a;
}

html[data-resolved-theme="dark"] .meta-pill.trend-flat {

        color: #6b7280;
}



.insta-hero-panel {
    margin-bottom: 18px;
}

.insta-hero-side {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--green-dark);
    font-weight: 700;
    border: 1px solid rgba(37, 99, 235, 0.10);
}

.insta-summary-panel {
    margin-bottom: 18px;
}

.insta-last-update {
    font-size: 0.95rem;
    color: var(--text-soft);
    font-weight: 700;
}

.insta-stat-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.insta-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-soft), rgba(255, 255, 255, 0.6));
    color: var(--green-dark);
    font-size: 1.3rem;
    flex: 0 0 auto;
}

.insta-stat-body {
    min-width: 0;
}

.insta-stat-body span {
    display: block;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.insta-stat-body strong {
    display: block;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.15;
}

.insta-idea-card {
    height: 100%;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.insta-idea-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    border-radius: 24px 0 0 24px;
    background: var(--green);
}

.insta-accent-primary::before {
    background: #2563eb;
}

.insta-accent-success::before {
    background: #16a34a;
}

.insta-accent-danger::before {
    background: #dc2626;
}

.insta-accent-warning::before {
    background: #ea580c;
}

.insta-accent-secondary::before {
    background: #64748b;
}

.insta-idea-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.insta-idea-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 244, 255, 0.9));
    box-shadow: var(--shadow-soft);
    color: var(--green-dark);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.insta-idea-title-wrap h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.insta-idea-title-wrap p {
    margin: 4px 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.insta-idea-list {
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--text);
}

.insta-idea-list li {
    margin-bottom: 8px;
    line-height: 1.45;
}

.insta-copy-box {
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px dashed rgba(37, 99, 235, 0.22);
    padding: 16px;
    color: var(--text);
    white-space: pre-line;
    line-height: 1.55;
    min-height: 180px;
}

html[data-theme="dark"] .insta-badge,
body.dark-mode .insta-badge,
.dark-mode .insta-badge {
    background: rgba(96, 165, 250, 0.14);
    color: #e5eefc;
    border-color: rgba(96, 165, 250, 0.22);
}

html[data-theme="dark"] .insta-stat-card,
body.dark-mode .insta-stat-card,
.dark-mode .insta-stat-card {
    background: #172033;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .insta-stat-icon,
body.dark-mode .insta-stat-icon,
.dark-mode .insta-stat-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(30, 41, 59, 0.95));
    color: #dbeafe;
}

html[data-theme="dark"] .insta-stat-body span,
body.dark-mode .insta-stat-body span,
.dark-mode .insta-stat-body span {
    color: #9fb0cc;
}

html[data-theme="dark"] .insta-stat-body strong,
body.dark-mode .insta-stat-body strong,
.dark-mode .insta-stat-body strong {
    color: #f8fafc;
}

html[data-theme="dark"] .insta-idea-card,
body.dark-mode .insta-idea-card,
.dark-mode .insta-idea-card {
    background: #172033;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .insta-idea-icon,
body.dark-mode .insta-idea-icon,
.dark-mode .insta-idea-icon {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.22), rgba(30, 41, 59, 0.92));
    color: #dbeafe;
    box-shadow: none;
}

html[data-theme="dark"] .insta-idea-title-wrap h3,
body.dark-mode .insta-idea-title-wrap h3,
.dark-mode .insta-idea-title-wrap h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .insta-idea-title-wrap p,
body.dark-mode .insta-idea-title-wrap p,
.dark-mode .insta-idea-title-wrap p {
    color: #9fb0cc;
}

html[data-theme="dark"] .insta-idea-list,
body.dark-mode .insta-idea-list,
.dark-mode .insta-idea-list {
    color: #e5eefc;
}

html[data-theme="dark"] .insta-copy-box,
body.dark-mode .insta-copy-box,
.dark-mode .insta-copy-box {
    background: #0f172a;
    border-color: rgba(96, 165, 250, 0.28);
    color: #f8fafc;
}

html[data-theme="dark"] .insta-last-update,
body.dark-mode .insta-last-update,
.dark-mode .insta-last-update {
    color: #9fb0cc;
}

@media (max-width: 991.98px) {
    .insta-copy-box {
        min-height: 0;
    }
}

.search-panel-top-copy-compact {
    margin-bottom: 16px;
}

.search-panel-top-copy-compact .search-heading {
    font-size: 1.5rem;
}

.search-toolbar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-toolbar-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px 130px 130px;
    gap: 12px;
    align-items: end;
}

.search-field-block,
.search-submit-block {
    min-width: 0;
}

.search-toolbar-secondary {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.search-secondary-btn {
    min-width: 120px;
}

.search-toolbar-desktop-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 220px));
    gap: 12px;
    align-items: end;
}

.search-inline-control {
    min-width: 0;
}

.icon-pill-btn.is-active,
.search-secondary-btn.is-active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-color: transparent;
}

@media (max-width: 991.98px) {
    .search-panel-top-copy-compact .search-heading {
        font-size: 1.3rem;
    }

    .search-toolbar-main {
        grid-template-columns: minmax(0, 1fr) 132px 120px 120px;
    }

    .search-toolbar-desktop-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .search-panel-top-copy {
        display: none;
    }

    .search-panel-top-copy-compact {
        display: block;
        margin-bottom: 14px;
    }

    .search-toolbar-main {
        grid-template-columns: minmax(0, 1fr) 120px;
        gap: 10px;
    }

    .search-toolbar-secondary {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .search-secondary-btn {
        width: 100%;
        min-width: 0;
    }

    .search-toolbar-desktop-filters {
        display: none;
    }

    #btnSearchSubmit.app-btn-main,
    .search-secondary-btn.app-btn-ghost {
        height: 50px;
        border-radius: 14px;
        padding-inline: 12px;
        font-size: 0.95rem;
    }

    .active-filters {
        margin-top: 14px;
    }
}

@media (max-width: 575.98px) {
    .search-panel {
        padding: 14px;
    }

    .search-toolbar-main {
        grid-template-columns: minmax(0, 1fr) 110px;
        gap: 8px;
    }

    .search-toolbar-secondary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    #btnSearchSubmit.app-btn-main,
    .search-secondary-btn.app-btn-ghost {
        height: 48px;
        border-radius: 14px;
        padding-inline: 10px;
        font-size: 0.9rem;
    }

    .search-secondary-btn i,
    #btnSearchSubmit i {
        margin-right: 4px;
    }

    .favorites-mobile-btn span {
        display: none;
    }

    .favorites-mobile-btn i {
        margin-right: 0;
    }
}

.station-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.station-fav-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 14px;
    background: #f8fbff;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: .2s ease;
}

.station-fav-btn:hover {
    transform: translateY(-1px);
    color: #b77900;
    background: linear-gradient(180deg, #fff8e7, #ffefbf);
}

.station-fav-btn.is-favorite {
    color: #b77900;
    background: linear-gradient(180deg, #fff4db, #ffe5a8);
    border-color: rgba(183, 121, 0, 0.18);
}

.station-fav-btn i {
    font-size: 1.05rem;
    line-height: 1;
}

html[data-resolved-theme="dark"] .station-fav-btn {

        background: #0f172a;
        color: #94a3b8;
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .station-fav-btn:hover,
html[data-resolved-theme="dark"] .station-fav-btn.is-favorite {

        background: linear-gradient(180deg, #4b3a14, #6b4f1d);
        color: #ffd66b;
        border-color: rgba(255, 214, 107, 0.16);
}



@media (max-width: 767.98px) {
    .station-side {
        gap: 8px;
    }

    .station-fav-btn {
        width: 30px;
        height: 30px;
        border-radius: 12px;
    }
}

.detail-hero-card {
    background: #f8fbff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 16px;
}

.detail-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.detail-hero-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.detail-hero-brand {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
}

.detail-hero-address {
    margin-top: 8px;
    color: var(--text-soft);
    line-height: 1.45;
}

.detail-hero-schedule {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    color: var(--text-soft);
    font-weight: 700;
}

.detail-price-card {
    min-width: 190px;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 18px;
    padding: 14px 16px;
    text-align: left;
    flex: 0 0 auto;
}

.detail-price-label {
    font-size: 0.82rem;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.detail-price-fuel {
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.detail-price-value {
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    color: var(--green-dark);
}

.detail-hero-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.detail-tabs-wrap {
    margin-bottom: 16px;
}

.detail-tabs-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.detail-tab-btn {
    border: 0;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: transparent;
    color: var(--green-dark);
    font-weight: 800;
    transition: .2s ease;
}

.detail-tab-btn.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.detail-tab-panel {
    min-width: 0;
}

.detail-empty-card {
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 18px;
    padding: 18px;
    color: var(--text-soft);
    font-weight: 700;
}

.detail-fuels-list {
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 18px;
    padding: 8px 14px;
}

.detail-fuel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}

.detail-fuel-row.is-selected .detail-fuel-row-name,
.detail-fuel-row.is-selected .detail-fuel-row-right {
    color: var(--green-dark);
}

.detail-fuel-row-left {
    min-width: 0;
}

.detail-fuel-row-name {
    font-weight: 800;
    color: var(--text);
}

.detail-fuel-row-sub {
    margin-top: 4px;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.detail-fuel-row-right {
    flex: 0 0 auto;
    font-weight: 900;
    color: var(--text);
}

.detail-fuel-divider {
    height: 1px;
    background: rgba(30, 64, 175, 0.08);
}

.detail-mini-map {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}

.detail-map-meta {
    margin-top: 12px;
}

.detail-map-address {
    color: var(--text-soft);
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 767.98px) {
    .detail-hero-top {
        flex-direction: column;
    }

    .detail-price-card {
        width: 100%;
        min-width: 0;
    }

    .detail-tabs-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        border-radius: 18px;
    }

    .detail-tab-btn {
        width: 100%;
        min-height: 44px;
        padding-inline: 10px;
        font-size: 0.92rem;
    }

    .detail-mini-map {
        height: 260px;
    }

    .detail-fuel-row {
        align-items: flex-start;
    }
}

.detail-hero-card {
    
    border: 1px solid rgba(148, 163, 184, 0.10);
}

.detail-hero-schedule,
.detail-price-card,
.detail-empty-card,
.detail-fuels-list {
    
    border: 1px solid rgba(148, 163, 184, 0.10);
}

.detail-tabs-nav {
    
    border: 1px solid rgba(148, 163, 184, 0.12);
}



.detail-fuel-divider {
    background: rgba(148, 163, 184, 0.12);
}

.detail-hero-top-compact {
    align-items: center;
}

.detail-hero-card {
    padding: 16px 18px;
}

.detail-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-hero-actions {
    margin-top: 0;
}

@media (max-width: 767.98px) {
    .detail-hero-top-compact {
        align-items: stretch;
    }

    .detail-hero-copy {
        width: 100%;
    }
}

html[data-resolved-theme="dark"] .detail-hero-card {

    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .detail-hero-schedule,
html[data-resolved-theme="dark"] .detail-price-card,
html[data-resolved-theme="dark"] .detail-empty-card,
html[data-resolved-theme="dark"] .detail-fuels-list {

    background: #111827;
    border: 1px solid rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .detail-tabs-nav {

    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .detail-tab-btn {

    color: #dbeafe;
}



.app-install-banner {
    margin-bottom: 18px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 32%),
        linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
}

.app-install-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
}

.app-install-banner-copy {
    min-width: 0;
}

.app-install-banner-copy h3 {
    margin: 10px 0 6px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
}

.app-install-banner-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    line-height: 1.4;
}

.app-install-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 800;
}

.app-install-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.app-install-store-btn,
.app-install-modal-store {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: transform .18s ease;
}

.app-install-store-btn:hover,
.app-install-modal-store:hover {
    transform: translateY(-1px);
}

.app-install-store-btn img,
.app-install-modal-store img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.app-install-close,
.app-install-modal-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transition: .18s ease;
}

.app-install-close:hover,
.app-install-modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.app-install-modal-content {
    overflow: hidden;
    border-radius: 28px;
}

.app-install-modal-body {
    position: relative;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
}

.app-install-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(37, 99, 235, 0.10);
    color: var(--green-dark);
}

.app-install-modal-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.app-install-modal-copy {
    text-align: center;
}

.app-install-modal-copy h4 {
    margin: 0 0 10px;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.app-install-modal-copy p {
    margin: 0 auto 18px;
    max-width: 420px;
    color: var(--text-soft);
    line-height: 1.5;
}

.app-install-modal-later {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    width: fit-content;
    min-width: 140px;
}

.app-install-modal-points {
    display: grid;
    gap: 10px;
    margin: 0 auto 20px;
    max-width: 360px;
    text-align: left;
}

.app-install-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.08);
    color: var(--text);
    font-weight: 700;
}

.app-install-point i {
    color: var(--green);
}

@media (max-width: 991.98px) {
    .app-install-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .app-install-banner-actions {
        justify-content: space-between;
    }
}

@media (max-width: 575.98px) {
    .app-install-banner {
        border-radius: 20px;
    }

    .app-install-banner-content {
        padding: 16px;
        gap: 14px;
    }

    .app-install-banner-copy h3 {
        font-size: 1.05rem;
    }

    .app-install-banner-copy p {
        font-size: 0.92rem;
    }

    .app-install-store-btn img,
    .app-install-modal-store img {
        height: 50px;
        max-width: 170px;
    }

    .app-install-modal-body {
        padding: 22px 18px 20px;
    }

    .app-install-modal-copy h4 {
        font-size: 1.3rem;
    }
}

html[data-resolved-theme="dark"] .app-install-modal-body {

        background:
            radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 30%),
            linear-gradient(180deg, rgba(17,24,39,0.98), rgba(15,23,42,0.98));
}

html[data-resolved-theme="dark"] .app-install-modal-copy h4 {

        color: #f8fafc;
}

html[data-resolved-theme="dark"] .app-install-modal-copy p {

        color: #cbd5e1;
}

html[data-resolved-theme="dark"] .app-install-point {

        background: rgba(30, 41, 59, 0.76);
        border-color: rgba(148, 163, 184, 0.14);
        color: #f8fafc;
}

html[data-resolved-theme="dark"] .app-install-modal-close {

        background: rgba(148, 163, 184, 0.12);
        color: #e2e8f0;
}



/* =========================================================
   BOTONES DE MODOS DE BÚSQUEDA / TOPBAR
   ========================================================= */

.topbar-action-btn {
    border: 0;
    border-radius: 999px;
    min-height: 46px;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--green-soft), #f8fbff);
    color: var(--green-dark);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    transition: .2s ease;
    white-space: nowrap;
}

.topbar-action-btn:hover {
    transform: translateY(-1px);
}

.topbar-action-btn-favorites.is-active {
    background: linear-gradient(135deg, #fff4db, #ffe5a8);
    color: #8a5a00;
    box-shadow: 0 10px 22px rgba(183, 121, 0, 0.16);
}

.search-mode-btn {
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: 18px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: linear-gradient(135deg, #ffffff, var(--green-soft-2));
    color: var(--green-dark);
    box-shadow: var(--shadow-soft);
    transition: .2s ease;
}

.search-mode-btn:hover,
.search-mode-btn:focus {
    transform: translateY(-1px);
    color: var(--green-dark);
    border-color: rgba(37, 99, 235, 0.18);
}

.search-mode-btn i,
.topbar-action-btn i {
    line-height: 1;
}

.search-mode-btn-neutral {
    background: linear-gradient(135deg, #ffffff, #eef4ff);
    color: var(--green-dark);
}

.search-mode-btn-nearby {
    background: linear-gradient(135deg, #ffffff, #eef6ff);
    color: var(--green-dark);
}

.search-mode-btn-favorites {
    background: linear-gradient(135deg, #ffffff, #fff8ec);
    color: #8a5a00;
    border-color: rgba(183, 121, 0, 0.14);
}

.search-mode-btn-nearby.is-active {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    color: #1e3a8a;
    border-color: rgba(59, 130, 246, 0.26);
    box-shadow: 0 10px 22px rgba(59, 130, 246, 0.20);
}

.search-mode-btn-favorites.is-active {
    background: linear-gradient(135deg, #fff4db, #ffe5a8);
    color: #8a5a00;
    border-color: rgba(183, 121, 0, 0.22);
    box-shadow: 0 10px 22px rgba(183, 121, 0, 0.16);
}

.search-mode-btn-neutral:hover {
    background: linear-gradient(135deg, #ffffff, #e8f0ff);
}

.search-mode-btn-nearby:hover {
    background: linear-gradient(135deg, #f8fbff, #e6f0ff);
}

.search-mode-btn-favorites:hover {
    background: linear-gradient(135deg, #fffdf8, #fff2cf);
    color: #8a5a00;
}

.search-mode-btn-neutral:focus,
.search-mode-btn-nearby:focus,
.search-mode-btn-favorites:focus,
.topbar-action-btn:focus {
    outline: none;
    box-shadow:
        0 0 0 .22rem rgba(37, 99, 235, 0.12),
        var(--shadow-soft);
}

@media (max-width: 767.98px) {
    .search-mode-btn {
        min-height: 50px;
        border-radius: 14px;
        padding-inline: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .search-mode-btn {
        min-height: 48px;
        border-radius: 14px;
        padding-inline: 10px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .favorites-mobile-btn span {
        display: none;
    }

    .favorites-mobile-btn i {
        margin-right: 0;
    }
}

html[data-resolved-theme="dark"] .topbar-action-btn {

        background: linear-gradient(135deg, #1e3a5f, #0f172a);
        color: #dbeafe;
        border: 1px solid rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .topbar-action-btn-favorites.is-active {

        background: linear-gradient(135deg, #4b3a14, #6b4f1d);
        color: #ffd66b;
        border-color: rgba(255, 214, 107, 0.16);
}

html[data-resolved-theme="dark"] .search-mode-btn {

        background: linear-gradient(135deg, #111827, #162033);
        color: #dbeafe;
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .search-mode-btn:hover,
html[data-resolved-theme="dark"] .search-mode-btn:focus {

        color: #eff6ff;
        border-color: rgba(148, 163, 184, 0.18);
}

html[data-resolved-theme="dark"] .search-mode-btn-neutral {

        background: linear-gradient(135deg, #111827, #172554);
}

html[data-resolved-theme="dark"] .search-mode-btn-nearby {

        background: linear-gradient(135deg, #111827, #162338);
}

html[data-resolved-theme="dark"] .search-mode-btn-favorites {

        background: linear-gradient(135deg, #1f2937, #3b2c12);
        color: #ffd66b;
        border-color: rgba(255, 214, 107, 0.12);
}

html[data-resolved-theme="dark"] .search-mode-btn-nearby.is-active {

        background: linear-gradient(135deg, #1e3a5f, #2563eb);
        color: #eff6ff;
        border-color: rgba(96, 165, 250, 0.24);
}

html[data-resolved-theme="dark"] .search-mode-btn-favorites.is-active {

        background: linear-gradient(135deg, #4b3a14, #6b4f1d);
        color: #ffd66b;
        border-color: rgba(255, 214, 107, 0.16);
}



.open-now-filter-card {
    background: #f8fbff;
    border: 1px solid rgba(30, 64, 175, 0.06);
    border-radius: 18px;
    padding: 14px 16px;
}

.open-now-filter-card .form-check-input {
    width: 2.8rem;
    height: 1.5rem;
    cursor: pointer;
}

.open-now-filter-card .form-check-label {
    color: var(--text);
    cursor: pointer;
}

.open-now-filter-help {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.station-brand-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.station-closed-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.20);
    flex: 0 0 auto;
}

.station-closed-badge i {
    font-size: 0.82rem;
    line-height: 1;
}

.station-card.is-closed {
    opacity: 0.88;
}

.station-card.is-closed .station-price-box {
    background: linear-gradient(180deg, #f3f4f6, #e5e7eb);
    border-color: rgba(107, 114, 128, 0.14);
}

.station-card.is-closed .station-price-value {
    color: #6b7280;
}

.station-card.is-closed .sparkline-wrapper {
    opacity: 0.6;
}

.map-marker-bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
    font-size: 16px;
}

.map-marker-bubble.is-open {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.map-marker-bubble.is-closed {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    box-shadow: 0 8px 18px rgba(107, 114, 128, 0.28);
}

.detail-hero-schedule.is-closed {
    background: #f3f4f6;
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.18);
}

html[data-resolved-theme="dark"] .open-now-filter-card {

        background: #0f172a;
        border-color: rgba(148, 163, 184, 0.10);
}

html[data-resolved-theme="dark"] .station-closed-badge {

        background: #1f2937;
        color: #94a3b8;
        border-color: rgba(148, 163, 184, 0.16);
}

html[data-resolved-theme="dark"] .station-card.is-closed .station-price-box {

        background: linear-gradient(180deg, #1f2937, #111827);
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .station-card.is-closed .station-price-value {

        color: #94a3b8;
}

html[data-resolved-theme="dark"] .detail-hero-schedule.is-closed {

        background: #1f2937;
        color: #94a3b8;
        border-color: rgba(148, 163, 184, 0.14);
}



.distance-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    backdrop-filter: blur(10px);
}

.distance-notice-copy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.distance-notice-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--green-dark);
    flex: 0 0 auto;
}

.distance-notice-copy strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.distance-notice-copy span {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.4;
}

.distance-notice-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.distance-notice-link {
    border: 0;
    background: transparent;
    color: var(--green-dark);
    font-weight: 800;
    padding: 6px 8px;
}

.distance-notice-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f2f6fb;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.distance-notice-close:hover,
.distance-notice-link:hover {
    opacity: 0.85;
}

@media (max-width: 767.98px) {
    .distance-notice {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .distance-notice-actions {
        justify-content: space-between;
    }
}

html[data-resolved-theme="dark"] .distance-notice {

        background: rgba(17, 24, 39, 0.88);
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .distance-notice-icon {

        background: rgba(59, 130, 246, 0.16);
        color: #dbeafe;
}

html[data-resolved-theme="dark"] .distance-notice-link {

        color: #dbeafe;
}

html[data-resolved-theme="dark"] .distance-notice-close {

        background: #1f2937;
        color: #cbd5e1;
}



.route-search-panel {
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,251,255,0.92));
    box-shadow: var(--shadow-soft);
}

.route-search-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text);
}

.route-search-subtitle {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.4;
}

.route-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 180px 180px;
    gap: 12px;
    align-items: end;
}

.route-field-block,
.route-actions-block {
    min-width: 0;
}

.route-summary-box {
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.10);
    color: var(--text);
    font-weight: 700;
}

.route-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.route-summary-pill {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.08);
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--green-dark);
}

.route-start-end-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
    font-size: 14px;
}

.route-start-marker {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.route-end-marker {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

@media (max-width: 991.98px) {
    .route-search-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .route-search-grid {
        grid-template-columns: 1fr;
    }

    .route-search-panel {
        padding: 16px;
    }
}

html[data-resolved-theme="dark"] .route-search-panel {

        background: linear-gradient(180deg, rgba(17,24,39,0.92), rgba(15,23,42,0.94));
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .route-summary-box {

        background: rgba(59, 130, 246, 0.12);
        border-color: rgba(96, 165, 250, 0.18);
}

html[data-resolved-theme="dark"] .route-summary-pill {

        background: #0f172a;
        border-color: rgba(148, 163, 184, 0.12);
        color: #dbeafe;
}



.search-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    margin-bottom: 16px;
}

.search-tab-btn {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--green-dark);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    transition: .2s ease;
}

.search-tab-btn.is-active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.search-tab-panel {
    min-width: 0;
}

.route-search-compact {
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 20px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(248,251,255,0.94));
    box-shadow: var(--shadow-soft);
}

.route-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 180px 150px;
    gap: 12px;
    align-items: end;
}

.route-field-block,
.route-actions-block,
.route-inline-control {
    min-width: 0;
}

.route-summary-inline {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow-soft);
}

.route-summary-inline-title {
    font-weight: 900;
    color: var(--text);
    margin-right: 4px;
}

.route-summary-inline-pill {
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(30, 64, 175, 0.08);
    font-size: 0.83rem;
    font-weight: 800;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.route-start-end-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
    font-size: 14px;
}

.route-start-marker {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.route-end-marker {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

@media (max-width: 991.98px) {
    .route-search-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .search-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-tab-btn {
        width: 100%;
        min-height: 42px;
        padding-inline: 12px;
    }

    .route-search-grid {
        grid-template-columns: 1fr;
    }

    .route-search-compact {
        padding: 14px;
    }

    .route-summary-inline {
        padding: 12px;
    }
}

html[data-resolved-theme="dark"] .search-tabs {

        background: #0f172a;
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .search-tab-btn {

        color: #dbeafe;
}

html[data-resolved-theme="dark"] .route-search-compact {

        background: linear-gradient(180deg, rgba(17,24,39,0.92), rgba(15,23,42,0.94));
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .route-summary-inline {

        background: rgba(59, 130, 246, 0.12);
        border-color: rgba(96, 165, 250, 0.18);
}

html[data-resolved-theme="dark"] .route-summary-inline-title {

        color: #f8fafc;
}

html[data-resolved-theme="dark"] .route-summary-inline-pill {

        background: #0f172a;
        border-color: rgba(148, 163, 184, 0.12);
        color: #dbeafe;
}



.price-marker {
    min-width: 52px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    border: 2px solid #fff;
    white-space: nowrap;
}

.custom-gas-marker {
    background: transparent;
    border: 0;
}

.price-pin {
    position: relative;
    width: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.price-pin-inner {
    width: 86px;
    min-height: 58px;
    border-radius: 18px;
    padding: 8px 8px 7px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 2px solid rgba(255,255,255,0.92);
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.22),
        0 3px 8px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(2px);
    text-align: center;
}

.price-pin-tip {
    width: 18px;
    height: 18px;
    margin-top: -8px;
    transform: rotate(45deg);
    border-right: 2px solid rgba(255,255,255,0.92);
    border-bottom: 2px solid rgba(255,255,255,0.92);
    box-shadow: 6px 6px 12px rgba(15, 23, 42, 0.10);
}

.price-pin-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.98;
}

.price-pin-price {
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-pin-brand {
    max-width: 100%;
    font-size: 0.70rem;
    font-weight: 700;
    line-height: 1.05;
    opacity: 0.96;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.price-pin.is-normal .price-pin-inner,
.price-pin.is-normal .price-pin-tip {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
}

.price-pin.is-cheapest .price-pin-inner,
.price-pin.is-cheapest .price-pin-tip {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 55%, #15803d 100%);
}

.price-pin.is-favorite .price-pin-inner,
.price-pin.is-favorite .price-pin-tip {
    background: linear-gradient(180deg, #f4c84a 0%, #d4a61b 55%, #b98508 100%);
    color: #fffdf5;
}

.price-pin.is-closed .price-pin-inner,
.price-pin.is-closed .price-pin-tip {
    background: linear-gradient(180deg, #9ca3af 0%, #6b7280 60%, #4b5563 100%);
}

@media (max-width: 767.98px) {
    .price-pin {
        width: 82px;
    }

    .price-pin-inner {
        width: 82px;
        min-height: 56px;
        border-radius: 17px;
        padding: 8px 7px 7px;
    }

    .price-pin-price {
        font-size: 1rem;
    }

    .price-pin-brand {
        font-size: 0.68rem;
    }
}

.route-search-compact {
    padding: 18px;
}

.route-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.35fr) 180px 130px 170px;
    gap: 12px;
    align-items: end;
}

.route-field-block-origin {
    min-width: 0;
}

.route-origin-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 10px;
    align-items: center;
}

.route-input-wrap {
    min-width: 0;
}

.route-icon-btn {
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 16px;
}

.route-icon-btn span {
    display: none;
}

.route-icon-btn i {
    margin: 0;
    font-size: 1.05rem;
}

.route-fuel-block,
.route-filters-block,
.route-submit-block {
    min-width: 0;
}

.route-filters-block .app-btn-ghost,
.route-submit-block .app-btn-main {
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .route-search-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 160px 120px 150px;
    }
}

@media (max-width: 991.98px) {
    .route-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .route-fuel-block {
        grid-column: span 1;
    }

    .route-filters-block,
    .route-submit-block {
        grid-column: span 1;
    }
}

@media (max-width: 767.98px) {
    .route-search-compact {
        padding: 14px;
    }

    .route-search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .route-origin-inline {
        grid-template-columns: minmax(0, 1fr) 50px;
        gap: 8px;
    }

    .route-icon-btn {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .route-filters-block .app-btn-ghost,
    .route-submit-block .app-btn-main {
        height: 50px;
    }
}

html[data-resolved-theme="dark"] .route-icon-btn {

        background: linear-gradient(135deg, #111827, #172554);
        color: #dbeafe;
        border-color: rgba(148, 163, 184, 0.14);
}



.search-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.search-panel-head .search-panel-top-copy-compact {
    margin-bottom: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.search-tabs-head {
    margin-bottom: 0;
    flex: 0 0 auto;
    align-self: flex-start;
}

@media (max-width: 767.98px) {
    .search-panel-head {
        display: block;
        margin-bottom: 14px;
    }

    .search-panel-head .search-panel-top-copy-compact {
        margin-bottom: 14px;
    }

    .search-tabs-head {
        width: 100%;
    }
}

.brand-text .brand-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    color: white;
}

.public-topbar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-shell {
    display: grid;
    gap: 22px;
}

.landing-hero-card,
.seo-content-section,
.landing-cta-banner {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.landing-hero-card,
.seo-content-section {
    padding: 26px;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 22px;
    align-items: stretch;
}

.landing-hero-copy,
.landing-highlight-panel,
.landing-highlight-card,
.intent-mini-list,
.faq-list {
    display: grid;
    gap: 14px;
}

.landing-eyebrow,
.intent-card-kicker,
.landing-highlight-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: linear-gradient(180deg, rgba(219, 234, 254, 0.88), rgba(239, 246, 255, 0.98));
    color: #1d4ed8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

html[data-resolved-theme="dark"] .landing-eyebrow,
html[data-resolved-theme="dark"] .intent-card-kicker,
html[data-resolved-theme="dark"] .landing-highlight-kicker {
    background: rgba(59, 130, 246, 0.16);
    color: #dbeafe;
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.landing-lead,
.section-heading p,
.seo-card p,
.intent-card p,
.intent-mini-link span,
.faq-item p,
.landing-cta-banner p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.landing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-highlight-panel {
    align-content: start;
}

.landing-highlight-card {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f3d91, #2563eb);
    color: white;
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.18);
}

.landing-highlight-card h2 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.15;
}

.landing-highlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.intent-mini-list {
    grid-template-columns: 1fr;
}

.intent-mini-link,
.intent-card {
    display: grid;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: linear-gradient(135deg, #ffffff, #f6faff);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.intent-mini-link {
    padding: 16px 18px;
}

.intent-card {
    padding: 22px;
}

.intent-mini-link strong,
.intent-card h3,
.seo-card h3,
.landing-cta-banner h2,
.section-heading h2 {
    margin: 0;
    color: var(--text);
    line-height: 1.2;
}

.intent-mini-link:hover,
.intent-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
}

.seo-content-section {
    display: grid;
    gap: 18px;
}

.seo-content-section-alt {
    background: linear-gradient(180deg, rgba(224, 237, 255, 0.78), rgba(255, 255, 255, 0.84));
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.feature-grid,
.intent-grid,
.content-columns {
    display: grid;
    gap: 16px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intent-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.94));
    box-shadow: var(--shadow-soft);
}

.faq-list {
    max-width: 980px;
}

.faq-item {
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 20px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 12px;
}

.landing-cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
}

.page-hero-card {
    display: grid;
    gap: 16px;
    padding: 24px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.page-hero-title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.page-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-chip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 700;
}

.page-chip-link:hover {
    color: var(--green-dark);
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f6faff);
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow-soft);
}

.contact-card a {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

.contact-card a:hover,
.footer-content-rich a:hover {
    text-decoration: underline;
}

.footer-content-rich {
    gap: 8px 16px;
}

.footer-content-rich span:first-child {
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .feature-grid,
    .content-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .public-topbar-links {
        gap: 8px;
    }

    .landing-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .landing-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .brand-text .brand-title {
        font-size: 1.2rem;
    }

    .public-topbar-links {
        width: 100%;
        justify-content: flex-start;
    }

    .landing-hero-card,
    .seo-content-section,
    .landing-cta-banner,
    .page-hero-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .feature-grid,
    .intent-grid,
    .content-columns {
        grid-template-columns: 1fr;
    }

    .landing-title,
    .page-hero-title {
        max-width: 18ch;
    }
}

@media (max-width: 575.98px) {
    .topbar-inner {
        padding-block: 14px;
        align-items: flex-start;
    }

    .public-topbar-links .icon-pill-btn {
        display: none;
    }

    .landing-cta-row .btn {
        width: 100%;
    }

    .faq-item,
    .seo-card,
    .intent-card,
    .intent-mini-link,
    .contact-card {
        padding: 16px;
    }
}

html[data-resolved-theme="dark"] .landing-hero-card,
html[data-resolved-theme="dark"] .seo-content-section,
html[data-resolved-theme="dark"] .landing-cta-banner,
html[data-resolved-theme="dark"] .page-hero-card,
html[data-resolved-theme="dark"] .faq-item,
html[data-resolved-theme="dark"] .seo-card,
html[data-resolved-theme="dark"] .intent-card,
html[data-resolved-theme="dark"] .intent-mini-link,
html[data-resolved-theme="dark"] .contact-card {

        background: rgba(17, 24, 39, 0.84);
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .seo-content-section-alt,
html[data-resolved-theme="dark"] .landing-hero-card {

        background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.84));
}

html[data-resolved-theme="dark"] .landing-highlight-card {

        background: linear-gradient(135deg, #1d4ed8, #172554);
}

html[data-resolved-theme="dark"] .intent-card-kicker,
html[data-resolved-theme="dark"] .landing-highlight-kicker,
html[data-resolved-theme="dark"] .page-chip-link {

        background: rgba(59, 130, 246, 0.16);
        color: #dbeafe;
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .contact-card a {

        color: #bfdbfe;
}



.quick-action-grid,
.icon-feature-grid {
    display: grid;
    gap: 16px;
}

.quick-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-action-card,
.icon-feature-card {
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #f6faff);
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow-soft);
}

.quick-action-card h3,
.icon-feature-card h3 {
    margin: 0;
    line-height: 1.2;
}

.quick-action-card p,
.icon-feature-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
}

.quick-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.16);
}

.quick-action-link:hover {
    color: white;
    transform: translateY(-1px);
}

.feature-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--green-dark);
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.micro-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .quick-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .icon-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .quick-action-grid,
    .icon-feature-grid {
        grid-template-columns: 1fr;
    }
}

html[data-resolved-theme="dark"] .quick-action-card,
html[data-resolved-theme="dark"] .icon-feature-card {

        background: rgba(17, 24, 39, 0.84);
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .feature-icon-badge {

        background: linear-gradient(135deg, #1e3a5f, #172554);
        color: #dbeafe;
}


/* =========================================================
   MODAL DE BIENVENIDA
   ========================================================= */

.welcome-modal-body {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.10), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
}

.welcome-modal-hero {
    text-align: center;
    margin-bottom: 22px;
}

.welcome-modal-icon {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.welcome-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.welcome-step-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.welcome-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.welcome-step-card h5 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.welcome-step-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.45;
}

.welcome-tip-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.18);
    color: #8a5a00;
    font-weight: 700;
}

.welcome-tip-box i {
    flex: 0 0 auto;
    margin-top: 2px;
}

.welcome-modal-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .welcome-steps-grid {
        grid-template-columns: 1fr;
    }

    .welcome-step-card {
        padding: 14px;
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .welcome-modal-body {
        padding: 22px 18px 20px;
    }

    .welcome-step-card h5 {
        font-size: 0.95rem;
    }

    .welcome-step-card p {
        font-size: 0.88rem;
    }

    .welcome-modal-actions {
        flex-direction: column;
    }

    .welcome-modal-actions .app-btn-main,
    .welcome-modal-actions .app-btn-ghost {
        width: 100%;
    }
}

html[data-resolved-theme="dark"] .welcome-modal-body {

        background:
            radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 30%),
            radial-gradient(circle at bottom left, rgba(251, 146, 60, 0.10), transparent 24%),
            linear-gradient(180deg, rgba(17,24,39,0.98), rgba(15,23,42,0.98));
}

html[data-resolved-theme="dark"] .welcome-step-card {

        background: rgba(15, 23, 42, 0.82);
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .welcome-step-card h5 {

        color: #f8fafc;
}

html[data-resolved-theme="dark"] .welcome-step-card p {

        color: #cbd5e1;
}

html[data-resolved-theme="dark"] .welcome-tip-box {

        background: rgba(251, 191, 36, 0.12);
        border-color: rgba(251, 191, 36, 0.18);
        color: #ffd66b;
}



/* =========================================================
   Pro web refresh
   ========================================================= */
body.web-pro-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 24%),
        radial-gradient(circle at right 12%, rgba(255, 107, 0, 0.07), transparent 20%),
        linear-gradient(180deg, #f2f6fd 0%, #f7faff 42%, #f3f7fc 100%);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

body.web-pro-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 78%);
    z-index: 0;
}

.web-pro-shell .topbar {
    position: sticky;
    top: 0;
    background:
        linear-gradient(135deg, rgba(30, 58, 138, 0.94), rgba(37, 99, 235, 0.92)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(30, 64, 175, 0.18);
}

.web-pro-shell .topbar-inner {
    min-height: 76px;
    padding-block: 10px;
}

.web-pro-shell .brand-logo-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
}

.web-pro-shell .brand-logo {
    width: 54px;
    height: 54px;
    background: transparent;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.14));
}

.web-pro-shell .brand-text h1 {
    font-size: 1.16rem;
}

.web-pro-shell .brand-text p {
    font-size: 0.84rem;
    opacity: 0.9;
}

.web-pro-shell .topbar-action-btn {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.web-pro-shell .main-shell {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    width: 100%;
    flex: 1 0 auto;
}

.web-pro-shell .experience-strip {
    display: none;
}

.web-pro-shell .experience-pill {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 16px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.92));
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.web-pro-shell .experience-pill::after {
    content: "";
    position: absolute;
    inset: auto -12% -34% auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 66%);
    pointer-events: none;
}

.web-pro-shell .experience-pill-primary {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.66), transparent 34%),
        linear-gradient(135deg, rgba(224, 237, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.web-pro-shell .experience-pill-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.web-pro-shell .experience-pill strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.2;
}

.web-pro-shell .experience-pill p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-soft);
    max-width: 32ch;
}

.web-pro-shell .search-panel {
    padding: clamp(18px, 2vw, 28px);
    border-radius: 30px;
    border-color: rgba(96, 165, 250, 0.12);
    box-shadow: 0 22px 54px rgba(2, 6, 23, 0.26);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 107, 0, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.96));
    max-width: 100%;
}

.web-pro-shell .search-panel-head {
    margin-bottom: 14px;
    align-items: center;
    justify-content: flex-end;
}

.web-pro-shell .search-panel-top-copy-compact {
    display: none;
}

.web-pro-shell .search-heading {
    font-size: clamp(1.28rem, 1.2vw, 1.62rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #f8fafc;
}

.web-pro-shell .search-subcopy {
    max-width: 52ch;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #aebcd2;
}

.web-pro-shell .search-tabs {
    padding: 6px;
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.12);
    max-width: 100%;
}

.web-pro-shell .search-tab-btn {
    min-height: 44px;
    padding-inline: 16px;
    border-radius: 14px;
    font-size: 0.92rem;
    color: #dbeafe;
}

.web-pro-shell .search-tab-btn.is-active {
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.web-pro-shell .label-soft {
    margin-bottom: 7px;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    color: #9fb0c8;
}

.web-pro-shell .app-input,
.web-pro-shell .app-btn-main,
.web-pro-shell .app-btn-ghost,
.web-pro-shell .search-mode-btn {
    min-height: 50px;
    height: 50px;
    border-radius: 15px;
}

.web-pro-shell .app-input {
    padding-inline: 15px;
    border-color: rgba(148, 163, 184, 0.14);
    background: rgba(30, 41, 59, 0.94);
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.web-pro-shell .app-input::placeholder {
    color: #9fb0c8;
}

.web-pro-shell .input-with-left-icon {
    padding-left: 40px;
    padding-right: 40px;
}

.web-pro-shell .search-leading-icon {
    left: 14px;
}

.web-pro-shell .btn-main {
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.web-pro-shell .btn-ghost,
.web-pro-shell .search-mode-btn {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border-color: rgba(148, 163, 184, 0.14);
    color: #f8fafc;
}

.web-pro-shell .search-toolbar {
    display: grid;
    gap: 14px;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) auto;
}

.web-pro-shell .search-toolbar-main {
    grid-template-columns: minmax(0, 1fr) 136px 116px 126px 126px;
    gap: 10px;
    align-items: end;
}

.web-pro-shell .search-toolbar-desktop-filters {
    grid-template-columns: repeat(2, minmax(0, 172px));
    gap: 10px;
    justify-self: end;
    align-items: end;
}

.web-pro-shell .search-field-block,
.web-pro-shell .search-submit-block,
.web-pro-shell .search-nearby-block,
.web-pro-shell .search-favorites-block,
.web-pro-shell .search-filters-block,
.web-pro-shell .search-inline-control {
    min-width: 0;
}

@media (min-width: 768px) {
    .web-pro-shell .search-favorites-block .search-mode-btn > span {
        display: none;
    }

    .web-pro-shell .search-favorites-block .search-mode-btn {
        gap: 9px;
        padding-inline: 14px;
    }
}

.web-pro-shell .search-mode-btn,
.web-pro-shell .topbar-action-btn,
.web-pro-shell .toggle-btn,
.web-pro-shell .detail-tab-btn,
.web-pro-shell .detail-fuel-btn {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.web-pro-shell .search-mode-btn:hover,
.web-pro-shell .topbar-action-btn:hover,
.web-pro-shell .toggle-btn:hover,
.web-pro-shell .detail-tab-btn:hover,
.web-pro-shell .detail-fuel-btn:hover {
    transform: translateY(-1px);
}

.web-pro-shell .active-filters {
    margin-top: 14px;
    gap: 7px;
}

.web-pro-shell .active-filter-chip {
    padding: 7px 11px;
    font-size: 0.78rem;
}

.web-pro-shell .results-header {
    padding: 16px 18px;
    border-radius: 24px;
    border-color: rgba(37, 99, 235, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.88));
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.10);
    max-width: 100%;
}

.web-pro-shell .results-header h2 {
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.web-pro-shell .results-header p {
    font-size: 0.89rem;
}

.web-pro-shell .view-toggle {
    padding: 4px;
    border-radius: 16px;
}

.web-pro-shell .toggle-btn {
    min-width: 92px;
    height: 40px;
    padding-inline: 14px;
    font-size: 0.88rem;
    border-radius: 12px;
}

.web-pro-shell #listView > [class*="col-"] {
    min-width: 0;
}

.web-pro-shell #listView.row {
    --bs-gutter-x: 0.9rem;
    margin-right: 0;
    margin-left: 0;
}

.web-pro-shell #listView.row > [class*="col-"] {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.web-pro-shell .station-card {
    padding: 16px;
    border-radius: 24px;
    border-color: rgba(37, 99, 235, 0.08);
    background:
        radial-gradient(circle at top right, rgba(224, 237, 255, 0.58), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 255, 0.92));
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
    max-width: 100%;
}

.web-pro-shell .station-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(37, 99, 235, 0.14);
}

.web-pro-shell .station-top {
    gap: 12px;
    min-width: 0;
}

.web-pro-shell .station-top > .flex-grow-1 {
    min-width: 0;
}

.web-pro-shell .station-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.web-pro-shell .station-brand {
    font-size: 1rem;
    margin-bottom: 5px;
}

.web-pro-shell .station-address {
    font-size: 0.87rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.web-pro-shell .station-fav-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.web-pro-shell .station-price-box {
    min-width: 114px;
    max-width: 100%;
    padding: 12px 13px;
    border-radius: 18px;
}

.web-pro-shell .station-price-value {
    font-size: 1.16rem;
    letter-spacing: -0.03em;
}

.web-pro-shell .station-meta-row {
    gap: 7px;
    margin-top: 13px;
}

.web-pro-shell .meta-pill {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 0.77rem;
    font-weight: 800;
    border-radius: 999px;
}

.web-pro-shell .sparkline-wrapper {
    margin-top: 12px;
    height: 54px;
    padding: 8px 10px;
    border-radius: 16px;
    background: rgba(224, 237, 255, 0.42);
    border: 1px solid rgba(37, 99, 235, 0.06);
}

.web-pro-shell .distance-notice,
.web-pro-shell .route-summary-inline {
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.08);
}

.web-pro-shell .map-card {
    padding: 10px;
    border-radius: 26px;
}

.web-pro-shell #map {
    height: min(62vh, 720px);
    min-height: 400px;
    border-radius: 20px;
}

.web-pro-shell .app-modal {
    border-radius: 28px;
    overflow: hidden;
}

.web-pro-shell .modal-header,
.web-pro-shell .modal-footer {
    padding-inline: 22px;
}

.web-pro-shell .detail-modal-header {
    padding-top: 20px;
}

.web-pro-shell .detail-modal-actions {
    gap: 10px;
}

.web-pro-shell .detail-hero-card {
    border-radius: 26px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(224, 237, 255, 0.90), transparent 28%),
        linear-gradient(180deg, #ffffff, #f7faff);
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.web-pro-shell .detail-hero-top {
    gap: 16px;
    align-items: stretch;
}

.web-pro-shell .detail-price-card {
    min-width: 184px;
    border-radius: 22px;
    padding: 16px;
    background: linear-gradient(180deg, #2563eb, #1e40af);
    color: #fff;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.web-pro-shell .detail-price-label,
.web-pro-shell .detail-price-fuel {
    color: rgba(255, 255, 255, 0.82);
}

.web-pro-shell .detail-price-value {
    color: #fff;
    letter-spacing: -0.03em;
}

.web-pro-shell .detail-tabs-wrap {
    margin-top: 14px;
}

.web-pro-shell .detail-tabs-nav {
    padding: 4px;
    border-radius: 18px;
    background: #edf4ff;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.web-pro-shell .detail-tab-btn {
    min-height: 40px;
    border-radius: 13px;
    font-size: 0.88rem;
    font-weight: 800;
}

.web-pro-shell .detail-tab-btn.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.web-pro-shell .detail-tab-panel {
    margin-top: 14px;
}

.web-pro-shell .detail-section {
    border-radius: 24px;
    padding: 18px;
    background: linear-gradient(180deg, #fbfdff, #f5f8ff);
}

.web-pro-shell .detail-fuel-switcher {
    gap: 9px;
    margin-bottom: 16px;
}

.web-pro-shell .detail-fuel-btn {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.84rem;
}

.web-pro-shell .detail-mini-map {
    border-radius: 18px;
}

.web-pro-shell .seo-mini-block {
    margin-top: 22px;
}

.web-pro-shell .seo-mini-grid {
    gap: 14px;
}

.web-pro-shell .seo-mini-item {
    border-radius: 22px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(248, 251, 255, 0.84));
}

.web-pro-shell .seo-mini-item h2 {
    font-size: 0.94rem;
}

.web-pro-shell .seo-mini-item p {
    font-size: 0.86rem;
    line-height: 1.5;
}

.web-pro-shell .app-footer {
    margin-top: 28px;
    padding-bottom: 26px;
    margin-top: auto;
    width: 100%;
}

@media (min-width: 1200px) {
    .web-pro-shell .search-toolbar {
        grid-template-columns: minmax(0, 1fr) auto;
        }
}

@media (min-width: 1600px) {
    .web-pro-shell .main-shell {
        max-width: 1480px;
    }
}

@media (max-width: 1399.98px) {
    .web-pro-shell .experience-pill p {
        max-width: none;
    }
}

@media (max-width: 1199.98px) {
    .web-pro-shell .search-toolbar-main {
        grid-template-columns: minmax(0, 1fr) 126px 104px 114px 114px;
    }

    .web-pro-shell .search-toolbar-desktop-filters {
        grid-template-columns: repeat(2, minmax(0, 156px));
    }
}

@media (max-width: 991.98px) {
    .web-pro-shell .main-shell {
        max-width: 100%;
    }

    .web-pro-shell .search-toolbar {
        grid-template-columns: 1fr;
    }

    .web-pro-shell .search-panel,
    .web-pro-shell .results-header,
    .web-pro-shell .map-card,
    .web-pro-shell .station-card {
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    body.web-pro-shell::before {
        display: none;
    }

    .web-pro-shell .search-toolbar {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .web-pro-shell .search-toolbar-main {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .web-pro-shell .topbar-inner {
        min-height: 72px;
    }

    .web-pro-shell .brand-logo-wrap {
        width: 54px;
        height: 54px;
    }

    .web-pro-shell .brand-logo {
        width: 50px;
        height: 50px;
    }

    .web-pro-shell .brand-text h1 {
        font-size: 1.08rem;
    }

    .web-pro-shell .brand-text p {
        font-size: 0.8rem;
    }

    .web-pro-shell .search-panel {
        padding: 16px;
    }

    .web-pro-shell .search-panel-head {
        margin-bottom: 12px;
    }

    .web-pro-shell .search-tabs {
        width: 100%;
    }

    .web-pro-shell .search-tab-btn,
    .web-pro-shell .search-mode-btn {
        min-width: 0;
    }

    .web-pro-shell .station-card {
        padding: 15px;
    }

    .web-pro-shell .station-top {
        flex-direction: column;
        align-items: stretch;
    }

    .web-pro-shell .station-side {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .web-pro-shell .station-fav-btn {
        flex: 0 0 auto;
        order: 2;
    }

    .web-pro-shell .station-price-box {
        min-width: 0;
        width: fit-content;
        max-width: 100%;
    }

    .web-pro-shell .detail-price-card {
        min-width: 0;
        width: 100%;
    }

    .web-pro-shell #map {
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .web-pro-shell .main-shell {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .web-pro-shell .search-panel,
    .web-pro-shell .results-header,
    .web-pro-shell .map-card,
    .web-pro-shell .station-card {
        border-radius: 20px;
    }

    .web-pro-shell .search-toolbar-main {
        grid-template-columns: 1fr;
    }

    .web-pro-shell .search-submit-block,
    .web-pro-shell .search-toolbar-main > * {
        width: 100%;
        min-width: 0;
    }

    .web-pro-shell .search-toolbar-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-pro-shell .search-mode-btn {
        width: 100%;
        min-width: 0;
    }

    .web-pro-shell .search-mode-btn span,
    .web-pro-shell .toggle-btn span {
        min-width: 0;
    }

    .web-pro-shell .topbar-inner {
        gap: 12px;
    }

    .web-pro-shell .brand-block {
        min-width: 0;
    }

    .web-pro-shell .brand-text {
        min-width: 0;
    }

    .web-pro-shell .station-card {
        padding: 14px;
    }

    .web-pro-shell .station-brand {
        font-size: 0.95rem;
    }

    .web-pro-shell .station-address {
        font-size: 0.84rem;
    }

    .web-pro-shell .station-meta-row {
        gap: 6px;
    }

    .web-pro-shell .meta-pill {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .web-pro-shell #listView.row {
        --bs-gutter-x: 0.65rem;
    }
}

html[data-resolved-theme="dark"] body.web-pro-shell {

        background:
            radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 26%),
            radial-gradient(circle at right 12%, rgba(255, 107, 0, 0.09), transparent 20%),
            linear-gradient(180deg, #0b1120 0%, #0f172a 46%, #111827 100%);
}

html[data-resolved-theme="dark"] body.web-pro-shell::before {

        background-image:
            linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
}

html[data-resolved-theme="dark"] .web-pro-shell .topbar {

        box-shadow: 0 18px 36px rgba(2, 6, 23, 0.42);
}

html[data-resolved-theme="dark"] .web-pro-shell .topbar-action-btn,
html[data-resolved-theme="dark"] .web-pro-shell .experience-pill,
html[data-resolved-theme="dark"] .web-pro-shell .results-header,
html[data-resolved-theme="dark"] .web-pro-shell .station-card,
html[data-resolved-theme="dark"] .web-pro-shell .seo-mini-item,
html[data-resolved-theme="dark"] .web-pro-shell .detail-hero-card,
html[data-resolved-theme="dark"] .web-pro-shell .detail-section {

        background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(15, 23, 42, 0.92));
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .web-pro-shell .experience-pill-kicker,
html[data-resolved-theme="dark"] .web-pro-shell .toggle-btn,
html[data-resolved-theme="dark"] .web-pro-shell .detail-tab-btn,
html[data-resolved-theme="dark"] .web-pro-shell .detail-fuel-btn {

        color: #dbeafe;
}

html[data-resolved-theme="dark"] .web-pro-shell .search-tabs,
html[data-resolved-theme="dark"] .web-pro-shell .detail-tabs-nav,
html[data-resolved-theme="dark"] .web-pro-shell .view-toggle,
html[data-resolved-theme="dark"] .web-pro-shell .sparkline-wrapper {

        background: rgba(15, 23, 42, 0.88);
        border-color: rgba(148, 163, 184, 0.12);
}

html[data-resolved-theme="dark"] .web-pro-shell .station-price-box {

        background: linear-gradient(180deg, #0f172a, #1e293b);
        border-color: rgba(96, 165, 250, 0.14);
}

html[data-resolved-theme="dark"] .web-pro-shell .distance-notice,
html[data-resolved-theme="dark"] .web-pro-shell .route-summary-inline {

        background: rgba(15, 23, 42, 0.88);
        border-color: rgba(96, 165, 250, 0.16);
}



html[data-text-size="small"] {
    font-size: 15px;
}

html[data-text-size="large"] {
    font-size: 17px;
}

.web-pro-shell .topbar-inner {
    gap: 16px;
    justify-content: space-between;
}

.web-pro-shell .topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.web-pro-shell .topbar-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    color: #0f172a;
    background: linear-gradient(180deg, #fcd34d, #f59e0b);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.web-pro-shell .topbar-count-badge.is-empty {
    opacity: 0.72;
}

.web-pro-shell .topbar-action-btn-favorites.is-active,
.web-pro-shell .search-mode-btn-favorites.is-active {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.42);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.98), rgba(180, 83, 9, 0.96));
    box-shadow: 0 16px 28px rgba(217, 119, 6, 0.22);
}

.web-pro-shell .topbar-action-btn.topbar-action-btn-favorites.is-active {
    color: #fff !important;
    border-color: rgba(245, 158, 11, 0.42) !important;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.98), rgba(180, 83, 9, 0.96)) !important;
    box-shadow: 0 16px 28px rgba(217, 119, 6, 0.22) !important;
}

.web-pro-shell .topbar-action-btn.topbar-action-btn-favorites.is-active .topbar-count-badge {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.web-pro-shell .search-mode-btn-nearby.is-active {
    color: #fff;
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.98), rgba(30, 64, 175, 0.96));
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.24);
}

.web-pro-shell .topbar-action-btn-vehicle.is-active {
    color: #fff;
    border-color: rgba(16, 185, 129, 0.34);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.98), rgba(6, 95, 70, 0.96));
    box-shadow: 0 16px 28px rgba(5, 150, 105, 0.2);
}

.web-pro-shell .topbar-action-btn-vehicle span,
.web-pro-shell .topbar-action-btn-favorites span,
.web-pro-shell .topbar-action-btn-settings span {
    max-width: 12ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web-pro-shell #filtersModal .modal-dialog,
.web-pro-shell #settingsModal .modal-dialog,
.web-pro-shell #vehicleModal .modal-dialog {
    max-width: 860px;
}

.web-pro-shell #filtersModal .app-modal,
.web-pro-shell .settings-modal-content {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.web-pro-shell #filtersModal .modal-header,
.web-pro-shell .settings-modal-content .modal-header {
    padding-top: 22px;
}

.web-pro-shell #filtersModal .modal-subtitle,
.web-pro-shell .settings-modal-content .modal-subtitle {
    color: #64748b;
}

.web-pro-shell #filtersModal .range-card,
.web-pro-shell .settings-section-card,
.web-pro-shell .settings-device-card {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.web-pro-shell .settings-device-card,
.web-pro-shell .settings-section-card {
    padding: 18px;
}

.web-pro-shell .settings-device-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.web-pro-shell .settings-device-card code {
    display: inline-flex;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 14px;
    background: #e2e8f0;
    color: #0f172a;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.web-pro-shell .settings-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.web-pro-shell .settings-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.web-pro-shell .settings-chip {
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.web-pro-shell .settings-chip.is-active {
    color: #fff;
    border-color: rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.web-pro-shell .settings-links-grid {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.web-pro-shell .settings-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.web-pro-shell .settings-action-card i,
.web-pro-shell .settings-version-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 1rem;
}

.web-pro-shell .settings-action-card strong,
.web-pro-shell .settings-version-card strong {
    display: block;
    font-size: 0.94rem;
}

.web-pro-shell .settings-action-card span,
.web-pro-shell .settings-version-card span {
    display: block;
    color: #64748b;
    font-size: 0.84rem;
}

.web-pro-shell .settings-version-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(226, 232, 240, 0.54);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.web-pro-shell .vehicle-profiles-list {
    display: grid;
    gap: 12px;
}

.web-pro-shell .vehicle-empty-state,
.web-pro-shell .vehicle-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.84);
}

.web-pro-shell .vehicle-empty-state i {
    font-size: 1.3rem;
    color: #2563eb;
}

.web-pro-shell .vehicle-profile-card.is-selected {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 14px 28px rgba(16, 185, 129, 0.12);
}

.web-pro-shell .vehicle-profile-main {
    min-width: 0;
}

.web-pro-shell .vehicle-profile-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.web-pro-shell .vehicle-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
    font-size: 0.84rem;
}

.web-pro-shell .vehicle-selected-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    font-size: 0.74rem;
    font-weight: 800;
}

.web-pro-shell .vehicle-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.web-pro-shell .vehicle-inline-btn,
.web-pro-shell .app-btn-ghost-sm {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 800;
}

.web-pro-shell .vehicle-inline-btn.danger {
    color: #b91c1c;
}

.web-pro-shell .welcome-modal-body > .welcome-modal-hero:not(.welcome-tour-hero),
.web-pro-shell .welcome-modal-body > .welcome-steps-grid,
.web-pro-shell .welcome-modal-body > .welcome-tip-box:not(#welcomeTourTip) {
    display: none;
}

.web-pro-shell .welcome-tour-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.web-pro-shell .welcome-skip-btn {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}

.web-pro-shell .welcome-tour-progress {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

.web-pro-shell .welcome-progress-segment {
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
}

.web-pro-shell .welcome-progress-segment.is-active {
    background: linear-gradient(135deg, #16a34a, #2563eb);
}

.web-pro-shell .welcome-step-badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 900;
}

.web-pro-shell .welcome-step-details {
    display: grid;
    gap: 10px;
    margin: 20px 0 18px;
}

.web-pro-shell .welcome-step-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.web-pro-shell .welcome-step-detail i {
    color: #16a34a;
    margin-top: 2px;
}

.web-pro-shell .welcome-modal-actions-tour {
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.web-pro-shell .price-pin {
    width: 74px;
}

.web-pro-shell .price-pin-inner {
    position: relative;
    min-height: 40px;
    padding: 8px 10px 7px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.web-pro-shell .price-pin-price {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.web-pro-shell .price-pin-status {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    font-size: 0.68rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.web-pro-shell .price-pin-status.is-favorite {
    background: #b45309;
}

.web-pro-shell .price-pin-status.is-closed {
    background: #475569;
}

.web-pro-shell .price-pin-tip {
    width: 16px;
    height: 9px;
}

.web-pro-shell .map-cluster {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.web-pro-shell .map-cluster::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.web-pro-shell .map-cluster.is-cheapest {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.web-pro-shell .map-cluster.is-favorite {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.web-pro-shell .map-cluster.is-closed {
    background: linear-gradient(135deg, #64748b, #475569);
}

.web-pro-shell .meta-pill-fill {
    background: rgba(16, 185, 129, 0.12);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.14);
}

.web-pro-shell .active-filter-chip-highlight {
    background: rgba(16, 185, 129, 0.14);
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.18);
}

.web-pro-shell .detail-vehicle-costs {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(37, 99, 235, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.web-pro-shell .detail-vehicle-costs-title {
    margin-bottom: 12px;
    font-size: 0.92rem;
    font-weight: 900;
    color: #0f172a;
}

.web-pro-shell .detail-vehicle-costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.web-pro-shell .detail-vehicle-card {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.web-pro-shell .detail-vehicle-card.is-selected {
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.1);
}

.web-pro-shell .detail-vehicle-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.web-pro-shell .detail-vehicle-pill {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
}

.web-pro-shell .detail-vehicle-card-meta {
    font-size: 0.82rem;
    color: #64748b;
}

.web-pro-shell .detail-vehicle-card-price {
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 900;
    color: #0f172a;
}

.web-pro-shell .map-cluster-badge {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
}

.web-pro-shell .leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.web-pro-shell .leaflet-control-zoom a {
    width: 38px;
    height: 38px;
    line-height: 36px;
    border: none;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.94);
}

body.web-pro-shell[data-theme-mode="dark"],
body.web-pro-shell.theme-dark-active {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 26%),
        radial-gradient(circle at right 12%, rgba(255, 107, 0, 0.09), transparent 20%),
        linear-gradient(180deg, #0b1120 0%, #0f172a 46%, #111827 100%);
}

body.web-pro-shell[data-theme-mode="dark"] .topbar-action-btn,
body.web-pro-shell[data-theme-mode="dark"] .results-header,
body.web-pro-shell[data-theme-mode="dark"] .station-card,
body.web-pro-shell[data-theme-mode="dark"] .seo-mini-item,
body.web-pro-shell[data-theme-mode="dark"] .settings-section-card,
body.web-pro-shell[data-theme-mode="dark"] .settings-device-card,
body.web-pro-shell[data-theme-mode="dark"] .settings-version-card,
body.web-pro-shell[data-theme-mode="dark"] .settings-action-card,
body.web-pro-shell[data-theme-mode="dark"] .vehicle-profile-card,
body.web-pro-shell[data-theme-mode="dark"] .vehicle-empty-state,
body.web-pro-shell[data-theme-mode="dark"] .welcome-step-detail,
body.web-pro-shell[data-theme-mode="dark"] #filtersModal .app-modal,
body.web-pro-shell[data-theme-mode="dark"] .settings-modal-content,
body.web-pro-shell[data-theme-mode="dark"] #settingsModal .settings-modal-content,
body.web-pro-shell[data-theme-mode="dark"] #vehicleModal .settings-modal-content,
body.web-pro-shell.theme-dark-active .topbar-action-btn,
body.web-pro-shell.theme-dark-active .results-header,
body.web-pro-shell.theme-dark-active .station-card,
body.web-pro-shell.theme-dark-active .seo-mini-item,
body.web-pro-shell.theme-dark-active .settings-section-card,
body.web-pro-shell.theme-dark-active .settings-device-card,
body.web-pro-shell.theme-dark-active .settings-version-card,
body.web-pro-shell.theme-dark-active .settings-action-card,
body.web-pro-shell.theme-dark-active .vehicle-profile-card,
body.web-pro-shell.theme-dark-active .vehicle-empty-state,
body.web-pro-shell.theme-dark-active .welcome-step-detail,
body.web-pro-shell.theme-dark-active #filtersModal .app-modal,
body.web-pro-shell.theme-dark-active .settings-modal-content,
body.web-pro-shell.theme-dark-active #settingsModal .settings-modal-content,
body.web-pro-shell.theme-dark-active #vehicleModal .settings-modal-content,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark,
.web-pro-shell #filtersModal .app-modal.is-theme-dark {
    color: #e5eefc;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(15, 23, 42, 0.92));
    border-color: rgba(148, 163, 184, 0.14);
}

body.web-pro-shell[data-theme-mode="dark"] #settingsModal .modal-header,
body.web-pro-shell[data-theme-mode="dark"] #settingsModal .modal-footer,
body.web-pro-shell[data-theme-mode="dark"] #vehicleModal .modal-header,
body.web-pro-shell[data-theme-mode="dark"] #vehicleModal .modal-footer,
body.web-pro-shell[data-theme-mode="dark"] #filtersModal .modal-header,
body.web-pro-shell[data-theme-mode="dark"] #filtersModal .modal-footer,
body.web-pro-shell.theme-dark-active #settingsModal .modal-header,
body.web-pro-shell.theme-dark-active #settingsModal .modal-footer,
body.web-pro-shell.theme-dark-active #vehicleModal .modal-header,
body.web-pro-shell.theme-dark-active #vehicleModal .modal-footer,
body.web-pro-shell.theme-dark-active #filtersModal .modal-header,
body.web-pro-shell.theme-dark-active #filtersModal .modal-footer,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark .modal-header,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark .modal-footer,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .modal-header,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .modal-footer,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .modal-header,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .modal-footer {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.12);
}

body.web-pro-shell[data-theme-mode="dark"] #settingsModal .modal-title,
body.web-pro-shell[data-theme-mode="dark"] #vehicleModal .modal-title,
body.web-pro-shell[data-theme-mode="dark"] #filtersModal .modal-title,
body.web-pro-shell[data-theme-mode="dark"] .settings-action-card strong,
body.web-pro-shell[data-theme-mode="dark"] .settings-version-card strong,
body.web-pro-shell[data-theme-mode="dark"] .settings-device-card strong,
body.web-pro-shell[data-theme-mode="dark"] .settings-section-card h6,
body.web-pro-shell[data-theme-mode="dark"] .vehicle-profile-title-row strong,
body.web-pro-shell[data-theme-mode="dark"] .welcome-step-badge,
body.web-pro-shell.theme-dark-active #settingsModal .modal-title,
body.web-pro-shell.theme-dark-active #vehicleModal .modal-title,
body.web-pro-shell.theme-dark-active #filtersModal .modal-title,
body.web-pro-shell.theme-dark-active .settings-action-card strong,
body.web-pro-shell.theme-dark-active .settings-version-card strong,
body.web-pro-shell.theme-dark-active .settings-device-card strong,
body.web-pro-shell.theme-dark-active .settings-section-card h6,
body.web-pro-shell.theme-dark-active .vehicle-profile-title-row strong,
body.web-pro-shell.theme-dark-active .welcome-step-badge,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark .modal-title,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .modal-title,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .modal-title {
    color: #f8fafc;
}

body.web-pro-shell[data-theme-mode="dark"] .settings-action-card span,
body.web-pro-shell[data-theme-mode="dark"] .settings-version-card span,
body.web-pro-shell[data-theme-mode="dark"] .vehicle-profile-meta,
body.web-pro-shell[data-theme-mode="dark"] .modal-subtitle,
body.web-pro-shell[data-theme-mode="dark"] .settings-device-card p,
body.web-pro-shell.theme-dark-active .settings-action-card span,
body.web-pro-shell.theme-dark-active .settings-version-card span,
body.web-pro-shell.theme-dark-active .vehicle-profile-meta,
body.web-pro-shell.theme-dark-active .modal-subtitle,
body.web-pro-shell.theme-dark-active .settings-device-card p,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark .modal-subtitle,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .modal-subtitle,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .modal-subtitle {
    color: #94a3b8;
}

body.web-pro-shell[data-theme-mode="dark"] .settings-chip,
body.web-pro-shell[data-theme-mode="dark"] .vehicle-inline-btn,
body.web-pro-shell[data-theme-mode="dark"] .app-btn-ghost-sm,
body.web-pro-shell[data-theme-mode="dark"] .brand-check,
body.web-pro-shell[data-theme-mode="dark"] .range-card,
body.web-pro-shell[data-theme-mode="dark"] .open-now-filter-card,
body.web-pro-shell[data-theme-mode="dark"] .detail-section,
body.web-pro-shell[data-theme-mode="dark"] .detail-box,
body.web-pro-shell[data-theme-mode="dark"] .chart-shell,
body.web-pro-shell.theme-dark-active .settings-chip,
body.web-pro-shell.theme-dark-active .vehicle-inline-btn,
body.web-pro-shell.theme-dark-active .app-btn-ghost-sm,
body.web-pro-shell.theme-dark-active .brand-check,
body.web-pro-shell.theme-dark-active .range-card,
body.web-pro-shell.theme-dark-active .open-now-filter-card,
body.web-pro-shell.theme-dark-active .detail-section,
body.web-pro-shell.theme-dark-active .detail-box,
body.web-pro-shell.theme-dark-active .chart-shell,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark .settings-chip,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .vehicle-inline-btn,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .app-btn-ghost-sm,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .brand-check,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .range-card,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .open-now-filter-card {
    color: #e5eefc;
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(148, 163, 184, 0.16);
}

body.web-pro-shell[data-theme-mode="dark"] .settings-chip:not(.is-active):hover,
body.web-pro-shell[data-theme-mode="dark"] .vehicle-inline-btn:hover,
body.web-pro-shell[data-theme-mode="dark"] .app-btn-ghost-sm:hover,
body.web-pro-shell.theme-dark-active .settings-chip:not(.is-active):hover,
body.web-pro-shell.theme-dark-active .vehicle-inline-btn:hover,
body.web-pro-shell.theme-dark-active .app-btn-ghost-sm:hover {
    background: rgba(30, 41, 59, 0.94);
}

body.web-pro-shell[data-theme-mode="dark"] .range-value,
body.web-pro-shell[data-theme-mode="dark"] .brands-clear-btn,
body.web-pro-shell[data-theme-mode="dark"] .detail-box .v,
body.web-pro-shell[data-theme-mode="dark"] .detail-fuel-btn.active,
body.web-pro-shell[data-theme-mode="dark"] .toggle-btn.active,
body.web-pro-shell.theme-dark-active .range-value,
body.web-pro-shell.theme-dark-active .brands-clear-btn,
body.web-pro-shell.theme-dark-active .detail-box .v,
body.web-pro-shell.theme-dark-active .detail-fuel-btn.active,
body.web-pro-shell.theme-dark-active .toggle-btn.active,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .range-value,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .vehicle-profile-title-row strong {
    color: #f8fafc;
}

body.web-pro-shell[data-theme-mode="dark"] .detail-box .k,
body.web-pro-shell[data-theme-mode="dark"] .brand-check,
body.web-pro-shell[data-theme-mode="dark"] .open-now-filter-card .form-check-label,
body.web-pro-shell[data-theme-mode="dark"] .route-summary-inline-pill,
body.web-pro-shell[data-theme-mode="dark"] .meta-pill,
body.web-pro-shell.theme-dark-active .detail-box .k,
body.web-pro-shell.theme-dark-active .brand-check,
body.web-pro-shell.theme-dark-active .open-now-filter-card .form-check-label,
body.web-pro-shell.theme-dark-active .route-summary-inline-pill,
body.web-pro-shell.theme-dark-active .meta-pill,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .brand-check,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .open-now-filter-card .form-check-label {
    color: #cbd5e1;
}

body.web-pro-shell[data-theme-mode="dark"] .custom-close,
body.web-pro-shell[data-theme-mode="dark"] .btn-close,
body.web-pro-shell.theme-dark-active .custom-close,
body.web-pro-shell.theme-dark-active .btn-close,
.web-pro-shell #settingsModal .settings-modal-content.is-theme-dark .btn-close,
.web-pro-shell #vehicleModal .settings-modal-content.is-theme-dark .btn-close,
.web-pro-shell #filtersModal .app-modal.is-theme-dark .btn-close {
    filter: invert(1) brightness(1.3);
}

body.web-pro-shell[data-theme-mode="dark"] .leaflet-control-zoom a,
body.web-pro-shell.theme-dark-active .leaflet-control-zoom a {
    color: #e5eefc;
    background: rgba(15, 23, 42, 0.92);
}

body.web-pro-shell[data-theme-mode="dark"] .meta-pill-fill,
body.web-pro-shell.theme-dark-active .meta-pill-fill,
body.web-pro-shell[data-theme-mode="dark"] .active-filter-chip-highlight,
body.web-pro-shell.theme-dark-active .active-filter-chip-highlight,
body.web-pro-shell[data-theme-mode="dark"] .detail-vehicle-costs,
body.web-pro-shell.theme-dark-active .detail-vehicle-costs,
body.web-pro-shell[data-theme-mode="dark"] .detail-vehicle-card,
body.web-pro-shell.theme-dark-active .detail-vehicle-card {
    color: #e5eefc;
    background: rgba(15, 23, 42, 0.84);
    border-color: rgba(148, 163, 184, 0.16);
}

body.web-pro-shell[data-theme-mode="dark"] .detail-vehicle-costs-title,
body.web-pro-shell.theme-dark-active .detail-vehicle-costs-title,
body.web-pro-shell[data-theme-mode="dark"] .detail-vehicle-card-price,
body.web-pro-shell.theme-dark-active .detail-vehicle-card-price {
    color: #f8fafc;
}

body.web-pro-shell[data-theme-mode="dark"] .detail-vehicle-card-meta,
body.web-pro-shell.theme-dark-active .detail-vehicle-card-meta {
    color: #94a3b8;
}

body.web-pro-shell.theme-light-active,
body.web-pro-shell[data-theme-mode="light"] {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 24%),
        radial-gradient(circle at right 12%, rgba(255, 107, 0, 0.07), transparent 20%),
        linear-gradient(180deg, #f2f6fd 0%, #f7faff 42%, #f3f7fc 100%) !important;
}

body.web-pro-shell.theme-light-active .results-header,
body.web-pro-shell.theme-light-active .station-card,
body.web-pro-shell.theme-light-active .seo-mini-item,
body.web-pro-shell.theme-light-active .detail-hero-card,
body.web-pro-shell.theme-light-active .detail-section,
body.web-pro-shell.theme-light-active .settings-modal-content,
body.web-pro-shell.theme-light-active #filtersModal .app-modal,
body.web-pro-shell.theme-light-active .settings-section-card,
body.web-pro-shell.theme-light-active .settings-device-card,
body.web-pro-shell.theme-light-active .settings-version-card,
body.web-pro-shell.theme-light-active .settings-action-card,
body.web-pro-shell.theme-light-active .vehicle-profile-card,
body.web-pro-shell.theme-light-active .vehicle-empty-state,
body.web-pro-shell.theme-light-active .welcome-step-detail {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.16) !important;
}

body.web-pro-shell.theme-light-active .modal-subtitle,
body.web-pro-shell.theme-light-active .settings-action-card span,
body.web-pro-shell.theme-light-active .settings-version-card span,
body.web-pro-shell.theme-light-active .vehicle-profile-meta,
body.web-pro-shell.theme-light-active .detail-vehicle-card-meta {
    color: #64748b !important;
}

body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn,
body.web-pro-shell[data-theme-mode="light"] .settings-chip,
body.web-pro-shell[data-theme-mode="light"] .vehicle-inline-btn,
body.web-pro-shell.theme-light-active .topbar-action-btn,
body.web-pro-shell.theme-light-active .settings-chip,
body.web-pro-shell.theme-light-active .vehicle-inline-btn {
    color: #0f172a;
}

@media (max-width: 767.98px) {
    .web-pro-shell .topbar-inner {
        align-items: center;
    }

    .web-pro-shell .topbar-actions {
        gap: 8px;
    }

    .web-pro-shell .topbar-action-btn {
        min-width: 42px;
        padding: 10px 12px;
    }

    .web-pro-shell .topbar-action-btn span {
        display: none;
    }

    .web-pro-shell .topbar-count-badge {
        min-width: 20px;
        height: 20px;
        padding-inline: 6px;
    }

    .web-pro-shell .search-submit-block {
        display: none;
    }

    .web-pro-shell .search-toolbar-secondary {
        grid-template-columns: 1.35fr 0.82fr 0.82fr;
        gap: 10px;
    }

    .web-pro-shell .search-toolbar-mobile-filters {
        display: grid;
        margin-top: 10px;
    }

    .web-pro-shell .favorites-mobile-btn,
    .web-pro-shell .search-submit-mobile-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .web-pro-shell .favorites-mobile-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
        height: 22px;
        padding: 0 7px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        color: currentColor;
        font-size: 0.74rem;
        font-weight: 900;
    }

    .web-pro-shell .welcome-modal-actions-tour {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-pro-shell .settings-device-card,
    .web-pro-shell .vehicle-profile-card,
    .web-pro-shell .vehicle-empty-state {
        flex-direction: column;
        align-items: stretch;
    }

    .web-pro-shell .vehicle-profile-actions {
        justify-content: stretch;
    }

    .web-pro-shell .vehicle-inline-btn {
        flex: 1 1 0;
    }
}

@media (max-width: 575.98px) {
    .web-pro-shell .brand-text p:not(.brand-title) {
        display: none;
    }

    .web-pro-shell .search-toolbar-secondary .search-mode-btn,
    .web-pro-shell .search-toolbar-mobile-filters .search-mode-btn {
        min-height: 48px;
    }

    .web-pro-shell .welcome-tour-progress {
        gap: 6px;
    }
}

.web-pro-shell .topbar-count-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    margin-left: 2px;
}

.web-pro-shell .settings-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.web-pro-shell .settings-chip.is-active::after {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
}

.web-pro-shell .vehicle-delete-confirm {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.web-pro-shell #vehicleModal .settings-modal-content {
    position: relative;
}

.web-pro-shell .vehicle-delete-confirm.d-none {
    display: none !important;
}

.web-pro-shell .vehicle-delete-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(5px);
}

.web-pro-shell .vehicle-delete-confirm-card {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 255, 0.98));
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
}

.web-pro-shell .vehicle-delete-confirm-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 16px 28px rgba(220, 38, 38, 0.24);
}

.web-pro-shell .vehicle-delete-confirm-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    color: #0f172a;
}

.web-pro-shell .vehicle-delete-confirm-copy p {
    color: #475569;
    line-height: 1.55;
}

.web-pro-shell .vehicle-delete-confirm-name {
    font-weight: 900;
    color: #0f172a;
}

.web-pro-shell .vehicle-delete-confirm-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.web-pro-shell .price-pin {
    width: 82px;
}

.web-pro-shell .price-pin-inner {
    width: 82px;
    min-height: 56px;
    border-radius: 18px;
}

.web-pro-shell .price-pin-tip {
    width: 22px;
    height: 14px;
    margin-top: -1px;
    border: 0;
    transform: none;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    filter: drop-shadow(0 8px 10px rgba(15, 23, 42, 0.12));
    box-shadow: none;
}

body.web-pro-shell.theme-light-active .search-panel,
body.web-pro-shell.theme-light-active .results-header,
body.web-pro-shell.theme-light-active .station-card,
body.web-pro-shell.theme-light-active .map-card,
body.web-pro-shell.theme-light-active .search-tab-btn,
body.web-pro-shell.theme-light-active .search-mode-btn,
body.web-pro-shell.theme-light-active .toggle-btn,
body.web-pro-shell.theme-light-active .detail-tab-btn,
body.web-pro-shell.theme-light-active .detail-fuel-btn,
body.web-pro-shell.theme-light-active .meta-pill,
body.web-pro-shell.theme-light-active .route-summary-inline-pill,
body.web-pro-shell.theme-light-active .range-card,
body.web-pro-shell.theme-light-active .brand-check,
body.web-pro-shell.theme-light-active .open-now-filter-card,
body.web-pro-shell.theme-light-active .detail-box,
body.web-pro-shell.theme-light-active .chart-shell,
body.web-pro-shell.theme-light-active .app-modal,
body.web-pro-shell.theme-light-active .price-alert-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn span,
body.web-pro-shell.theme-light-active .search-mode-btn span,
body.web-pro-shell.theme-light-active .detail-tab-btn,
body.web-pro-shell.theme-light-active .detail-fuel-btn,
body.web-pro-shell.theme-light-active .meta-pill,
body.web-pro-shell.theme-light-active .route-summary-inline-pill,
body.web-pro-shell.theme-light-active .brand-check,
body.web-pro-shell.theme-light-active .open-now-filter-card .form-check-label,
body.web-pro-shell.theme-light-active .range-value,
body.web-pro-shell.theme-light-active .modal-title,
body.web-pro-shell.theme-light-active .settings-section-card h6,
body.web-pro-shell.theme-light-active .vehicle-profile-title-row strong,
body.web-pro-shell.theme-light-active .settings-version-card strong,
body.web-pro-shell.theme-light-active .settings-action-card strong {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .modal-subtitle,
body.web-pro-shell.theme-light-active .settings-action-card span,
body.web-pro-shell.theme-light-active .settings-version-card span,
body.web-pro-shell.theme-light-active .vehicle-profile-meta,
body.web-pro-shell.theme-light-active .detail-vehicle-card-meta,
body.web-pro-shell.theme-light-active .detail-box .k,
body.web-pro-shell.theme-light-active .search-subcopy,
body.web-pro-shell.theme-light-active .label-soft,
body.web-pro-shell.theme-light-active .station-address,
body.web-pro-shell.theme-light-active .results-header p {
    color: #64748b !important;
}

body.web-pro-shell.theme-light-active .settings-chip,
body.web-pro-shell.theme-light-active .vehicle-inline-btn,
body.web-pro-shell.theme-light-active .app-btn-ghost-sm,
body.web-pro-shell.theme-light-active .btn-close {
    background: rgba(255, 255, 255, 0.96) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    filter: none !important;
}

body.web-pro-shell.theme-light-active .search-heading,
body.web-pro-shell.theme-light-active .station-brand,
body.web-pro-shell.theme-light-active .station-price-value,
body.web-pro-shell.theme-light-active .results-header h2,
body.web-pro-shell.theme-light-active .station-card .fw-bold,
body.web-pro-shell.theme-light-active .station-card strong,
body.web-pro-shell.theme-light-active .map-card strong,
body.web-pro-shell.theme-light-active .clear-input-btn,
body.web-pro-shell.theme-light-active .search-leading-icon,
body.web-pro-shell.theme-light-active .app-input,
body.web-pro-shell.theme-light-active .form-select,
body.web-pro-shell.theme-light-active .search-input-wrap .app-input,
body.web-pro-shell.theme-light-active .topbar-action-btn {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .app-input,
body.web-pro-shell.theme-light-active .form-select {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
}

body.web-pro-shell.theme-light-active .app-input::placeholder {
    color: #94a3b8 !important;
}

body.web-pro-shell.theme-light-active .station-price-box,
body.web-pro-shell.theme-light-active .sparkline-wrapper,
body.web-pro-shell.theme-light-active .view-toggle,
body.web-pro-shell.theme-light-active .search-tabs,
body.web-pro-shell.theme-light-active .distance-notice,
body.web-pro-shell.theme-light-active .route-summary-inline,
body.web-pro-shell.theme-light-active .topbar-count-badge,
body.web-pro-shell.theme-light-active .topbar-count-badge-inline {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 255, 0.96)) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
}

body.web-pro-shell.theme-light-active .search-tabs {
    background: rgba(226, 232, 240, 0.9) !important;
}

body.web-pro-shell.theme-light-active .active-filter-chip,
body.web-pro-shell[data-theme-mode="light"] .active-filter-chip {
    background: rgba(219, 234, 254, 0.92) !important;
    color: #1d4ed8 !important;
    border: 1px solid rgba(96, 165, 250, 0.24) !important;
}

body.web-pro-shell.theme-light-active .active-filter-chip-highlight,
body.web-pro-shell[data-theme-mode="light"] .active-filter-chip-highlight {
    background: rgba(220, 252, 231, 0.94) !important;
    color: #166534 !important;
    border-color: rgba(34, 197, 94, 0.24) !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active),
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active),
body.web-pro-shell.theme-light-active .toggle-btn:not(.active),
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active),
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active) span,
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active) span,
body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active) i,
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active) i,
body.web-pro-shell.theme-light-active .toggle-btn:not(.active) i,
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active) i,
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active) i {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .station-card.cheapest .station-price-box {
    background: linear-gradient(180deg, #ecfdf5, #d1fae5) !important;
    border-color: rgba(34, 197, 94, 0.25) !important;
}

body.web-pro-shell.theme-light-active .station-card.cheapest .station-price-value {
    color: #15803d !important;
}

body.web-pro-shell.theme-light-active .station-card.is-closed .station-price-box {
    background: linear-gradient(180deg, #f3f4f6, #e5e7eb) !important;
    border-color: rgba(107, 114, 128, 0.14) !important;
}

body.web-pro-shell.theme-light-active .station-card.is-closed .station-price-value {
    color: #6b7280 !important;
}

body.web-pro-shell.theme-light-active .distance-notice,
body.web-pro-shell.theme-light-active .route-summary-inline {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .distance-notice p,
body.web-pro-shell.theme-light-active .route-summary-inline span,
body.web-pro-shell.theme-light-active .route-summary-inline small {
    color: #64748b !important;
}

.web-pro-shell .brand-text .brand-title {
    font-size: clamp(1.34rem, 1.14rem + 0.62vw, 1.72rem);
    line-height: 1;
    letter-spacing: -0.025em;
    font-weight: 900;
    text-shadow: 0 1px 12px rgba(15, 23, 42, 0.16);
}

@media (max-width: 767.98px) {
    .web-pro-shell .brand-text .brand-title {
        font-size: 1.34rem;
    }
}

.home-premium-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 38px 38px 32px;
    border-radius: 30px;
    background-color: #0f172a;
    background-position: center right;
    background-size: cover;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.24);
}

.home-premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(0deg, rgba(7, 14, 29, 0.18), rgba(7, 14, 29, 0.18));
    pointer-events: none;
}

.home-premium-hero-inner,
.home-premium-stat-grid {
    position: relative;
    z-index: 1;
}

.home-premium-hero-inner {
    display: grid;
    gap: 18px;
    max-width: 620px;
    min-height: 560px;
    align-content: center;
}

.home-premium-eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #eff6ff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-premium-title {
    margin: 0;
    max-width: 12ch;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 0.98;
    font-weight: 900;
}

.home-premium-lead {
    margin: 0;
    max-width: 58ch;
    color: rgba(239, 246, 255, 0.92);
    font-size: 1.06rem;
    line-height: 1.68;
}

.home-premium-cta-row,
.home-premium-link-row,
.home-premium-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-premium-primary-cta {
    min-width: 240px;
}

.home-premium-secondary-cta {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #f8fafc;
}

.home-premium-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.home-premium-link-row .page-chip-link {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
    color: #eff6ff;
}

.home-premium-proof-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 700;
}

.home-premium-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.home-premium-stat-card {
    display: grid;
    gap: 8px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    color: #dbeafe;
}

.home-premium-stat-card span {
    font-size: 0.85rem;
    font-weight: 700;
}

.home-premium-stat-card strong {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.1;
}

.home-premium-band {
    display: grid;
    gap: 22px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.home-premium-band-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.92));
}

.home-premium-section-head {
    display: grid;
    gap: 10px;
    max-width: 760px;
}

.home-premium-section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.75rem, 2vw, 2.4rem);
    line-height: 1.08;
}

.home-premium-section-head p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.home-premium-action-grid,
.home-premium-live-grid,
.home-premium-city-grid,
.home-premium-feature-grid {
    display: grid;
    gap: 16px;
}

.home-premium-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-premium-action-card,
.home-premium-live-card,
.home-premium-city-card,
.home-premium-feature-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-premium-action-card:hover,
.home-premium-live-card:hover,
.home-premium-city-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.home-premium-action-card.is-primary {
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(255, 255, 255, 0.98) 52%);
}

.home-premium-action-card.is-muted {
    background:
        linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 255, 255, 0.96) 56%);
}

.home-premium-action-icon,
.home-premium-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--green-dark);
    font-size: 1.35rem;
}

.home-premium-action-copy,
.home-premium-city-head > div,
.home-premium-live-top > div {
    display: grid;
    gap: 6px;
}

.home-premium-action-copy strong,
.home-premium-live-top strong,
.home-premium-feature-card h3,
.home-premium-city-head h3 {
    color: var(--text);
    font-size: 1.12rem;
    line-height: 1.2;
    margin: 0;
}

.home-premium-action-copy p,
.home-premium-feature-card p,
.home-premium-live-top span,
.home-premium-city-head p,
.home-premium-city-links a,
.home-premium-live-bottom small,
.home-premium-city-prices small {
    margin: 0;
    
    line-height: 1.55;
}

.home-premium-live-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-premium-live-top,
.home-premium-city-head,
.home-premium-city-prices {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.home-premium-live-count,
.home-premium-city-head span {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.home-premium-live-bottom {
    display: grid;
    gap: 6px;
}

.home-premium-live-price {
    color: var(--green-dark);
    font-size: 1.32rem;
    font-weight: 900;
    line-height: 1.05;
}

.home-premium-city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-premium-city-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.home-premium-city-prices div {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(241, 245, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.home-premium-city-prices strong {
    color: var(--text);
    line-height: 1.2;
}

.home-premium-city-links {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-premium-city-link-chip,
.home-premium-city-link-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-premium-city-link-chip {
    background: linear-gradient(180deg, rgba(241, 245, 255, 0.96), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--green-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.home-premium-city-link-chip:hover,
.home-premium-city-link-cta:hover {
    transform: translateY(-1px);
}

.home-premium-city-link-chip:hover {
    color: var(--green-dark);
    border-color: rgba(37, 99, 235, 0.18);
    background: linear-gradient(180deg, rgba(224, 237, 255, 0.94), rgba(255, 255, 255, 0.98));
}

.home-premium-city-link-chip i,
.home-premium-city-link-cta i {
    font-size: 0.95rem;
}

.home-premium-city-link-cta {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 1px solid rgba(37, 99, 235, 0.26);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.home-premium-city-link-cta:hover {
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.home-premium-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-premium-final-banner {
    background:
        radial-gradient(circle at left top, rgba(37, 99, 235, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 255, 0.96));
}

@media (max-width: 1199.98px) {
    .home-premium-live-grid,
    .home-premium-city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .home-premium-hero {
        min-height: 0;
        padding: 26px 22px 22px;
        background-position: 62% center;
    }

    .home-premium-hero-inner {
        min-height: 0;
        max-width: 100%;
    }

    .home-premium-stat-grid,
    .home-premium-action-grid,
    .home-premium-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-premium-hero {
        padding: 22px 18px 18px;
        border-radius: 24px;
        background-position: 70% center;
    }

    .home-premium-title {
        max-width: 11ch;
        font-size: 2.45rem;
    }

    .home-premium-lead {
        font-size: 0.98rem;
    }

    .home-premium-band,
    .home-premium-action-card,
    .home-premium-live-card,
    .home-premium-city-card,
    .home-premium-feature-card {
        padding: 18px;
        border-radius: 22px;
    }

    .home-premium-stat-grid,
    .home-premium-action-grid,
    .home-premium-live-grid,
    .home-premium-city-grid,
    .home-premium-city-prices,
    .home-premium-feature-grid {
        grid-template-columns: 1fr;
    }

    .home-premium-cta-row .btn,
    .home-premium-link-row .page-chip-link {
        width: 100%;
    }

    .home-premium-proof-row span {
        width: 100%;
        justify-content: center;
    }
}

body.web-pro-shell.theme-dark-active .home-premium-band,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-band,
body.web-pro-shell.theme-dark-active .home-premium-action-card,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-action-card,
body.web-pro-shell.theme-dark-active .home-premium-live-card,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-live-card,
body.web-pro-shell.theme-dark-active .home-premium-city-card,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-card,
body.web-pro-shell.theme-dark-active .home-premium-feature-card,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-feature-card,
body.web-pro-shell.theme-dark-active .home-premium-final-banner,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-final-banner {
    background: rgba(17, 24, 39, 0.92) !important;
    border-color: rgba(148, 163, 184, 0.14) !important;
}

body.web-pro-shell.theme-dark-active .home-premium-title,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-title,
body.web-pro-shell.theme-dark-active .home-premium-stat-card strong,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-stat-card strong,
body.web-pro-shell.theme-dark-active .home-premium-action-copy strong,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-action-copy strong,
body.web-pro-shell.theme-dark-active .home-premium-live-top strong,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-live-top strong,
body.web-pro-shell.theme-dark-active .home-premium-city-head h3,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-head h3,
body.web-pro-shell.theme-dark-active .home-premium-city-prices strong,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-prices strong,
body.web-pro-shell.theme-dark-active .home-premium-feature-card h3,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-feature-card h3,
body.web-pro-shell.theme-dark-active .home-premium-section-head h2,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-section-head h2 {
    color: #f8fafc !important;
}

body.web-pro-shell.theme-dark-active .home-premium-action-copy p,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-action-copy p,
body.web-pro-shell.theme-dark-active .home-premium-feature-card p,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-feature-card p,
body.web-pro-shell.theme-dark-active .home-premium-live-top span,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-live-top span,
body.web-pro-shell.theme-dark-active .home-premium-city-head p,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-head p,
body.web-pro-shell.theme-dark-active .home-premium-city-prices small,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-prices small,
body.web-pro-shell.theme-dark-active .home-premium-live-bottom small,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-live-bottom small,
body.web-pro-shell.theme-dark-active .home-premium-section-head p,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-section-head p {
    color: #94a3b8 !important;
}

body.web-pro-shell.theme-dark-active .home-premium-action-card.is-primary,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-action-card.is-primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(17, 24, 39, 0.96) 56%) !important;
}

body.web-pro-shell.theme-dark-active .home-premium-action-card.is-muted,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-action-card.is-muted {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(17, 24, 39, 0.96) 56%) !important;
}

body.web-pro-shell.theme-dark-active .home-premium-action-icon,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-action-icon,
body.web-pro-shell.theme-dark-active .home-premium-feature-icon,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-feature-icon,
body.web-pro-shell.theme-dark-active .home-premium-live-count,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-live-count,
body.web-pro-shell.theme-dark-active .home-premium-city-head span,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-head span {
    background: rgba(59, 130, 246, 0.14) !important;
    color: #dbeafe !important;
}

body.web-pro-shell.theme-dark-active .home-premium-city-prices div,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-prices div {
    background: rgba(15, 23, 42, 0.92) !important;
    border-color: rgba(148, 163, 184, 0.14) !important;
}

body.web-pro-shell.theme-dark-active .home-premium-city-link-chip,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-link-chip {
    background: rgba(15, 23, 42, 0.92) !important;
    border-color: rgba(148, 163, 184, 0.16) !important;
    color: #dbeafe !important;
}

body.web-pro-shell.theme-dark-active .home-premium-city-link-cta,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-city-link-cta {
    color: #ffffff !important;
}

body.web-pro-shell.theme-dark-active .home-premium-live-price,
body.web-pro-shell[data-theme-mode="dark"] .home-premium-live-price {
    color: #bfdbfe !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn.is-active,
body.web-pro-shell.theme-light-active .search-mode-btn.is-active,
body.web-pro-shell.theme-light-active .toggle-btn.active,
body.web-pro-shell.theme-light-active .detail-tab-btn.active,
body.web-pro-shell.theme-light-active .detail-fuel-btn.active {
    color: #ffffff !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn.is-active span,
body.web-pro-shell.theme-light-active .search-mode-btn.is-active span,
body.web-pro-shell.theme-light-active .search-tab-btn.is-active i,
body.web-pro-shell.theme-light-active .search-mode-btn.is-active i,
body.web-pro-shell.theme-light-active .toggle-btn.active i,
body.web-pro-shell.theme-light-active .detail-tab-btn.active i,
body.web-pro-shell.theme-light-active .detail-fuel-btn.active i {
    color: #ffffff !important;
}

body.web-pro-shell.theme-light-active .settings-chip.is-active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #fff !important;
    border-color: rgba(37, 99, 235, 0.4) !important;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24) !important;
}

body.web-pro-shell.theme-light-active #settingsModal .modal-header,
body.web-pro-shell.theme-light-active #settingsModal .modal-footer,
body.web-pro-shell.theme-light-active #vehicleModal .modal-header,
body.web-pro-shell.theme-light-active #vehicleModal .modal-footer,
body.web-pro-shell.theme-light-active #filtersModal .modal-header,
body.web-pro-shell.theme-light-active #filtersModal .modal-footer {
    border-color: rgba(148, 163, 184, 0.14) !important;
}

body.web-pro-shell.theme-light-active .vehicle-delete-confirm-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 255, 0.98)) !important;
}

body.web-pro-shell.theme-dark-active .vehicle-delete-confirm-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.98)) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
}

body.web-pro-shell.theme-dark-active .vehicle-delete-confirm-copy strong,
body.web-pro-shell.theme-dark-active .vehicle-delete-confirm-name {
    color: #f8fafc !important;
}

body.web-pro-shell.theme-dark-active .vehicle-delete-confirm-copy p {
    color: #94a3b8 !important;
}

body.web-pro-shell.theme-dark-active .vehicle-delete-confirm-backdrop {
    background: rgba(2, 6, 23, 0.7);
}

@media (max-width: 767.98px) {
    .web-pro-shell .vehicle-delete-confirm {
        padding: 16px;
    }

    .web-pro-shell .vehicle-delete-confirm-actions {
        grid-template-columns: 1fr;
    }
}

body.web-pro-shell.theme-light-active::before,
body.web-pro-shell[data-theme-mode="light"]::before {
    display: none !important;
}

body.web-pro-shell.theme-light-active,
body.web-pro-shell[data-theme-mode="light"] {
    background-color: #f6f9ff !important;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 22%),
        radial-gradient(circle at right 10%, rgba(255, 107, 0, 0.05), transparent 18%),
        linear-gradient(180deg, #f6f9ff 0%, #eef4ff 48%, #f7f9fd 100%) !important;
}

html body.web-pro-shell.theme-light-active,
html body.web-pro-shell[data-theme-mode="light"] {
    background-color: #f6f9ff !important;
}

body.web-pro-shell.theme-light-active .topbar,
body.web-pro-shell[data-theme-mode="light"] .topbar {
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.96), rgba(37, 99, 235, 0.94)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)) !important;
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.18) !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96)) !important;
    color: #0f172a !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08) !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn i,
body.web-pro-shell.theme-light-active .topbar-action-btn span,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn i,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn span {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn-vehicle.is-active,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn-vehicle.is-active {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
    color: #1d4ed8 !important;
    border-color: rgba(59, 130, 246, 0.28) !important;
    box-shadow: 0 14px 26px rgba(59, 130, 246, 0.16) !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn-vehicle.is-active i,
body.web-pro-shell.theme-light-active .topbar-action-btn-vehicle.is-active span,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn-vehicle.is-active i,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn-vehicle.is-active span {
    color: #1d4ed8 !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn-settings,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn-settings {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)) !important;
}

body.web-pro-shell.theme-light-active .detail-fuel-btn.active,
body.web-pro-shell.theme-light-active .detail-tab-btn.active,
body.web-pro-shell.theme-light-active .toggle-btn.active,
body.web-pro-shell[data-theme-mode="light"] .detail-fuel-btn.active,
body.web-pro-shell[data-theme-mode="light"] .detail-tab-btn.active,
body.web-pro-shell[data-theme-mode="light"] .toggle-btn.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    border-color: rgba(37, 99, 235, 0.4) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22) !important;
}

body.web-pro-shell.theme-light-active .detail-fuel-btn.active i,
body.web-pro-shell.theme-light-active .detail-fuel-btn.active span,
body.web-pro-shell.theme-light-active .detail-tab-btn.active i,
body.web-pro-shell.theme-light-active .detail-tab-btn.active span,
body.web-pro-shell.theme-light-active .toggle-btn.active i,
body.web-pro-shell.theme-light-active .toggle-btn.active span,
body.web-pro-shell[data-theme-mode="light"] .detail-fuel-btn.active i,
body.web-pro-shell[data-theme-mode="light"] .detail-fuel-btn.active span,
body.web-pro-shell[data-theme-mode="light"] .detail-tab-btn.active i,
body.web-pro-shell[data-theme-mode="light"] .detail-tab-btn.active span,
body.web-pro-shell[data-theme-mode="light"] .toggle-btn.active i,
body.web-pro-shell[data-theme-mode="light"] .toggle-btn.active span {
    color: #ffffff !important;
}

body.web-pro-shell.theme-light-active .detail-box .v,
body.web-pro-shell.theme-light-active .detail-section strong,
body.web-pro-shell.theme-light-active .detail-section h6,
body.web-pro-shell.theme-light-active .detail-section h5,
body.web-pro-shell.theme-light-active .detail-vehicle-costs-title,
body.web-pro-shell[data-theme-mode="light"] .detail-box .v,
body.web-pro-shell[data-theme-mode="light"] .detail-section strong,
body.web-pro-shell[data-theme-mode="light"] .detail-section h6,
body.web-pro-shell[data-theme-mode="light"] .detail-section h5,
body.web-pro-shell[data-theme-mode="light"] .detail-vehicle-costs-title {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn.is-active,
body.web-pro-shell.theme-light-active .search-mode-btn-nearby.is-active,
body.web-pro-shell.theme-light-active .search-mode-btn-favorites.is-active,
body.web-pro-shell[data-theme-mode="light"] .search-tab-btn.is-active,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-nearby.is-active,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-favorites.is-active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    border-color: rgba(37, 99, 235, 0.38) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.20) !important;
}

body.web-pro-shell.theme-light-active .search-mode-btn-favorites.is-active,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-favorites.is-active {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    border-color: rgba(245, 158, 11, 0.34) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 26px rgba(217, 119, 6, 0.20) !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn.is-active span,
body.web-pro-shell.theme-light-active .search-tab-btn.is-active i,
body.web-pro-shell.theme-light-active .search-mode-btn-nearby.is-active span,
body.web-pro-shell.theme-light-active .search-mode-btn-nearby.is-active i,
body.web-pro-shell.theme-light-active .search-mode-btn-favorites.is-active span,
body.web-pro-shell.theme-light-active .search-mode-btn-favorites.is-active i,
body.web-pro-shell[data-theme-mode="light"] .search-tab-btn.is-active span,
body.web-pro-shell[data-theme-mode="light"] .search-tab-btn.is-active i,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-nearby.is-active span,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-nearby.is-active i,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-favorites.is-active span,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn-favorites.is-active i {
    color: #ffffff !important;
}

body.web-pro-shell.theme-light-active,
body.web-pro-shell[data-theme-mode="light"] {
    color: #0f172a !important;
    background-color: #f7faff !important;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 24%),
        radial-gradient(circle at right 14%, rgba(249, 115, 22, 0.06), transparent 20%),
        linear-gradient(180deg, #f8fbff 0%, #f1f6ff 46%, #f8fbff 100%) !important;
}

body.web-pro-shell.theme-light-active .topbar,
body.web-pro-shell[data-theme-mode="light"] .topbar {
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.98), rgba(37, 99, 235, 0.94)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)) !important;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16) !important;
}

body.web-pro-shell.theme-light-active .search-panel,
body.web-pro-shell.theme-light-active .results-header,
body.web-pro-shell.theme-light-active .station-card,
body.web-pro-shell.theme-light-active .map-card,
body.web-pro-shell.theme-light-active .landing-hero-card,
body.web-pro-shell.theme-light-active .page-hero-card,
body.web-pro-shell.theme-light-active .seo-content-section,
body.web-pro-shell.theme-light-active .seo-mini-item,
body.web-pro-shell.theme-light-active .seo-card,
body.web-pro-shell.theme-light-active .intent-card,
body.web-pro-shell.theme-light-active .intent-mini-link,
body.web-pro-shell.theme-light-active .contact-card,
body.web-pro-shell.theme-light-active .detail-hero-card,
body.web-pro-shell.theme-light-active .detail-section,
body.web-pro-shell.theme-light-active .detail-box,
body.web-pro-shell.theme-light-active .chart-shell,
body.web-pro-shell.theme-light-active .range-card,
body.web-pro-shell.theme-light-active .brand-check,
body.web-pro-shell.theme-light-active .open-now-filter-card,
body.web-pro-shell.theme-light-active .app-modal,
body.web-pro-shell.theme-light-active .settings-section-card,
body.web-pro-shell.theme-light-active .settings-device-card,
body.web-pro-shell.theme-light-active .settings-version-card,
body.web-pro-shell.theme-light-active .settings-action-card,
body.web-pro-shell.theme-light-active .vehicle-profile-card,
body.web-pro-shell.theme-light-active .vehicle-empty-state,
body.web-pro-shell.theme-light-active .welcome-step-detail,
body.web-pro-shell.theme-light-active .price-alert-item,
body.web-pro-shell.theme-light-active .app-install-banner,
body.web-pro-shell.theme-light-active .app-install-modal-content,
body.web-pro-shell.theme-light-active .faq-item,
body.web-pro-shell.theme-light-active .landing-cta-banner,
body.web-pro-shell[data-theme-mode="light"] .search-panel,
body.web-pro-shell[data-theme-mode="light"] .results-header,
body.web-pro-shell[data-theme-mode="light"] .station-card,
body.web-pro-shell[data-theme-mode="light"] .map-card,
body.web-pro-shell[data-theme-mode="light"] .seo-mini-item,
body.web-pro-shell[data-theme-mode="light"] .detail-hero-card,
body.web-pro-shell[data-theme-mode="light"] .detail-section,
body.web-pro-shell[data-theme-mode="light"] .detail-box,
body.web-pro-shell[data-theme-mode="light"] .chart-shell,
body.web-pro-shell[data-theme-mode="light"] .range-card,
body.web-pro-shell[data-theme-mode="light"] .brand-check,
body.web-pro-shell[data-theme-mode="light"] .open-now-filter-card,
body.web-pro-shell[data-theme-mode="light"] .app-modal,
body.web-pro-shell[data-theme-mode="light"] .settings-section-card,
body.web-pro-shell[data-theme-mode="light"] .settings-device-card,
body.web-pro-shell[data-theme-mode="light"] .settings-version-card,
body.web-pro-shell[data-theme-mode="light"] .settings-action-card,
body.web-pro-shell[data-theme-mode="light"] .vehicle-profile-card,
body.web-pro-shell[data-theme-mode="light"] .vehicle-empty-state,
body.web-pro-shell[data-theme-mode="light"] .welcome-step-detail,
body.web-pro-shell[data-theme-mode="light"] .price-alert-item,
body.web-pro-shell[data-theme-mode="light"] .app-install-banner,
body.web-pro-shell[data-theme-mode="light"] .app-install-modal-content,
body.web-pro-shell[data-theme-mode="light"] .faq-item,
body.web-pro-shell[data-theme-mode="light"] .landing-cta-banner {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
}

body.web-pro-shell.theme-light-active .search-tabs,
body.web-pro-shell.theme-light-active .view-toggle,
body.web-pro-shell.theme-light-active .sparkline-wrapper,
body.web-pro-shell.theme-light-active .distance-notice,
body.web-pro-shell.theme-light-active .route-summary-inline,
body.web-pro-shell[data-theme-mode="light"] .search-tabs,
body.web-pro-shell[data-theme-mode="light"] .view-toggle,
body.web-pro-shell[data-theme-mode="light"] .sparkline-wrapper,
body.web-pro-shell[data-theme-mode="light"] .distance-notice,
body.web-pro-shell[data-theme-mode="light"] .route-summary-inline {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 255, 0.96)) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn,
body.web-pro-shell.theme-light-active .settings-chip,
body.web-pro-shell.theme-light-active .vehicle-inline-btn,
body.web-pro-shell.theme-light-active .app-btn-ghost-sm,
body.web-pro-shell.theme-light-active .app-input,
body.web-pro-shell.theme-light-active .form-select,
body.web-pro-shell[data-theme-mode="light"] .topbar-action-btn,
body.web-pro-shell[data-theme-mode="light"] .settings-chip,
body.web-pro-shell[data-theme-mode="light"] .vehicle-inline-btn,
body.web-pro-shell[data-theme-mode="light"] .app-btn-ghost-sm,
body.web-pro-shell[data-theme-mode="light"] .app-input,
body.web-pro-shell[data-theme-mode="light"] .form-select {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 245, 249, 0.97)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 8px 18px rgba(15, 23, 42, 0.05) !important;
}

body.web-pro-shell.theme-light-active .app-input::placeholder,
body.web-pro-shell.theme-light-active .search-subcopy,
body.web-pro-shell.theme-light-active .label-soft,
body.web-pro-shell.theme-light-active .results-header p,
body.web-pro-shell.theme-light-active .station-address,
body.web-pro-shell.theme-light-active .station-distance,
body.web-pro-shell.theme-light-active .modal-subtitle,
body.web-pro-shell.theme-light-active .settings-action-card span,
body.web-pro-shell.theme-light-active .settings-version-card span,
body.web-pro-shell.theme-light-active .vehicle-profile-meta,
body.web-pro-shell.theme-light-active .detail-vehicle-card-meta,
body.web-pro-shell.theme-light-active .detail-box .k,
body.web-pro-shell.theme-light-active .faq-item p,
body.web-pro-shell.theme-light-active .landing-cta-banner p,
body.web-pro-shell[data-theme-mode="light"] .app-input::placeholder,
body.web-pro-shell[data-theme-mode="light"] .search-subcopy,
body.web-pro-shell[data-theme-mode="light"] .label-soft,
body.web-pro-shell[data-theme-mode="light"] .results-header p,
body.web-pro-shell[data-theme-mode="light"] .station-address,
body.web-pro-shell[data-theme-mode="light"] .station-distance,
body.web-pro-shell[data-theme-mode="light"] .modal-subtitle,
body.web-pro-shell[data-theme-mode="light"] .settings-action-card span,
body.web-pro-shell[data-theme-mode="light"] .settings-version-card span,
body.web-pro-shell[data-theme-mode="light"] .vehicle-profile-meta,
body.web-pro-shell[data-theme-mode="light"] .detail-vehicle-card-meta,
body.web-pro-shell[data-theme-mode="light"] .detail-box .k,
body.web-pro-shell[data-theme-mode="light"] .faq-item p,
body.web-pro-shell[data-theme-mode="light"] .landing-cta-banner p {
    color: #64748b !important;
}

body.web-pro-shell.theme-light-active .search-heading,
body.web-pro-shell.theme-light-active .results-header h2,
body.web-pro-shell.theme-light-active .station-card strong,
body.web-pro-shell.theme-light-active .station-card .fw-bold,
body.web-pro-shell.theme-light-active .station-brand,
body.web-pro-shell.theme-light-active .station-price-value,
body.web-pro-shell.theme-light-active .modal-title,
body.web-pro-shell.theme-light-active .settings-section-card h6,
body.web-pro-shell.theme-light-active .settings-version-card strong,
body.web-pro-shell.theme-light-active .settings-action-card strong,
body.web-pro-shell.theme-light-active .vehicle-profile-title-row strong,
body.web-pro-shell.theme-light-active .detail-box .v,
body.web-pro-shell.theme-light-active .detail-section h5,
body.web-pro-shell.theme-light-active .detail-section h6,
body.web-pro-shell.theme-light-active .detail-section strong,
body.web-pro-shell.theme-light-active .faq-item summary,
body.web-pro-shell.theme-light-active .landing-cta-banner h2,
body.web-pro-shell[data-theme-mode="light"] .search-heading,
body.web-pro-shell[data-theme-mode="light"] .results-header h2,
body.web-pro-shell[data-theme-mode="light"] .station-card strong,
body.web-pro-shell[data-theme-mode="light"] .station-card .fw-bold,
body.web-pro-shell[data-theme-mode="light"] .station-brand,
body.web-pro-shell[data-theme-mode="light"] .station-price-value,
body.web-pro-shell[data-theme-mode="light"] .modal-title,
body.web-pro-shell[data-theme-mode="light"] .settings-section-card h6,
body.web-pro-shell[data-theme-mode="light"] .settings-version-card strong,
body.web-pro-shell[data-theme-mode="light"] .settings-action-card strong,
body.web-pro-shell[data-theme-mode="light"] .vehicle-profile-title-row strong,
body.web-pro-shell[data-theme-mode="light"] .detail-box .v,
body.web-pro-shell[data-theme-mode="light"] .detail-section h5,
body.web-pro-shell[data-theme-mode="light"] .detail-section h6,
body.web-pro-shell[data-theme-mode="light"] .detail-section strong,
body.web-pro-shell[data-theme-mode="light"] .faq-item summary,
body.web-pro-shell[data-theme-mode="light"] .landing-cta-banner h2 {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active),
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active),
body.web-pro-shell.theme-light-active .toggle-btn:not(.active),
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active),
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active),
body.web-pro-shell[data-theme-mode="light"] .search-tab-btn:not(.is-active),
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn:not(.is-active),
body.web-pro-shell[data-theme-mode="light"] .toggle-btn:not(.active),
body.web-pro-shell[data-theme-mode="light"] .detail-tab-btn:not(.active),
body.web-pro-shell[data-theme-mode="light"] .detail-fuel-btn:not(.active) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 245, 249, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.2) !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active) i,
body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active) span,
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active) i,
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active) span,
body.web-pro-shell.theme-light-active .toggle-btn:not(.active) i,
body.web-pro-shell.theme-light-active .toggle-btn:not(.active) span,
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active) i,
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active) span,
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active) i,
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active) span,
body.web-pro-shell[data-theme-mode="light"] .search-tab-btn:not(.is-active) i,
body.web-pro-shell[data-theme-mode="light"] .search-tab-btn:not(.is-active) span,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn:not(.is-active) i,
body.web-pro-shell[data-theme-mode="light"] .search-mode-btn:not(.is-active) span,
body.web-pro-shell[data-theme-mode="light"] .toggle-btn:not(.active) i,
body.web-pro-shell[data-theme-mode="light"] .toggle-btn:not(.active) span,
body.web-pro-shell[data-theme-mode="light"] .detail-tab-btn:not(.active) i,
body.web-pro-shell[data-theme-mode="light"] .detail-tab-btn:not(.active) span,
body.web-pro-shell[data-theme-mode="light"] .detail-fuel-btn:not(.active) i,
body.web-pro-shell[data-theme-mode="light"] .detail-fuel-btn:not(.active) span {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .route-search-compact,
body.web-pro-shell[data-theme-mode="light"] .route-search-compact {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,255,0.96)) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08) !important;
}

body.web-pro-shell.theme-light-active .route-summary-inline,
body.web-pro-shell[data-theme-mode="light"] .route-summary-inline {
    background: rgba(219, 234, 254, 0.5) !important;
    border-color: rgba(96, 165, 250, 0.18) !important;
}

body.web-pro-shell.theme-light-active .route-summary-inline-title,
body.web-pro-shell[data-theme-mode="light"] .route-summary-inline-title {
    color: #0f172a !important;
}

html[data-theme-mode="light"],
html[data-resolved-theme="light"] {
    background: #f6f9ff !important;
    background-color: #f6f9ff !important;
}

body.web-pro-shell.theme-light-active .main-shell,
body.web-pro-shell[data-theme-mode="light"] .main-shell {
    background: transparent !important;
    /*background-color: #f6f9ff !important;*/
}

body.web-pro-shell.theme-light-active .app-footer,
body.web-pro-shell[data-theme-mode="light"] .app-footer {
    background: linear-gradient(180deg, rgba(246, 249, 255, 0.96), rgba(239, 244, 255, 0.98)) !important;
    background-color: #f6f9ff !important;
    border-top: 1px solid rgba(148, 163, 184, 0.16) !important;
}

body.web-pro-shell.theme-light-active .footer-content,
body.web-pro-shell.theme-light-active .footer-content a,
body.web-pro-shell[data-theme-mode="light"] .footer-content,
body.web-pro-shell[data-theme-mode="light"] .footer-content a {
    color: #64748b !important;
}

.seo-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.9rem;
}

.seo-breadcrumb a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.seo-breadcrumb a:hover {
    text-decoration: underline;
}

.seo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 0;
}

.seo-stat {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 14px;
}

.seo-stat span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.seo-stat strong {
    display: block;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.15;
}

html[data-resolved-theme="dark"] .seo-stat {

        background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.92));
        border-color: rgba(148, 163, 184, 0.18);
}

html[data-resolved-theme="dark"] .seo-stat span {

        color: #94a3b8;
}

html[data-resolved-theme="dark"] .seo-stat strong {

        color: #f8fafc;
}



body.web-pro-shell.theme-dark-active .seo-stat,
body.web-pro-shell[data-theme-mode="dark"] .seo-stat {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.92)) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
}

body.web-pro-shell.theme-dark-active .seo-stat span,
body.web-pro-shell[data-theme-mode="dark"] .seo-stat span {
    color: #94a3b8 !important;
}

body.web-pro-shell.theme-dark-active .seo-stat strong,
body.web-pro-shell[data-theme-mode="dark"] .seo-stat strong {
    color: #f8fafc !important;
}

html[data-resolved-theme="light"],
body.web-pro-shell.theme-light-active,
body.web-pro-shell[data-resolved-theme="light"] {
    --bg: #f4f7fc;
    --surface: rgba(255, 255, 255, 0.90);
    --surface-strong: #ffffff;
    --surface-soft: #f8fbff;
    --text: #111827;
    --text-primary: #111827;
    --text-soft: #6b7280;
    --text-secondary: #6b7280;
    --border: rgba(30, 64, 175, 0.08);
    --green: #2563eb;
    --green-dark: #1e40af;
    --green-soft: #e0edff;
    --green-soft-2: #eef4ff;
    --warning: #ff6b00;
    --shadow: 0 10px 30px rgba(37, 99, 235, 0.10);
    --shadow-soft: 0 6px 20px rgba(37, 99, 235, 0.08);
}

html[data-resolved-theme="dark"],
body.web-pro-shell.theme-dark-active,
body.web-pro-shell[data-resolved-theme="dark"] {
    --bg: #0b1120;
    --surface: rgba(15, 23, 42, 0.88);
    --surface-strong: #111827;
    --surface-soft: #1e293b;
    --text: #e5edf8;
    --text-primary: #f8fafc;
    --text-soft: #94a3b8;
    --text-secondary: #94a3b8;
    --border: rgba(148, 163, 184, 0.14);
    --green: #3b82f6;
    --green-dark: #1d4ed8;
    --green-soft: #1e3a5f;
    --green-soft-2: #172554;
    --warning: #fb923c;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.28);
}

body.web-pro-shell.theme-light-active,
body.web-pro-shell[data-resolved-theme="light"] {
    color-scheme: light;
    color: #0f172a !important;
    background-color: #f8fbff !important;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 24%),
        radial-gradient(circle at right 14%, rgba(249, 115, 22, 0.06), transparent 20%),
        linear-gradient(180deg, #f8fbff 0%, #f1f6ff 46%, #f8fbff 100%) !important;
}

body.web-pro-shell.theme-light-active::before,
body.web-pro-shell[data-resolved-theme="light"]::before {
    display: none !important;
}

html[data-resolved-theme="light"],
html[data-theme-mode="light"] {
    background: #f8fbff !important;
    background-color: #f8fbff !important;
    color-scheme: light;
}

body.web-pro-shell.theme-light-active .main-shell,
body.web-pro-shell[data-resolved-theme="light"] .main-shell {
    background: transparent !important;
}

body.web-pro-shell.theme-light-active .search-panel,
body.web-pro-shell.theme-light-active .results-header,
body.web-pro-shell.theme-light-active .station-card,
body.web-pro-shell.theme-light-active .map-card,
body.web-pro-shell.theme-light-active .seo-mini-item,
body.web-pro-shell.theme-light-active .detail-hero-card,
body.web-pro-shell.theme-light-active .detail-section,
body.web-pro-shell.theme-light-active .detail-box,
body.web-pro-shell.theme-light-active .chart-shell,
body.web-pro-shell.theme-light-active .range-card,
body.web-pro-shell.theme-light-active .brand-check,
body.web-pro-shell.theme-light-active .open-now-filter-card,
body.web-pro-shell.theme-light-active .app-modal,
body.web-pro-shell.theme-light-active .settings-section-card,
body.web-pro-shell.theme-light-active .settings-device-card,
body.web-pro-shell.theme-light-active .settings-version-card,
body.web-pro-shell.theme-light-active .settings-action-card,
body.web-pro-shell.theme-light-active .vehicle-profile-card,
body.web-pro-shell.theme-light-active .vehicle-empty-state,
body.web-pro-shell.theme-light-active .welcome-step-detail,
body.web-pro-shell.theme-light-active .price-alert-item,
body.web-pro-shell.theme-light-active .app-install-banner,
body.web-pro-shell.theme-light-active .app-install-modal-content,
body.web-pro-shell.theme-light-active .faq-item,
body.web-pro-shell.theme-light-active .landing-cta-banner,
body.web-pro-shell.theme-light-active .seo-stat,
body.web-pro-shell[data-resolved-theme="light"] .search-panel,
body.web-pro-shell[data-resolved-theme="light"] .results-header,
body.web-pro-shell[data-resolved-theme="light"] .station-card,
body.web-pro-shell[data-resolved-theme="light"] .map-card,
body.web-pro-shell[data-resolved-theme="light"] .landing-hero-card,
body.web-pro-shell[data-resolved-theme="light"] .page-hero-card,
body.web-pro-shell[data-resolved-theme="light"] .seo-content-section,
body.web-pro-shell[data-resolved-theme="light"] .seo-mini-item,
body.web-pro-shell[data-resolved-theme="light"] .seo-card,
body.web-pro-shell[data-resolved-theme="light"] .intent-card,
body.web-pro-shell[data-resolved-theme="light"] .intent-mini-link,
body.web-pro-shell[data-resolved-theme="light"] .contact-card,
body.web-pro-shell[data-resolved-theme="light"] .detail-hero-card,
body.web-pro-shell[data-resolved-theme="light"] .detail-section,
body.web-pro-shell[data-resolved-theme="light"] .detail-box,
body.web-pro-shell[data-resolved-theme="light"] .chart-shell,
body.web-pro-shell[data-resolved-theme="light"] .range-card,
body.web-pro-shell[data-resolved-theme="light"] .brand-check,
body.web-pro-shell[data-resolved-theme="light"] .open-now-filter-card,
body.web-pro-shell[data-resolved-theme="light"] .app-modal,
body.web-pro-shell[data-resolved-theme="light"] .settings-section-card,
body.web-pro-shell[data-resolved-theme="light"] .settings-device-card,
body.web-pro-shell[data-resolved-theme="light"] .settings-version-card,
body.web-pro-shell[data-resolved-theme="light"] .settings-action-card,
body.web-pro-shell[data-resolved-theme="light"] .vehicle-profile-card,
body.web-pro-shell[data-resolved-theme="light"] .vehicle-empty-state,
body.web-pro-shell[data-resolved-theme="light"] .welcome-step-detail,
body.web-pro-shell[data-resolved-theme="light"] .price-alert-item,
body.web-pro-shell[data-resolved-theme="light"] .app-install-banner,
body.web-pro-shell[data-resolved-theme="light"] .app-install-modal-content,
body.web-pro-shell[data-resolved-theme="light"] .faq-item,
body.web-pro-shell[data-resolved-theme="light"] .landing-cta-banner,
body.web-pro-shell[data-resolved-theme="light"] .seo-stat {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.16) !important;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08) !important;
}

body.web-pro-shell.theme-light-active .search-tabs,
body.web-pro-shell.theme-light-active .view-toggle,
body.web-pro-shell.theme-light-active .sparkline-wrapper,
body.web-pro-shell.theme-light-active .distance-notice,
body.web-pro-shell.theme-light-active .route-summary-inline,
body.web-pro-shell[data-resolved-theme="light"] .search-tabs,
body.web-pro-shell[data-resolved-theme="light"] .view-toggle,
body.web-pro-shell[data-resolved-theme="light"] .sparkline-wrapper,
body.web-pro-shell[data-resolved-theme="light"] .distance-notice,
body.web-pro-shell[data-resolved-theme="light"] .route-summary-inline {
    background: rgba(241, 245, 255, 0.92) !important;
    border-color: rgba(148, 163, 184, 0.16) !important;
}

body.web-pro-shell.theme-light-active .topbar,
body.web-pro-shell[data-resolved-theme="light"] .topbar {
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.98), rgba(37, 99, 235, 0.94)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)) !important;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16) !important;
}

body.web-pro-shell.theme-light-active .topbar-action-btn,
body.web-pro-shell.theme-light-active .settings-chip,
body.web-pro-shell.theme-light-active .vehicle-inline-btn,
body.web-pro-shell.theme-light-active .app-btn-ghost-sm,
body.web-pro-shell.theme-light-active .app-input,
body.web-pro-shell.theme-light-active .form-select,
body.web-pro-shell[data-resolved-theme="light"] .topbar-action-btn,
body.web-pro-shell[data-resolved-theme="light"] .settings-chip,
body.web-pro-shell[data-resolved-theme="light"] .vehicle-inline-btn,
body.web-pro-shell[data-resolved-theme="light"] .app-btn-ghost-sm,
body.web-pro-shell[data-resolved-theme="light"] .app-input,
body.web-pro-shell[data-resolved-theme="light"] .form-select {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96)) !important;
    color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.2) !important;
}

body.web-pro-shell.theme-light-active .search-heading,
body.web-pro-shell.theme-light-active .results-header h2,
body.web-pro-shell.theme-light-active .station-card strong,
body.web-pro-shell.theme-light-active .station-card .fw-bold,
body.web-pro-shell.theme-light-active .station-brand,
body.web-pro-shell.theme-light-active .station-price-value,
body.web-pro-shell.theme-light-active .station-distance,
body.web-pro-shell.theme-light-active .modal-title,
body.web-pro-shell.theme-light-active .settings-section-card h6,
body.web-pro-shell.theme-light-active .settings-version-card strong,
body.web-pro-shell.theme-light-active .settings-action-card strong,
body.web-pro-shell.theme-light-active .vehicle-profile-title-row strong,
body.web-pro-shell.theme-light-active .detail-box .v,
body.web-pro-shell.theme-light-active .detail-section h5,
body.web-pro-shell.theme-light-active .detail-section h6,
body.web-pro-shell.theme-light-active .detail-section strong,
body.web-pro-shell.theme-light-active .faq-item summary,
body.web-pro-shell.theme-light-active .landing-cta-banner h2,
body.web-pro-shell.theme-light-active .seo-stat strong,
body.web-pro-shell.theme-light-active .seo-stat span,
body.web-pro-shell[data-resolved-theme="light"] .search-heading,
body.web-pro-shell[data-resolved-theme="light"] .results-header h2,
body.web-pro-shell[data-resolved-theme="light"] .station-card strong,
body.web-pro-shell[data-resolved-theme="light"] .station-card .fw-bold,
body.web-pro-shell[data-resolved-theme="light"] .station-brand,
body.web-pro-shell[data-resolved-theme="light"] .station-price-value,
body.web-pro-shell[data-resolved-theme="light"] .station-distance,
body.web-pro-shell[data-resolved-theme="light"] .modal-title,
body.web-pro-shell[data-resolved-theme="light"] .settings-section-card h6,
body.web-pro-shell[data-resolved-theme="light"] .settings-version-card strong,
body.web-pro-shell[data-resolved-theme="light"] .settings-action-card strong,
body.web-pro-shell[data-resolved-theme="light"] .vehicle-profile-title-row strong,
body.web-pro-shell[data-resolved-theme="light"] .detail-box .v,
body.web-pro-shell[data-resolved-theme="light"] .detail-section h5,
body.web-pro-shell[data-resolved-theme="light"] .detail-section h6,
body.web-pro-shell[data-resolved-theme="light"] .detail-section strong,
body.web-pro-shell[data-resolved-theme="light"] .faq-item summary,
body.web-pro-shell[data-resolved-theme="light"] .landing-cta-banner h2,
body.web-pro-shell[data-resolved-theme="light"] .seo-stat strong,
body.web-pro-shell[data-resolved-theme="light"] .seo-stat span {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .app-input::placeholder,
body.web-pro-shell.theme-light-active .search-subcopy,
body.web-pro-shell.theme-light-active .label-soft,
body.web-pro-shell.theme-light-active .results-header p,
body.web-pro-shell.theme-light-active .station-address,
body.web-pro-shell.theme-light-active .modal-subtitle,
body.web-pro-shell.theme-light-active .settings-action-card span,
body.web-pro-shell.theme-light-active .settings-version-card span,
body.web-pro-shell.theme-light-active .vehicle-profile-meta,
body.web-pro-shell.theme-light-active .detail-vehicle-card-meta,
body.web-pro-shell.theme-light-active .detail-box .k,
body.web-pro-shell.theme-light-active .faq-item p,
body.web-pro-shell.theme-light-active .landing-cta-banner p,
body.web-pro-shell[data-resolved-theme="light"] .app-input::placeholder,
body.web-pro-shell[data-resolved-theme="light"] .search-subcopy,
body.web-pro-shell[data-resolved-theme="light"] .label-soft,
body.web-pro-shell[data-resolved-theme="light"] .results-header p,
body.web-pro-shell[data-resolved-theme="light"] .station-address,
body.web-pro-shell[data-resolved-theme="light"] .modal-subtitle,
body.web-pro-shell[data-resolved-theme="light"] .settings-action-card span,
body.web-pro-shell[data-resolved-theme="light"] .settings-version-card span,
body.web-pro-shell[data-resolved-theme="light"] .vehicle-profile-meta,
body.web-pro-shell[data-resolved-theme="light"] .detail-vehicle-card-meta,
body.web-pro-shell[data-resolved-theme="light"] .detail-box .k,
body.web-pro-shell[data-resolved-theme="light"] .faq-item p,
body.web-pro-shell[data-resolved-theme="light"] .landing-cta-banner p {
    color: #64748b !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active),
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active),
body.web-pro-shell.theme-light-active .toggle-btn:not(.active),
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active),
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active),
body.web-pro-shell[data-resolved-theme="light"] .search-tab-btn:not(.is-active),
body.web-pro-shell[data-resolved-theme="light"] .search-mode-btn:not(.is-active),
body.web-pro-shell[data-resolved-theme="light"] .toggle-btn:not(.active),
body.web-pro-shell[data-resolved-theme="light"] .detail-tab-btn:not(.active),
body.web-pro-shell[data-resolved-theme="light"] .detail-fuel-btn:not(.active) {
    background: rgba(248, 250, 252, 0.98) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    color: #334155 !important;
}

body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active) i,
body.web-pro-shell.theme-light-active .search-tab-btn:not(.is-active) span,
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active) i,
body.web-pro-shell.theme-light-active .search-mode-btn:not(.is-active) span,
body.web-pro-shell.theme-light-active .toggle-btn:not(.active) i,
body.web-pro-shell.theme-light-active .toggle-btn:not(.active) span,
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active) i,
body.web-pro-shell.theme-light-active .detail-tab-btn:not(.active) span,
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active) i,
body.web-pro-shell.theme-light-active .detail-fuel-btn:not(.active) span,
body.web-pro-shell[data-resolved-theme="light"] .search-tab-btn:not(.is-active) i,
body.web-pro-shell[data-resolved-theme="light"] .search-tab-btn:not(.is-active) span,
body.web-pro-shell[data-resolved-theme="light"] .search-mode-btn:not(.is-active) i,
body.web-pro-shell[data-resolved-theme="light"] .search-mode-btn:not(.is-active) span,
body.web-pro-shell[data-resolved-theme="light"] .toggle-btn:not(.active) i,
body.web-pro-shell[data-resolved-theme="light"] .toggle-btn:not(.active) span,
body.web-pro-shell[data-resolved-theme="light"] .detail-tab-btn:not(.active) i,
body.web-pro-shell[data-resolved-theme="light"] .detail-tab-btn:not(.active) span,
body.web-pro-shell[data-resolved-theme="light"] .detail-fuel-btn:not(.active) i,
body.web-pro-shell[data-resolved-theme="light"] .detail-fuel-btn:not(.active) span {
    color: #334155 !important;
}

.seo-station-list {
    display: flex;
    gap: 0;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.seo-card a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.seo-card a:hover {
    text-decoration: underline;
}

.home-landing-shell {
    gap: 20px;
}

.home-hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    padding: 28px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: center;
}

.home-cta-row .btn {
    min-height: 56px;
    padding-inline: 20px;
}

.home-hero-media {
    display: grid;
}

.home-preview {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.92);
    color: #f8fafc;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.24);
}

.home-preview-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-preview-top strong,
.home-preview-row strong,
.home-kpi-card strong {
    display: block;
}

.home-preview-top span,
.home-preview-row span,
.home-kpi-card span {
    color: rgba(226, 232, 240, 0.78);
}

.home-preview-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
}

.home-preview-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(248, 250, 252, 0.94);
}

.home-preview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-preview-card {
    display: grid;
    gap: 10px;
}

.home-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.home-preview-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #dbeafe;
}

.home-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.home-kpi-card {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.seo-station-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.seo-detail-btn,
.seo-map-link {
    text-decoration: none;
}

.seo-map-card #seoMap {
    min-height: 520px;
    width: 100%;
}

.seo-map-empty {
    display: grid;
    min-height: 320px;
    place-items: center;
    color: var(--muted);
    font-weight: 700;
}



@media (max-width: 991.98px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .seo-stats-grid,
    .seo-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .home-kpi-grid,
    .seo-stats-grid,
    .seo-link-grid {
        grid-template-columns: 1fr;
    }
}

.home-landing-shell {
    gap: 22px;
}

.home-hero-v2 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.10), transparent 24%),
        radial-gradient(circle at left 8%, rgba(37, 99, 235, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 255, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
}

.home-hero-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.92fr);
    gap: 26px;
    align-items: start;
}

.home-hero-copy-v2 {
    display: grid;
    gap: 18px;
    align-content: start;
}

.home-title-v2 {
    max-width: 11ch;
    margin: 0;
}

.home-hero-lead-v2 {
    max-width: 64ch;
    font-size: 1.06rem;
}

.home-stat-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-stat-card,
.home-surface-card,
.home-city-card {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.home-stat-card {
    padding: 16px 18px;
    display: grid;
    gap: 8px;
}

.home-stat-card span,
.home-city-metrics span,
.home-update-note,
.home-route-note,
.home-live-copy span,
.home-live-copy small {
    color: var(--text-soft);
}

.home-stat-card span,
.home-update-note,
.home-city-metrics span {
    font-size: 0.86rem;
}

.home-stat-card strong {
    font-size: 1.32rem;
    line-height: 1.05;
    color: var(--text);
}

.home-cta-row-v2 .btn {
    min-height: 58px;
    padding-inline: 22px;
}

.home-primary-cta {
    min-width: 240px;
}

.home-link-row {
    gap: 10px;
}

.home-update-note {
    margin: 0;
    font-weight: 600;
}

.home-route-note {
    margin: -4px 0 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.home-hero-stack,
.home-live-list,
.home-city-grid,
.home-city-actions,
.home-intent-grid,
.home-entry-grid {
    display: grid;
    gap: 14px;
}

.home-hero-stack {
    align-content: start;
}

.home-surface-card {
    padding: 22px;
}

.home-section-kicker {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.home-section-kicker h2,
.home-city-header h3 {
    margin: 0;
    color: var(--text);
    line-height: 1.14;
}

.home-section-kicker p,
.home-city-header p {
    margin: 0;
    color: var(--text-soft);
}

.home-entry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-entry-tile,
.home-live-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-entry-tile {
    min-height: 170px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
    display: grid;
    align-content: start;
    gap: 10px;
}

.home-entry-tile i,
.home-feature-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(37, 99, 235, 0.08));
    color: var(--green-dark);
    font-size: 1.2rem;
}

.home-entry-tile strong {
    color: var(--text);
    font-size: 1rem;
}

.home-entry-tile span {
    color: var(--text-soft);
    line-height: 1.55;
}

.home-entry-tile:hover,
.home-live-item:hover,
.home-city-card:hover,
.home-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 22px 38px rgba(37, 99, 235, 0.12);
}

.home-live-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.home-live-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.home-live-copy strong,
.home-live-side {
    color: var(--text);
}

.home-live-copy strong,
.home-live-price {
    font-weight: 800;
}

.home-live-copy small {
    font-size: 0.8rem;
}

.home-live-side {
    display: grid;
    justify-items: end;
    gap: 6px;
    flex: 0 0 auto;
}

.home-live-price {
    font-size: 1.08rem;
    color: var(--green-dark);
}

.home-live-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--warning);
}

.home-live-actions {
    margin-top: 2px;
}

.home-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-city-card {
    padding: 20px;
    display: grid;
    gap: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-city-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.home-city-count {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.home-city-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.home-city-metrics div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(241, 245, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.home-city-metrics strong {
    color: var(--text);
    line-height: 1.2;
}

.home-city-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-city-actions .page-chip-link {
    justify-content: center;
    min-height: 46px;
    text-align: center;
}

.home-intent-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-final-banner {
    background:
        radial-gradient(circle at left top, rgba(37, 99, 235, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 255, 0.96));
}

@media (max-width: 1199.98px) {
    .home-hero-grid-v2 {
        grid-template-columns: 1fr;
    }

    .home-city-grid,
    .home-intent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .home-hero-v2 {
        padding: 24px;
    }

    .home-entry-grid {
        grid-template-columns: 1fr;
    }

    .home-city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-hero-v2 {
        padding: 20px 18px;
        border-radius: 24px;
    }

    .home-title-v2 {
        max-width: 13ch;
    }

    .home-stat-strip,
    .home-city-metrics,
    .home-city-actions,
    .home-city-grid,
    .home-intent-grid {
        grid-template-columns: 1fr;
    }

    .home-surface-card,
    .home-city-card {
        padding: 18px;
        border-radius: 20px;
    }

    .home-live-item {
        padding: 14px 15px;
    }
}

@media (max-width: 575.98px) {
    .home-hero-copy-v2 {
        gap: 16px;
    }

    .home-title-v2 {
        max-width: 12ch;
    }

    .home-stat-card strong,
    .home-live-price {
        font-size: 1rem;
    }

    .home-city-header {
        flex-direction: column;
    }

    .home-primary-cta {
        min-width: 0;
    }

    .home-cta-row-v2 .btn,
    .home-live-actions .btn {
        width: 100%;
    }
}

html[data-resolved-theme="dark"] .home-hero-v2,
html[data-resolved-theme="dark"] .home-stat-card,
html[data-resolved-theme="dark"] .home-surface-card,
html[data-resolved-theme="dark"] .home-city-card,
html[data-resolved-theme="dark"] .home-entry-tile,
html[data-resolved-theme="dark"] .home-live-item,
html[data-resolved-theme="dark"] .home-city-metrics div,
html[data-resolved-theme="dark"] .home-final-banner {

        background: rgba(17, 24, 39, 0.9);
        border-color: rgba(148, 163, 184, 0.14);
}

html[data-resolved-theme="dark"] .home-hero-v2 {

        background:
            radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 24%),
            radial-gradient(circle at left 8%, rgba(59, 130, 246, 0.18), transparent 30%),
            linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.92));
}

html[data-resolved-theme="dark"] .home-entry-tile i,
html[data-resolved-theme="dark"] .home-feature-icon,
html[data-resolved-theme="dark"] .home-city-count {

        background: rgba(59, 130, 246, 0.14);
        color: #dbeafe;
}

html[data-resolved-theme="dark"] .home-live-price,
html[data-resolved-theme="dark"] .home-live-copy strong,
html[data-resolved-theme="dark"] .home-section-kicker h2,
html[data-resolved-theme="dark"] .home-city-header h3,
html[data-resolved-theme="dark"] .home-city-metrics strong,
html[data-resolved-theme="dark"] .home-stat-card strong {

        color: #f8fafc;
}

html[data-resolved-theme="dark"] .home-live-link {

        color: #fdba74;
}




body.web-pro-shell.theme-light-active .app-install-banner-copy h3,
body.web-pro-shell[data-resolved-theme="light"] .app-install-banner-copy h3 {
    color: #0f172a !important;
}

body.web-pro-shell.theme-light-active .app-install-banner-copy p,
body.web-pro-shell[data-resolved-theme="light"] .app-install-banner-copy p {
    color: #475569 !important;
}

body.web-pro-shell.theme-light-active .app-install-badge,
body.web-pro-shell[data-resolved-theme="light"] .app-install-badge {
    background: linear-gradient(135deg, #dbeafe, #eff6ff) !important;
    color: #1d4ed8 !important;
    border-color: rgba(37, 99, 235, 0.16) !important;
}

body.web-pro-shell.theme-light-active .app-install-close,
body.web-pro-shell[data-resolved-theme="light"] .app-install-close {
    background: rgba(37, 99, 235, 0.10) !important;
    color: #1d4ed8 !important;
}
