:root {
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-alt: #f1f5f9;
    --border-subtle: #e2e8f0;
    --border-strong: #cbd5e1;
    --text-strong: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-soft: #94a3b8;
    --brand: #1e40af;
    --brand-light: #3b82f6;
    --brand-soft: #dbeafe;
    --brand-strong: #1e3a8a;
    --accent: #059669;
    --accent-light: #10b981;
    --accent-soft: #d1fae5;
    --success: #059669;
    --danger: #dc2626;
    --warning: #f59e0b;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-full: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 32px 16px;
    line-height: 1.5;
}

.page {
    width: 100%;
    max-width: 1120px;
    background-color: var(--bg-surface);
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-header {
    padding: 24px 36px;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: -0.02em;
}

.logo-text-accent {
    color: var(--brand);
}

.page-left {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.3) 0%, transparent 50%);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    border-radius: var(--radius-full);
    background-color: var(--accent-soft);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.1);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.headline {
    font-size: clamp(26px, 2.3vw + 14px, 34px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 12px;
}

.headline span {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subcopy {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.subcopy-legal {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.trust-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--brand-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand);
    background-color: var(--brand-soft);
}

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

.feature-pill {
    background-color: var(--bg-surface-alt);
    border-radius: var(--radius-full);
    padding: 10px 14px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-main);
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: var(--brand);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--brand-soft);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-label {
    font-weight: 600;
    line-height: 1.2;
}

.feature-desc {
    font-size: 10px;
    color: var(--text-soft);
    line-height: 1.3;
}

.comparison {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background-color: #f9fafb;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.comparison-label {
    color: var(--text-main);
    font-weight: 500;
    max-width: 260px;
}

.comparison-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.comparison-pill {
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 11px;
    white-space: nowrap;
}

.comparison-pill.ours {
    border-color: var(--accent);
    background-color: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}

.card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-surface);
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 28px 24px 24px;
}

.card-header-row {
    margin-bottom: 16px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
}

.card-tag {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    background-color: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: var(--accent);
}

.vehicle-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    background-color: #f9fafb;
    border: 1px solid var(--border-subtle);
    margin: 16px 0;
    align-items: center;
}

.vehicle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.vehicle-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-text-main {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 600;
}

.vehicle-text-sub {
    font-size: 11px;
    color: var(--text-soft);
    line-height: 1.4;
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.step-pill {
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 11px;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-surface-alt);
}

.step-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    background-color: #e5e7eb;
    color: var(--text-strong);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    background-color: #f9fafb;
    border: 1px solid var(--border-subtle);
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--text-strong);
}

.price-main .currency {
    font-size: 16px;
    color: var(--text-soft);
}

.price-main .value {
    font-size: 28px;
    font-weight: 700;
}

.price-main .each {
    font-size: 11px;
    color: var(--text-soft);
}

.price-badge {
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--accent);
    background-color: var(--accent-soft);
    color: var(--accent);
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: 6px;
    display: block;
}

.required {
    color: var(--danger);
}

.form-hint {
    font-size: 10px;
    color: var(--text-soft);
    margin-top: 4px;
    display: block;
}

.plate-wrapper {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.plate-box {
    flex: 1;
    display: grid;
    grid-template-columns: 48px 1fr;
    height: 48px;
    background: #facc15;
    border-radius: 10px;
    padding: 2px;
    border: 2px solid #eab308;
    overflow: hidden;
}

.plate-eu {
    background: #1d4ed8;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 9px;
    letter-spacing: 0.12em;
    border-radius: 10px 0 0 10px;
}

.gb-code {
    font-weight: 700;
}

.plate-input {
    background: #fefce8;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 12px;
    font-size: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.plate-input::placeholder {
    color: #9ca3af;
    font-weight: 600;
}

.count-tag {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface-alt);
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 90px;
}

.count-tag strong {
    color: var(--text-strong);
    font-weight: 600;
    font-size: 13px;
}

.input-shell {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    padding: 0 14px;
    transition: all 0.2s;
}

.input-shell:focus-within {
    border-color: var(--brand);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

.input-icon {
    font-size: 14px;
    color: var(--text-soft);
    margin-right: 8px;
}

.text-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 11px 4px;
    flex: 1;
    font-size: 14px;
    color: var(--text-main);
}

.text-input::placeholder {
    color: var(--text-soft);
}

.select-shell {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
}

.select-shell::after {
    content: '▼';
    font-size: 10px;
    color: var(--text-soft);
    pointer-events: none;
}

.select-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 11px 4px;
    flex: 1;
    font-size: 14px;
    color: var(--text-main);
    appearance: none;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface-alt);
    cursor: pointer;
    font-size: 13px;
    color: var(--text-main);
    transition: all 0.2s;
}

.radio-label:hover {
    border-color: var(--brand);
    background-color: var(--brand-soft);
}

.radio-label input {
    cursor: pointer;
}

.radio-label input:checked+span {
    font-weight: 600;
    color: var(--brand);
}

.btn-main {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.3);
}

.btn-main:hover {
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 100%);
    box-shadow: 0 6px 12px -2px rgba(30, 64, 175, 0.4);
    transform: translateY(-1px);
}

.btn-main:active {
    transform: translateY(0);
}

.btn-main:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-note {
    font-size: 11px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 8px;
}

.list {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.list-item {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.list-dot {
    margin-top: 2px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: var(--accent-soft);
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.list-content strong {
    color: var(--text-main);
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-safe {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-soft);
}

.footer-safe-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background-color: var(--accent-soft);
    flex-shrink: 0;
}

.footer-safe-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-safe-main {
    font-weight: 600;
    color: var(--text-main);
}

.footer-logos {
    display: flex;
    gap: 8px;
    align-items: center;
}

.logo-pill {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background-color: #f9fafb;
    border: 1px solid var(--border-subtle);
    font-size: 10px;
    color: var(--text-soft);
    white-space: nowrap;
}

.page-footer {
    font-size: 11px;
    color: var(--text-soft);
    padding: 16px 36px;
    border-top: 1px solid var(--border-subtle);
    line-height: 1.6;
}

.error-message {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    margin-bottom: 12px;
    display: none;
}

.success-message {
    background-color: var(--accent-soft);
    border: 1px solid var(--accent);
    color: #065f46;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    margin-bottom: 12px;
    display: none;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .page {
        border-radius: 0;
        border-left: none;
        border-right: none;
        min-height: 100vh;
    }

    .page-header {
        padding: 20px 24px;
    }

    .page-left {
        padding: 28px 24px;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        flex-direction: column;
        align-items: stretch;
    }

    .comparison-badges {
        flex-direction: column;
    }

    .comparison-pill {
        text-align: center;
    }

    .card {
        padding: 24px 20px;
    }

    .price-row {
        flex-direction: column;
        text-align: center;
    }

    .price-badge {
        width: 100%;
    }

    .plate-wrapper {
        flex-direction: column;
    }

    .count-tag {
        width: 100%;
    }

    .list {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-label {
        width: 100%;
    }

    .card-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================================
   STRIPE PAYMENT MODAL
   ============================================================================ */

.stripe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stripe-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.stripe-modal-content {
    position: relative;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.stripe-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.stripe-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-strong);
    margin: 0;
}

.stripe-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.stripe-modal-close:hover {
    background-color: var(--bg-surface-alt);
    color: var(--text-strong);
}

.stripe-modal-body {
    padding: 24px;
}

.order-summary {
    background-color: var(--bg-surface-alt);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-item-name {
    font-weight: 500;
    color: var(--text-main);
}

.order-item-price {
    color: var(--text-strong);
    font-weight: 600;
}

.order-divider {
    height: 1px;
    background-color: var(--border-subtle);
    margin: 12px 0;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-strong);
}

.order-total-price {
    font-size: 18px;
}

.payment-section {
    margin-bottom: 24px;
}

.payment-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: 12px;
}

.card-element {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    background-color: var(--bg-surface);
    transition: all 0.2s;
}

.card-element.StripeElement--focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

.card-element.StripeElement--invalid {
    border-color: var(--danger);
}

.card-errors {
    color: var(--danger);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.card-errors.show {
    display: block;
}

.payment-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    padding: 12px 20px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
    color: var(--text-main);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background-color: var(--bg-surface-alt);
    border-color: var(--border-strong);
}

.btn-pay {
    padding: 12px 24px;
    border: none;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.btn-pay:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================================================
   VEHICLE DETAILS SECTION
   ============================================================================ */

.vehicle-details {
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 18px;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.vehicle-details-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.vehicle-details-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-strong);
    margin: 0;
}

.vehicle-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--bg-surface-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    gap: 10px;
    text-align: right;
}

.info-item label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 12px;
}

.info-item span {
    color: var(--text-strong);
    font-weight: 500;
    font-size: 13px;
}

.vehicle-actions {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
}

.btn-secondary {
    padding: 8px 16px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
    color: var(--text-main);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: var(--bg-surface-alt);
    border-color: var(--border-strong);
}

.vehicle-loading {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
}

.vehicle-loading .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-subtle);
    border-top: 2px solid var(--brand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
    display: block;
}

.vehicle-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .vehicle-details {
        margin-top: 12px;
        padding: 15px;
    }

    .vehicle-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .info-item {
        padding: 6px 10px;
    }

    .info-item label {
        font-size: 11px;
    }

    .info-item span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stripe-modal-content {
        width: 95%;
        margin: 20px;
    }

    .stripe-modal-body {
        padding: 20px;
    }

    .payment-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-pay {
        width: 100%;
    }
}