/* ==========================================================================
   Voltika Configurador - Main Stylesheet
   All classes prefixed with vk- to prevent conflicts with host site
   Mobile-first responsive design
   ========================================================================== */

/* Prevent horizontal overflow on mobile (WordPress wrapper can cause scroll) */
/* NOTE: overflow-x:hidden on body breaks position:fixed on iOS Safari — apply to html only */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* --------------------------------------------------------------------------
   Reset (scoped to configurador only)
   -------------------------------------------------------------------------- */
.vk-configurador *,
.vk-configurador *::before,
.vk-configurador *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------------------------------
   Configurador Container
   -------------------------------------------------------------------------- */
.vk-configurador {
    font-family: var(--vk-font-family);
    color: var(--vk-text-primary);
    max-width: 500px;
    margin: 0 auto;
    padding: var(--vk-space-md);
    background: var(--vk-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    box-sizing: border-box;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Progress Bar
   -------------------------------------------------------------------------- */
.vk-progress {
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--vk-space-md) var(--vk-space-lg);
    margin-bottom: var(--vk-space-md);
}

.vk-progress--visible {
    display: flex;
}

.vk-progress__step {
    width: 36px;
    height: 36px;
    border-radius: var(--vk-radius-circle);
    background: var(--vk-border);
    color: var(--vk-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--vk-font-bold);
    font-size: var(--vk-font-size-sm);
    position: relative;
    flex-shrink: 0;
}

.vk-progress__step--active,
.vk-progress__step--completed {
    background: var(--vk-green-primary);
    color: var(--vk-text-white);
}

.vk-progress__label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--vk-font-size-xs);
    font-weight: var(--vk-font-semibold);
    color: var(--vk-text-secondary);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.vk-progress__line {
    flex: 1;
    height: 3px;
    background: var(--vk-border);
    max-width: 80px;
    margin: 0 var(--vk-space-xs);
}

.vk-progress__line--active {
    background: var(--vk-green-primary);
}

/* --------------------------------------------------------------------------
   Paso (Slide) Container
   -------------------------------------------------------------------------- */
.vk-paso {
    display: none;
}

.vk-paso--active {
    display: block;
    animation: vkSlideIn 0.35s ease forwards;
}

.vk-paso--exit {
    animation: vkSlideOut 0.25s ease forwards;
}

@keyframes vkSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vkSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* IFRAME-RELATED STEPS — never use transform-based animations.
   Chromium bug: an iframe loaded inside an element that has `transform`
   applied (even transform: translateX(0) at the end of animation-fill:forwards)
   creates a new stacking context where iframe content paint can stall — the
   HTTP `load` event fires but the inner UI never renders. Symptom:
   blank gray box with broken-page icon (Truora identity flow 2026-04-29).
   Fade-only animation avoids this entirely. */
#vk-paso-credito-identidad.vk-paso--active,
#vk-paso-credito-identidad.vk-paso--exit {
    animation: vkFadeOnly 0.25s ease forwards;
    transform: none !important;
}
#vk-paso-credito-identidad.vk-paso--exit {
    animation: vkFadeOut 0.2s ease forwards;
}
@keyframes vkFadeOnly {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes vkFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Paso Header */
.vk-paso__header {
    margin-bottom: var(--vk-space-md);
}

.vk-paso__titulo {
    font-size: 22px;
    font-weight: var(--vk-font-extrabold);
    color: var(--vk-text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.vk-paso__subtitulo {
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-regular);
    color: var(--vk-text-secondary);
    margin-bottom: var(--vk-space-md);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Model Card
   -------------------------------------------------------------------------- */
.vk-card {
    position: relative;
    max-width: var(--vk-card-max-width);
    margin: 0 auto var(--vk-space-lg);
    background: var(--vk-bg-card);
    border-radius: var(--vk-radius-lg);
    box-shadow: var(--vk-shadow-card);
    overflow: hidden;
}

/* Ribbon badge  top-left of image */
.vk-card__badge {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 25px;
    padding: 0 22px 0 14px;
    font-weight: 700;
    font-size: 10px;
    font-style: italic;
    color: #2b2b2b;
    background: linear-gradient(180deg, #f7dc6f 0%, #f0c030 50%, #d4a017 100%);
    border-radius: 3px 0 50px 0px;
    /* clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%); */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
    z-index: 2;
}

.vk-card__badge-star {
    font-size: 12px;
    line-height: 1;
}

/* Model Image */
.vk-card__imagen {
    position: relative;
    width: 100%;
    padding: var(--vk-space-lg) var(--vk-space-md) var(--vk-space-sm);
    text-align: center;
    background: linear-gradient(180deg, var(--vk-green-soft) 0%, var(--vk-bg-white) 100%);
}

.vk-card__imagen img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
}

/* Model Info Row  nombre left, specs center+right */
.vk-card__info-row {
    padding: 0 var(--vk-card-padding);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--vk-space-sm);
}

.vk-card__nombre {
    font-size: var(--vk-font-size-3xl);
    font-weight: var(--vk-font-extrabold);
    color: var(--vk-text-primary);
    margin-bottom: var(--vk-space-2xs);
}

.vk-card__subtitulo {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    margin-bottom: var(--vk-space-sm);
    font-weight: var(--vk-font-regular);
}

.vk-card__specs {
    display: flex;
    gap: var(--vk-space-lg);
    margin-bottom: var(--vk-space-sm);
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
}

.vk-card__spec-item {
    text-align: center;
    line-height: 1.3;
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-secondary);
}

.vk-card__spec-item strong {
    color: var(--vk-text-primary);
    font-size: var(--vk-font-size-sm);
}

.vk-card__specs strong {
    color: var(--vk-text-primary);
}

.vk-card__precio-base {
    font-size: var(--vk-font-size-lg);
    color: var(--vk-text-green);
    font-weight: var(--vk-font-semibold);
    margin-bottom: var(--vk-space-md);
    text-align: center;
    padding: 0 var(--vk-card-padding);
}

.vk-card__precio-base span {
    font-weight: var(--vk-font-regular);
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-muted);
}

/* Banner (two lines per PDF) */
.vk-card__banner {
    background: var(--vk-green-banner);
    color: var(--vk-text-white);
    text-align: center;
    padding: 8px var(--vk-space-md);
    font-size: var(--vk-font-size-xs);
    font-weight: var(--vk-font-medium);
}

.vk-card__banner-line1 {
    font-size: var(--vk-font-size-sm);
    margin-bottom: 2px;
}

.vk-card__banner-line2 {
    font-size: var(--vk-font-size-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vk-card__banner-icon {
    font-size: 12px;
}

/* Bullets — hidden on mobile, shown on desktop */
.vk-card__bullets {
    display: none;
    padding: var(--vk-space-sm) var(--vk-card-padding);
    background: var(--vk-green-soft);
}

.vk-card__bullet {
    display: flex;
    align-items: center;
    gap: var(--vk-space-sm);
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-primary);
    padding: var(--vk-space-2xs) 0;
    font-weight: var(--vk-font-medium);
}

/* Circle-check icon (shared by bullets and tab bullets) */
.vk-icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--vk-green-primary);
    color: var(--vk-text-white);
    font-size: 10px;
    flex-shrink: 0;
    line-height: 1;
}

/* Shield icon for banner */
.vk-icon-shield {
    font-size: 12px;
}

/* creditovoltika brand inside credit tab */
.vk-card__credito-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vk-space-xs);
    font-size: var(--vk-font-size-lg);
    font-weight: var(--vk-font-bold);
    color: var(--vk-green-primary);
    margin-bottom: var(--vk-space-xs);
    font-style: italic;
}

/* Voltika V-shield icon */
.vk-shield-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Payment Tabs
   -------------------------------------------------------------------------- */
.vk-card__tabs {
    display: flex;
    margin: var(--vk-space-md) var(--vk-card-padding) 0;
    border: 1.5px solid var(--vk-border);
    border-radius: var(--vk-radius-pill);
    overflow: hidden;
    background: var(--vk-bg-white);
}

.vk-tab {
    flex: 1;
    padding: 10px 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--vk-font-family);
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-semibold);
    color: var(--vk-text-secondary);
    transition: all var(--vk-transition-fast);
    text-align: center;
    white-space: nowrap;
}

.vk-tab--active {
    background: var(--vk-green-primary);
    color: var(--vk-text-white);
    border-radius: var(--vk-radius-pill);
}

.vk-tab:hover:not(.vk-tab--active) {
    color: var(--vk-text-primary);
    background: var(--vk-green-light);
}

/* Tab Content */
.vk-card__tab-content {
    display: none;
    padding: var(--vk-space-md) var(--vk-card-padding);
    text-align: center;
}

.vk-card__tab-content--active {
    display: block;
}

/* Credit tab content */
.vk-card__credito-logo {
    font-weight: var(--vk-font-bold);
    font-size: var(--vk-font-size-base);
    color: var(--vk-text-primary);
    margin-bottom: var(--vk-space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vk-space-sm);
}

.vk-card__credito-logo .vk-shield {
    color: var(--vk-green-primary);
}

.vk-card__precio-destacado {
    font-size: 12px;
    color: var(--vk-text-primary);
    margin-bottom: var(--vk-space-sm);
}

.vk-card__precio-destacado strong {
    font-size: var(--vk-font-size-2xl);
    font-weight: var(--vk-font-extrabold);
}

.vk-card__precio-secundario {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-muted);
    margin-bottom: var(--vk-space-xs);
}

/* Tab microcopy bullets — hidden on mobile, shown on desktop */
.vk-card__tab-bullets {
    display: none;
    text-align: left;
    margin-top: var(--vk-space-sm);
}

.vk-card__tab-bullet {
    display: flex;
    align-items: center;
    gap: var(--vk-space-sm);
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    padding: 3px 0;
}

/* tab-bullet-icon replaced by .vk-icon-check */

/* Card logos */
.vk-card__tarjetas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vk-space-sm);
    margin-bottom: var(--vk-space-sm);
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
}

.vk-card__tarjeta-logo {
    height: 20px;
    width: auto;
    font-weight: var(--vk-font-bold);
    font-size: var(--vk-font-size-sm);
}

.vk-card-logos img {
    height: 16px;
    width: auto;
    vertical-align: middle;
}

.vk-tab .vk-card-logos img,
.vk-hero__metodo-tab .vk-card-logos img {
    height: 12px;
}

.vk-credito-logo {
    display: inline-block;
    vertical-align: middle;
}
.vk-hero__metodo-tab--active .vk-credito-logo img,
.vk-tab--active .vk-credito-logo img {
    filter: brightness(0) invert(1);
}

/* MSI header */
.vk-card__msi-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vk-space-sm);
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-semibold);
    color: var(--vk-text-primary);
    margin-bottom: var(--vk-space-xs);
    flex-wrap: wrap;
}

/* Contado */
.vk-card__contado-label {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    margin-bottom: var(--vk-space-2xs);
}

.vk-card__iva {
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
    margin-bottom: var(--vk-space-sm);
}

.vk-card__nota-logistico {
    font-style: italic;
    color: var(--vk-text-muted);
    font-size: var(--vk-font-size-xs);
    display: block;
    margin-top: var(--vk-space-xs);
}

/* "Formas de Pago" label */
.vk-card__formas-pago-label {
    text-align: center;
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-bold);
    color: var(--vk-text-primary);
    padding: var(--vk-space-sm) var(--vk-card-padding) 0;
}

.vk-card__formas-pago-label span {
    font-weight: var(--vk-font-regular);
    color: var(--vk-text-muted);
}

/* Per-tab CTA button */
.vk-card__tab-cta {
    margin-top: var(--vk-space-sm) !important;
    margin-bottom: 0 !important;
}

/* Card logos inside tab */
.vk-card__tab-logos {
    text-align: center;
    margin-top: var(--vk-space-xs);
    margin-bottom: var(--vk-space-2xs);
}

.vk-card__tab-microcopy {
    font-size: 10px;
    color: var(--vk-text-muted);
    text-align: center;
    margin: 6px 0 0;
}

/* --------------------------------------------------------------------------
   GO electric Footer
   -------------------------------------------------------------------------- */
.vk-go-electric {
    text-align: center;
    padding: var(--vk-space-lg) var(--vk-space-md);
    margin: var(--vk-space-md) 0;
    background: var(--vk-bg-light);
    border-radius: var(--vk-radius-md);
}

.vk-go-electric__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--vk-text-primary);
    letter-spacing: -0.5px;
}

.vk-go-electric__o {
    color: var(--vk-green-primary);
}

.vk-go-electric__logo span {
    color: var(--vk-green-primary);
    font-weight: 600;
}

.vk-go-electric__tagline {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    margin-top: var(--vk-space-2xs);
    font-style: italic;
}

.vk-go-electric__tagline em {
    font-style: italic;
}

.vk-go-electric__social {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    margin-top: var(--vk-space-xs);
}

.vk-go-electric__chevron {
    font-size: 10px;
    color: var(--vk-text-muted);
    margin-top: var(--vk-space-xs);
}

.vk-go-electric__divider {
    height: 1px;
    background: var(--vk-border);
    margin: var(--vk-space-sm) var(--vk-space-lg);
}

.vk-go-electric__more {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-muted);
    margin-top: var(--vk-space-sm);
    font-weight: var(--vk-font-medium);
}

/* --------------------------------------------------------------------------
   CTA Button
   -------------------------------------------------------------------------- */
.vk-btn {
    display: block;
    width: calc(100% - 2 * var(--vk-card-padding));
    margin: var(--vk-space-md) auto;
    padding: 14px var(--vk-space-md);
    border: none;
    border-radius: var(--vk-radius-sm);
    font-family: var(--vk-font-family);
    font-size: var(--vk-font-size-lg);
    font-weight: var(--vk-font-bold);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--vk-transition-fast);
    text-align: center;
    text-transform: uppercase;
}

.vk-btn--primary {
    background: var(--vk-green-primary);
    color: var(--vk-text-white);
    box-shadow: var(--vk-shadow-button);
}

.vk-btn--primary:hover {
    background: var(--vk-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(3, 159, 225, 0.4);
}

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

.vk-btn--secondary {
    background: var(--vk-bg-white);
    color: var(--vk-green-primary);
    border: 2px solid var(--vk-green-primary);
}

.vk-btn--secondary:hover {
    background: var(--vk-green-light);
}

.vk-btn--blue {
    background: #039fe1;
    color: var(--vk-text-white);
    box-shadow: 0 2px 8px rgba(3, 159, 225, 0.3);
}

.vk-btn--blue:hover {
    background: #0285bc;
}

/* Enganche Slider */
#vk-enganche-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 20px;
    background: linear-gradient(to right, #039fe1, #0bc5ea);
    outline: none;
    box-shadow: 0 2px 6px rgba(3,159,225,0.25);
}
#vk-enganche-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #0bc5ea, #039fe1);
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(3,159,225,0.5), 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#vk-enganche-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(3,159,225,0.6), 0 1px 4px rgba(0,0,0,0.2);
}
#vk-enganche-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #0bc5ea, #039fe1);
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(3,159,225,0.5), 0 1px 3px rgba(0,0,0,0.15);
}
@media (max-width: 600px) {
    #vk-enganche-slider {
        height: 5px;
    }
    #vk-enganche-slider::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }
    #vk-enganche-slider::-moz-range-thumb {
        width: 24px;
        height: 24px;
    }
}

/* Footer Note */
.vk-card__footer-note {
    text-align: center;
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
    padding: 0 var(--vk-card-padding) var(--vk-space-md);
}

/* --------------------------------------------------------------------------
   Trust Badges Footer
   -------------------------------------------------------------------------- */
.vk-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--vk-space-lg);
    padding: var(--vk-space-md) var(--vk-space-sm);
    border-top: 1px solid var(--vk-border-light);
    margin-top: var(--vk-space-sm);
}

.vk-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--vk-space-xs);
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-secondary);
    font-weight: var(--vk-font-medium);
}

.vk-trust-badge__icon {
    font-size: 10px;
    color: var(--vk-green-primary);
}

/* Scroll Hint */
.vk-scroll-hint {
    text-align: center;
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-muted);
    padding: var(--vk-space-md) 0;
    font-weight: var(--vk-font-medium);
}

.vk-scroll-hint__arrow {
    display: inline-block;
    animation: vkBounce 1.5s ease infinite;
}

@keyframes vkBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* --------------------------------------------------------------------------
   Desktop Split Layout (PASO 2  mobile base, desktop overridden in media query)
   -------------------------------------------------------------------------- */
/* .vk-desktop-split__left {
    padding-bottom: var(--vk-space-md);
} */

.vk-desktop-split__right {
    padding: 0 0 var(--vk-space-lg);
}

/* Color Picker (PASO 2) — see Color Swatch section at bottom */

/* --------------------------------------------------------------------------
   Form Elements (PASO 3, 4)
   -------------------------------------------------------------------------- */
.vk-form-group {
    margin-bottom: var(--vk-space-md);
}

.vk-form-label {
    display: block;
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-semibold);
    color: var(--vk-text-primary);
    margin-bottom: var(--vk-space-xs);
}

.vk-form-input {
    width: 100%;
    padding: 12px var(--vk-space-md);
    border: 1.5px solid var(--vk-border);
    border-radius: var(--vk-radius-sm);
    font-family: var(--vk-font-family);
    font-size: var(--vk-font-size-base);
    color: var(--vk-text-primary);
    background: var(--vk-bg-white);
    transition: border-color var(--vk-transition-fast);
    outline: none;
}

.vk-form-input:focus {
    border-color: var(--vk-green-primary);
    box-shadow: 0 0 0 3px rgba(3, 159, 225, 0.1);
}

.vk-form-input::placeholder {
    color: var(--vk-text-muted);
}

.vk-form-input--error {
    border-color: #D32F2F;
}

.vk-form-error {
    font-size: var(--vk-font-size-xs);
    color: #D32F2F;
    margin-top: var(--vk-space-2xs);
}

/* Checkbox */
.vk-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--vk-space-sm);
    margin: var(--vk-space-md) 0;
}

.vk-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--vk-green-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Custom checkbox & radio: green bg + white check */
.vk-configurador input[type="checkbox"],
.vk-configurador input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.15s ease;
}
.vk-configurador input[type="radio"] {
    border-radius: 50%;
}
.vk-configurador input[type="checkbox"]:checked,
.vk-configurador input[type="radio"]:checked {
    background: #4CAF50;
    border-color: #4CAF50;
}
.vk-configurador input[type="checkbox"]:checked::after,
.vk-configurador input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.vk-checkbox-label {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Info Box (PASO 3 delivery info)
   -------------------------------------------------------------------------- */
.vk-info-box {
    background: var(--vk-bg-white);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius-md);
    padding: var(--vk-card-padding);
    margin: var(--vk-space-md) 0;
}

.vk-info-box__title {
    font-size: var(--vk-font-size-lg);
    font-weight: var(--vk-font-bold);
    color: var(--vk-text-primary);
    display: flex;
    align-items: center;
    gap: var(--vk-space-sm);
    margin-bottom: var(--vk-space-sm);
}

.vk-info-box__title-icon {
    color: var(--vk-green-primary);
}

.vk-info-box__subtitle {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    margin-bottom: var(--vk-space-md);
}

.vk-info-box__detail {
    display: flex;
    align-items: center;
    gap: var(--vk-space-sm);
    font-size: var(--vk-font-size-sm);
    padding: var(--vk-space-xs) 0;
}

.vk-info-box__detail-icon {
    color: var(--vk-green-check);
}

.vk-info-box__detail strong {
    color: var(--vk-text-primary);
}

.vk-info-box__note {
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
    margin-top: var(--vk-space-md);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   PASO 3: Result sections (Centro Voltika, logistics, Qualitas, etc.)
   -------------------------------------------------------------------------- */
.vk-paso3-section {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--vk-border-light);
    align-items: flex-start;
}

.vk-paso3-section:last-child {
    border-bottom: none;
}

.vk-paso3-section__icon {
    flex-shrink: 0;
    font-size: 20px;
    width: 28px;
    text-align: center;
    margin-top: 2px;
}

.vk-paso3-shield {
    color: #B8860B;
}

.vk-paso3-check {
    color: var(--vk-green-primary);
}

.vk-paso3-section__content {
    flex: 1;
    font-size: 13px;
    color: var(--vk-text-primary);
    line-height: 1.35;
}

.vk-paso3-sub {
    font-size: 12px;
    color: var(--vk-text-secondary);
    margin-top: 2px;
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Payment Summary (PASO 4A)
   -------------------------------------------------------------------------- */
.vk-summary {
    background: var(--vk-bg-white);
    border: 1px solid var(--vk-border);
    border-radius: var(--vk-radius-md);
    padding: var(--vk-card-padding);
    margin-bottom: var(--vk-space-md);
}

.vk-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--vk-space-xs) 0;
    font-size: var(--vk-font-size-sm);
}

.vk-summary__row--total {
    border-top: 2px solid var(--vk-text-primary);
    margin-top: var(--vk-space-sm);
    padding-top: var(--vk-space-sm);
    font-weight: var(--vk-font-bold);
    font-size: var(--vk-font-size-lg);
}

.vk-summary__label {
    color: var(--vk-text-secondary);
}

.vk-summary__value {
    font-weight: var(--vk-font-semibold);
    color: var(--vk-text-primary);
}

/* Payment Options (2 columns) */
.vk-payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vk-space-md);
    margin: var(--vk-space-md) 0;
}

.vk-payment-option {
    background: var(--vk-bg-white);
    border: 1.5px solid var(--vk-border);
    border-radius: var(--vk-radius-md);
    padding: var(--vk-space-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--vk-transition-fast);
}

.vk-payment-option:hover,
.vk-payment-option--selected {
    border-color: var(--vk-green-primary);
    box-shadow: var(--vk-shadow-card);
}

.vk-payment-option--selected {
    background: var(--vk-green-soft);
}

.vk-payment-option__title {
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-bold);
    margin-bottom: var(--vk-space-sm);
}

.vk-payment-option__bullet {
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-secondary);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: var(--vk-space-xs);
    padding: 2px 0;
}

/* Dual pay buttons (PASO 4A) */
.vk-dual-pay-btns {
    display: flex;
    flex-direction: column;
    gap: var(--vk-space-sm);
    margin-top: var(--vk-space-md);
}

.vk-dual-pay-btns .vk-btn {
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Credit Flow (PASO 4B)
   -------------------------------------------------------------------------- */
.vk-credit-summary {
    background: var(--vk-bg-white);
    border-radius: var(--vk-radius-lg);
    padding: var(--vk-card-padding);
    margin-bottom: var(--vk-space-md);
    box-shadow: var(--vk-shadow-card);
}

.vk-credit-summary__model {
    display: flex;
    gap: var(--vk-space-md);
    align-items: center;
}

.vk-credit-summary__img {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.vk-credit-summary__details {
    flex: 1;
    min-width: 0;
}

@media (max-width: 480px) {
    .vk-credit-summary__model {
        flex-direction: column-reverse;
        text-align: center;
    }
    .vk-credit-summary__img {
        width: 160px;
        margin: 0 auto;
    }
}

.vk-credit-steps {
    margin: var(--vk-space-lg) 0;
}

.vk-credit-steps__title {
    font-size: var(--vk-font-size-lg);
    font-weight: var(--vk-font-bold);
    text-align: center;
    margin-bottom: var(--vk-space-md);
}

.vk-credit-step {
    display: flex;
    align-items: flex-start;
    gap: var(--vk-space-md);
    padding: var(--vk-space-md) 0;
    border-bottom: 1px solid var(--vk-border-light);
}

.vk-credit-step:last-child {
    border-bottom: none;
}

.vk-credit-step__number {
    width: 36px;
    height: 36px;
    border-radius: var(--vk-radius-circle);
    background: var(--vk-green-primary);
    color: var(--vk-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--vk-font-bold);
    font-size: var(--vk-font-size-sm);
    flex-shrink: 0;
}

.vk-credit-step__content {
    flex: 1;
}

.vk-credit-step__title {
    font-weight: var(--vk-font-semibold);
    font-size: var(--vk-font-size-base);
    margin-bottom: var(--vk-space-2xs);
}

.vk-credit-step__desc {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
}

/* --------------------------------------------------------------------------
   Security / Trust Section
   -------------------------------------------------------------------------- */
.vk-security {
    text-align: center;
    padding: var(--vk-space-md);
    border-top: 1px solid var(--vk-border-light);
    margin-top: var(--vk-space-md);
}

.vk-security__title {
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vk-space-sm);
    margin-bottom: var(--vk-space-xs);
}

.vk-security__note {
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
}

/* --------------------------------------------------------------------------
   Trust Indicators (credit screens)
   -------------------------------------------------------------------------- */

/* Blue circle checkmark icon */
.vk-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: #039fe1;
    vertical-align: middle;
    margin-right: 6px;
    position: relative;
}
.vk-check::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -1px;
}
.vk-check--sm {
    width: 15px;
    height: 15px;
    min-width: 15px;
}
.vk-check--sm::after {
    width: 4px;
    height: 7px;
    border-width: 0 1.5px 1.5px 0;
}

.vk-trust {
    font-size: 13px;
    color: #039fe1;
    line-height: 2;
    margin: 12px 0;
}
.vk-trust div {
    display: flex;
    align-items: center;
}

.vk-trust--center {
    text-align: center;
}
.vk-trust--center div {
    justify-content: center;
}

.vk-trust-highlight {
    font-size: 14px;
    color: #039fe1;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.vk-hint {
    font-size: 12px;
    color: var(--vk-text-muted);
    text-align: center;
    margin-top: 8px;
}

.vk-info-box {
    padding: 14px;
    margin-bottom: 16px;
    background: var(--vk-bg-light);
    border-radius: var(--vk-radius-lg);
    border: 1px solid var(--vk-border-light);
}

.vk-info-box__label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vk-info-box__value {
    font-size: 16px;
    font-weight: 700;
}

.vk-info-box__note {
    font-size: 12px;
    color: var(--vk-text-muted);
}

/* --------------------------------------------------------------------------
   Credit Loading Screen (motorcycle image + animated wheel overlays)
   -------------------------------------------------------------------------- */
.vk-loading-screen {
    background: linear-gradient(180deg, #028bca 0%, #039fe1 50%, #2db5ed 100%);
    border-radius: var(--vk-radius-lg);
    padding: 40px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vk-loading-screen__logo {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* Motorcycle image container */
.vk-loading-screen__moto {
    width: 340px;
    max-width: 95%;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.vk-loading-moto__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animated neon wheel overlays — subtle rotating glow ring */
.vk-loading-wheel {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(0,220,255,0.8);
    border-right-color: rgba(0,220,255,0.4);
    animation: vk-wheel-rotate 1s linear infinite, vk-wheel-glow 2s ease-in-out infinite;
}

/* Rear wheel */
.vk-loading-wheel--rear {
    width: 24%;
    height: 0;
    padding-bottom: 24%;
    bottom: 10%;
    left: 11%;
    animation-delay: 0s, 0.3s;
}

/* Front wheel */
.vk-loading-wheel--front {
    width: 24%;
    height: 0;
    padding-bottom: 24%;
    bottom: 10%;
    right: 12%;
}

@keyframes vk-wheel-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes vk-wheel-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0,180,255,0.2), inset 0 0 8px rgba(0,180,255,0.1);
    }
    50% {
        box-shadow: 0 0 18px rgba(0,200,255,0.5), inset 0 0 18px rgba(0,200,255,0.2);
    }
}

.vk-loading-screen__text {
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.vk-loading-screen__text h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.vk-loading-screen__text p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
}

.vk-loading-screen__hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.vk-loading-screen__dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.vk-loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,180,255,0.4);
    animation: vk-dot-pulse 1.4s ease-in-out infinite;
}

.vk-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.vk-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes vk-dot-pulse {
    0%, 80%, 100% { background: rgba(0,180,255,0.3); transform: scale(0.8); }
    40% { background: rgba(0,220,255,1); transform: scale(1.3); box-shadow: 0 0 10px rgba(0,200,255,0.6); }
}

/* --------------------------------------------------------------------------
   Credit Approved Screen (Felicidades)
   -------------------------------------------------------------------------- */
.vk-aprobado-header {
    background: linear-gradient(160deg, #028bca 0%, #039fe1 50%, #2db5ed 100%);
    border-radius: var(--vk-radius-lg) var(--vk-radius-lg) 0 0;
    padding: 28px 20px 36px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Sparkle dots */
.vk-aprobado-header::before,
.vk-aprobado-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    animation: vk-sparkle 2s ease-in-out infinite alternate;
}
.vk-aprobado-header::before {
    width: 8px; height: 8px;
    top: 30px; left: 30px;
}
.vk-aprobado-header::after {
    width: 6px; height: 6px;
    top: 50px; right: 40px;
    animation-delay: 0.5s;
}

@keyframes vk-sparkle {
    0%   { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1;   transform: scale(1.3); }
}

.vk-aprobado-header__logo {
    margin-bottom: 20px;
}

.vk-aprobado-header__logo img {
    height: 26px;
    filter: brightness(0) invert(1);
}

.vk-aprobado-header__check {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

/* Decorative sparkle stars around checkmark */
.vk-aprobado-header__check::before {
    content: '✦';
    position: absolute;
    top: -8px; left: -16px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    animation: vk-sparkle 1.5s ease-in-out infinite alternate;
}
.vk-aprobado-header__check::after {
    content: '✦';
    position: absolute;
    bottom: 4px; right: -18px;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    animation: vk-sparkle 1.8s ease-in-out infinite alternate;
    animation-delay: 0.4s;
}

.vk-aprobado-header__title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

.vk-aprobado-header__subtitle {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.4;
}

.vk-aprobado-body {
    background: white;
    border-radius: 0 0 var(--vk-radius-lg) var(--vk-radius-lg);
    padding: 24px 20px;
    box-shadow: var(--vk-shadow-card);
}

.vk-aprobado-info {
    background: var(--vk-bg-light);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.vk-aprobado-info__row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
}

.vk-aprobado-steps {
    border: 1px solid var(--vk-border-light);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 8px;
}

.vk-aprobado-steps__header {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--vk-border-light);
}

.vk-aprobado-steps__item {
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.vk-aprobado-trust {
    margin-top: 20px;
    border-top: 1px solid var(--vk-border-light);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vk-aprobado-trust__item {
    font-size: 13px;
    color: var(--vk-text-secondary);
    text-align: center;
}

/* --------------------------------------------------------------------------
   Credit Pago Screen (Tu Voltika está lista)
   -------------------------------------------------------------------------- */
.vk-cpago-logo {
    text-align: center;
    padding: 20px 0 4px;
}
.vk-cpago-logo img {
    height: 28px;
}

.vk-cpago-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: var(--vk-text-primary);
    margin: 12px 0 8px;
}

.vk-cpago-subtitle {
    font-size: 14px;
    color: var(--vk-text-secondary);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 0 4px;
}

.vk-cpago-note {
    background: #F1F8E9;
    border: 1px solid #AED581;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #33691E;
    text-align: center;
    margin-bottom: 16px;
}

.vk-cpago-amount {
    background: var(--vk-bg-light);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.vk-cpago-amount__label {
    font-size: 13px;
    color: var(--vk-text-secondary);
    margin-bottom: 6px;
}
.vk-cpago-amount__value {
    font-size: 32px;
    font-weight: 800;
    color: var(--vk-green-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.vk-cpago-amount__value span {
    font-size: 16px;
    font-weight: 600;
}
.vk-cpago-amount__detail {
    font-size: 12px;
    color: var(--vk-text-muted);
}

.vk-cpago-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.vk-cpago-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 14px;
    border: 1.5px solid var(--vk-border-light);
    border-radius: 10px;
    transition: border-color .2s, background .2s;
}
.vk-cpago-check:hover {
    border-color: var(--vk-green-primary);
    background: var(--vk-green-soft);
}
.vk-cpago-check input[type="checkbox"] {
    display: none;
}
.vk-cpago-check__box {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 5px;
    border: 2px solid var(--vk-border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all .15s;
}
.vk-cpago-check input[type="checkbox"]:checked + .vk-cpago-check__box {
    background: var(--vk-green-primary);
    border-color: var(--vk-green-primary);
}
.vk-cpago-check input[type="checkbox"]:checked + .vk-cpago-check__box::after {
    content: '✓';
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.vk-cpago-check input[type="checkbox"]:checked ~ .vk-cpago-check__text {
    color: var(--vk-text-primary);
}
.vk-cpago-check__text {
    font-size: 14px;
    color: var(--vk-text-secondary);
    line-height: 1.4;
}

.vk-cpago-btn {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}
.vk-cpago-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vk-cpago-footer {
    text-align: center;
    font-size: 12px;
    color: var(--vk-text-muted);
    margin-top: 14px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Credit Identity Screen (Confirma tu identidad)
   -------------------------------------------------------------------------- */
.vk-identidad-logo {
    text-align: center;
    padding: 20px 0 4px;
}
.vk-identidad-logo img {
    height: 28px;
}

.vk-identidad-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    margin-bottom: 4px;
}
.vk-identidad-progress__step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--vk-text-muted);
}
.vk-identidad-progress__step--done { color: var(--vk-green-primary); }
.vk-identidad-progress__step--active { color: #039fe1; }
.vk-identidad-progress__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--vk-border-light);
    color: var(--vk-text-muted);
}
.vk-identidad-progress__step--done .vk-identidad-progress__num {
    background: var(--vk-green-primary);
    color: white;
}
.vk-identidad-progress__step--active .vk-identidad-progress__num {
    background: #039fe1;
    color: white;
}
.vk-identidad-progress__line {
    flex: 1;
    max-width: 40px;
    height: 2px;
    background: var(--vk-border-light);
}

.vk-identidad-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--vk-text-primary);
}
.vk-identidad-subtitle {
    font-size: 14px;
    color: var(--vk-text-secondary);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 8px;
}

.vk-identidad-security {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #e8f7ff;
    border: 1px solid #b3e0f7;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
.vk-identidad-security__icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.vk-identidad-security__title { font-size: 13px; font-weight: 700; color: #039fe1; margin-bottom: 3px; }
.vk-identidad-security__text { font-size: 12px; color: #039fe1; line-height: 1.4; }

.vk-identidad-step {
    display: grid;
    grid-template-columns: 36px 1fr 28px;
    align-items: center;
    gap: 12px;
    border: 1.5px solid var(--vk-border-light);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.vk-identidad-step:hover { border-color: #039fe1; background: #f0faff; }
.vk-identidad-step--done { border-color: var(--vk-green-primary) !important; background: var(--vk-green-soft) !important; }
.vk-identidad-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #039fe1;
    color: white;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vk-identidad-step__title { font-size: 14px; font-weight: 700; color: #039fe1; margin-bottom: 2px; }
.vk-identidad-step__desc { font-size: 12px; color: var(--vk-text-secondary); line-height: 1.4; }
.vk-identidad-step__status { font-size: 20px; color: #77cbe8; text-align: center; }
.vk-identidad-step__icon { margin-top: 8px; }

.vk-identidad-timer {
    text-align: center;
    font-size: 13px;
    color: #039fe1;
    margin: 4px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vk-identidad-consejos {
    background: var(--vk-bg-light);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 14px;
}
.vk-identidad-consejos__title {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--vk-text-primary);
}
.vk-identidad-consejos__grid { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.vk-identidad-consejos__item {
    font-size: 13px;
    color: var(--vk-text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 45%;
}
.vk-identidad-check { color: var(--vk-green-primary); font-weight: 700; }

.vk-identidad-footer {
    text-align: center;
    font-size: 12px;
    color: var(--vk-text-muted);
    margin-top: 14px;
    padding-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Back Button
   -------------------------------------------------------------------------- */
.vk-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--vk-text-secondary);
    font-family: var(--vk-font-family);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: var(--vk-space-sm);
    transition: color var(--vk-transition-fast);
}

.vk-back-btn:hover {
    color: var(--vk-green-primary);
}

/* --------------------------------------------------------------------------
   Loading Spinner
   -------------------------------------------------------------------------- */
.vk-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--vk-border);
    border-top-color: var(--vk-green-primary);
    border-radius: var(--vk-radius-circle);
    animation: vkSpin 0.8s linear infinite;
    margin: var(--vk-space-lg) auto;
}

@keyframes vkSpin {
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Phone Input with Country Code
   -------------------------------------------------------------------------- */
.vk-phone-group {
    display: flex;
    gap: var(--vk-space-sm);
}

.vk-phone-prefix {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vk-bg-light);
    border: 1.5px solid var(--vk-border);
    border-radius: var(--vk-radius-sm);
    font-size: var(--vk-font-size-sm);
    font-weight: var(--vk-font-semibold);
    color: var(--vk-text-primary);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Tablet */
@media (min-width: 769px) {
    .vk-configurador {
        max-width: 520px;
        padding: var(--vk-space-lg);
    }

    .vk-card__imagen img {
        max-height: 260px;
    }
}

/*  PASO 1: mobile / desktop layout toggle  */
.vk-paso1-mobile  { display: block; }
.vk-paso1-desktop { display: none;  }

/* Desktop (1024px+) */
@media (min-width: 1024px) {

    /*  Container  */
    .vk-configurador {
        max-width: 83%;
        padding: var(--vk-space-xl) var(--vk-space-lg);
    }

    .vk-paso__titulo {
        font-size: 26px;
    }

    /*  PASO 1 layout toggle  */
    .vk-paso1-mobile  { display: none;  }
    .vk-paso1-desktop { display: block; }

    /*  Model-selector tab bar  */
    .vk-dtabs {
        display: flex;
        background: #fff;
        border-radius: var(--vk-radius-lg) var(--vk-radius-lg) 0 0;
        border-bottom: 2px solid var(--vk-border);
        overflow: hidden;
    }

    .vk-dtab {
        flex: 1;
        padding: 18px 12px;
        font-size: 15px;
        font-weight: 700;
        border: none;
        background: transparent;
        cursor: pointer;
        color: var(--vk-text-secondary);
        position: relative;
        transition: color var(--vk-transition-fast), background var(--vk-transition-fast);
        font-family: var(--vk-font-family);
        letter-spacing: 0.3px;
    }

    .vk-dtab:hover {
        background: var(--vk-bg-light);
        color: var(--vk-text-primary);
    }

    .vk-dtab--active {
        color: var(--vk-green-primary);
        background: #fff;
    }

    .vk-dtab--active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--vk-green-primary);
        border-radius: 2px 2px 0 0;
    }

    .vk-dtab__star {
        font-size: 12px;
        vertical-align: middle;
    }

    /*  Hero two-column layout  */
    .vk-hero {
        display: grid;
        grid-template-columns: 3fr 2fr;
        background: #fff;
        border-radius: 0 0 var(--vk-radius-lg) var(--vk-radius-lg);
        box-shadow: var(--vk-shadow-card);
        min-height: 500px;
        overflow: hidden;
    }

    /* Left: product visual */
    .vk-hero__visual {
        background: var(--vk-bg-light);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px 40px 32px;
        border-right: 1px solid var(--vk-border);
    }

    .vk-hero__img {
        max-height: 340px;
        max-width: 100%;
        object-fit: contain;
        transition: opacity 0.2s ease;
    }

    .vk-hero__badge {
        margin-top: 16px;
        display: inline-block;
        background: var(--vk-badge-yellow-bg);
        color: #7a5c00;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: var(--vk-radius-pill);
    }

    .vk-hero__specs {
        margin-top: 12px;
        font-size: 14px;
        font-weight: 500;
        color: var(--vk-text-secondary);
    }

    /* Right: configuration panel */
    .vk-hero__panel {
        padding: 28px 24px 24px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .vk-hero__nombre {
        font-size: 36px;
        font-weight: 800;
        color: var(--vk-text-primary);
        line-height: 1.1;
        margin-bottom: 4px;
    }

    .vk-hero__subtitulo {
        font-size: 13px;
        color: var(--vk-text-secondary);
        margin-bottom: 8px;
        min-height: 18px;
    }

    .vk-hero__precio-base {
        font-size: 13px;
        color: var(--vk-text-muted);
        margin-bottom: 18px;
    }

    /* Payment method tabs (inside right panel) */
    .vk-hero__metodo-tabs {
        display: flex;
        flex-wrap: wrap;
        border: 1px solid var(--vk-border);
        border-radius: var(--vk-radius-md);
        overflow: hidden;
        margin-bottom: 16px;
    }

    .vk-hero__metodo-tabs .vk-hero__formas-label {
        width: 100%;
        margin-bottom: 0;
        padding: 8px 12px 4px;
        border-bottom: 1px solid var(--vk-border);
    }

    .vk-hero__metodo-tab {
        flex: 1;
        padding: 9px 6px;
        font-size: 12px;
        font-weight: 600;
        border: none;
        background: var(--vk-bg-light);
        cursor: pointer;
        color: var(--vk-text-secondary);
        transition: background var(--vk-transition-fast), color var(--vk-transition-fast);
        font-family: var(--vk-font-family);
        border-right: 1px solid var(--vk-border);
    }

    .vk-hero__metodo-tab:last-child {
        border-right: none;
    }

    .vk-hero__metodo-tab--active {
        background: var(--vk-green-primary);
        color: #fff;
    }

    .vk-hero__tab-content {
        flex: 1;
        margin-bottom: 16px;
    }

    /* Hide tab-internal CTA inside desktop hero (hero has its own #vk-hero-cta) */
    .vk-hero__tab-content .vk-card__tab-cta {
        display: none;
    }

    /* Desktop gallery inside hero visual */
    .vk-hero__galeria {
        width: 100%;
        border-radius: 8px;
        aspect-ratio: unset;
        height: 300px;
        max-height: 300px;
    }
    .vk-hero__galeria .vk-gal__img--active {
        object-fit: contain;
        background: #ffffff;
    }

    /*  PASO 2+  card goes full-width on desktop  */
    #vk-paso-2 .vk-card,
    #vk-paso-3 .vk-card,
    #vk-paso-4a .vk-card,
    #vk-paso-4b .vk-card,
    #vk-paso-resumen .vk-card {
        max-width: none;
    }

    /*  2-column split inside card  */
    .vk-desktop-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: start;
    }

    .vk-desktop-split__left {
        border-right: 1px solid var(--vk-border);
    }

    .vk-desktop-split__left .vk-card__imagen img {
        max-height: 380px;
    }

    .vk-desktop-split__right {
        padding: 28px var(--vk-card-padding);
        display: flex;
        flex-direction: column;
    }

    .vk-desktop-split__right .vk-btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .vk-desktop-split-wrap {
        padding: 0 var(--vk-card-padding);
    }
}

/* --------------------------------------------------------------------------
   PASO 1 Mobile: scroll hint between cards
   -------------------------------------------------------------------------- */
.vk-scroll-hint {
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: var(--vk-text-muted);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Mobile-compact: reduce line-height + spacing to fit more on screen
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .vk-configurador {
        line-height: 1.3;
    }

    /* Progress bar  smaller on mobile */
    .vk-progress {
        padding: var(--vk-space-sm) var(--vk-space-md);
        margin-bottom: var(--vk-space-sm);
    }

    .vk-progress__step {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .vk-progress__label {
        font-size: 8px;
        bottom: -16px;
        letter-spacing: 0.3px;
    }

    .vk-progress__line {
        max-width: 50px;
        height: 2px;
    }

    /* Color swatches  smaller on mobile */
    .vk-color-swatch__circle {
        width: 32px;
        height: 32px;
    }

    .vk-color-swatch__label {
        font-size: 10px;
    }

    .vk-card__nombre {
        margin-bottom: 2px;
        font-size: 18px;
    }

    .vk-card__specs {
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .vk-card__precio-base {
        margin-top: 2px;
        margin-bottom: 4px;
        font-size: 15px
    }

    .vk-card__bullets {
        display: block;
        padding: 6px var(--vk-card-padding);
    }

    .vk-card__tab-bullets {
        display: block;
    }

    .vk-card__bullet {
        padding: 2px 0;
        line-height: 1.25;
        font-size: 10px;
    }

    .vk-card__tab-content {
        padding: 10px var(--vk-card-padding);
    }

    .vk-card__tab-bullet {
        padding: 2px 0;
        line-height: 1.25;
        font-size: 10px;
    }

    .vk-card__precio-destacado {
        margin-bottom: 6px;
    }

    .vk-card__tabs {
        margin-top: 8px;
    }

    .vk-tab {
        padding: 8px 6px;
    }

    .vk-btn {
        margin: 8px auto;
        padding: 12px var(--vk-space-md);
    }

    .vk-card__formas-pago-label {
        padding-top: 6px;
    }

    .vk-card__banner {
        padding: 6px var(--vk-space-md);
    }

    .vk-card__imagen {
        padding: var(--vk-space-md) var(--vk-space-sm) var(--vk-space-xs);
    }

    .vk-go-electric {
        padding: var(--vk-space-sm) var(--vk-space-md) var(--vk-space-md);
        margin: 4px 0 0;
    }
}

/* --------------------------------------------------------------------------
   GO electric Footer
   -------------------------------------------------------------------------- */
.vk-go-electric {
    text-align: center;
    padding: var(--vk-space-sm) var(--vk-space-md) var(--vk-space-md);
    margin: 4px 0 0;
    background: var(--vk-bg-light);
    border-radius: var(--vk-radius-lg);
}

.vk-go-electric__logo {
    margin-bottom: var(--vk-space-sm);
}

.vk-go-electric__svg {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.vk-go-electric__tagline {
    font-size: var(--vk-font-size-sm);
    color: var(--vk-text-secondary);
    margin-bottom: var(--vk-space-sm);
}

.vk-go-electric__social {
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
    margin-bottom: var(--vk-space-sm);
}

.vk-go-electric__chevron {
    font-size: 10px;
    color: var(--vk-text-muted);
    margin-bottom: var(--vk-space-xs);
}

.vk-go-electric__divider {
    width: 40px;
    height: 1px;
    background: var(--vk-border);
    margin: 0 auto var(--vk-space-sm);
}

.vk-go-electric__more {
    font-size: var(--vk-font-size-xs);
    color: var(--vk-text-muted);
    font-weight: var(--vk-font-medium);
}

/* Small mobile */
@media (max-width: 380px) {
    .vk-configurador {
        padding: var(--vk-space-sm);
    }

    .vk-card__tabs {
        margin: var(--vk-space-md) var(--vk-space-sm) 0;
    }

    .vk-tab {
        font-size: var(--vk-font-size-xs);
        padding: 8px 4px;
    }

    .vk-card__precio-destacado strong {
        font-size: 17px;
    }

    .vk-card__info {
        padding: 0 var(--vk-space-sm);
    }

    .vk-card__tab-content {
        padding: var(--vk-space-sm);
    }

    .vk-btn {
        width: calc(65% - 2 * var(--vk-space-sm));
        font-size: 13px;
        padding: 8px;
    }

    .vk-trust-badges {
        gap: var(--vk-space-md);
    }

    .vk-trust-badge {
        font-size: 8px;
    }

    .vk-payment-options {
        grid-template-columns: 1fr;
    }

}

/* --------------------------------------------------------------------------
   "Formas de Pago" label (above payment tabs)
   -------------------------------------------------------------------------- */
.vk-card__formas-label,
.vk-hero__formas-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--vk-text-primary);
    text-align: center;
    margin-bottom: 4px;
    padding: 0 var(--vk-card-padding);
}

.vk-card__formas-label {
    margin-top: 18px;
}

.vk-card__formas-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--vk-text-secondary);
    text-align: center;
    margin-bottom: var(--vk-space-sm);
}

/* --------------------------------------------------------------------------
   Color Swatch Picker (PASO 2)
   -------------------------------------------------------------------------- */
.vk-color-picker {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.vk-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.vk-color-swatch:hover {
    transform: scale(1.1);
}

.vk-color-swatch__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #E0E0E0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vk-color-swatch--active .vk-color-swatch__circle {
    border-color: var(--vk-green-primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25), 0 1px 3px rgba(0,0,0,0.12);
}

.vk-color-swatch__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--vk-text-muted);
    transition: color 0.2s ease;
}

.vk-color-swatch--active .vk-color-swatch__label {
    color: var(--vk-green-primary);
}

/* ==========================================================================
   Gallery Slider (model card images)
   ========================================================================== */

.vk-card__galeria {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #ffffff;
    aspect-ratio: 4/3;
}

.vk-gal__track {
    display: flex;
    width: 100%;
    height: 100%;
}

.vk-gal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: none;
}

.vk-gal__img--active {
    display: block;
}

.vk-gal__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.vk-gal__arrow--prev { left: 10px; }
.vk-gal__arrow--next { right: 8px; }

.vk-gal__dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.vk-gal__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.2s;
}

.vk-gal__dot--active {
    background: #fff;
}

/* ==========================================================================
   Horizontal Model Slider (mobile)
   ========================================================================== */

.vk-modelo-slider {
    overflow: hidden;
    width: 100%;
}

.vk-modelo-slider__track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.vk-modelo-slider__item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.vk-modelo-tabs {
    display: flex;
    overflow-x: hidden;
    gap: 4px;
    padding: 10px 8px 4px;
    scrollbar-width: none;
}

.vk-modelo-tabs::-webkit-scrollbar { display: none; }

.vk-modelo-tab {
    flex: 1;
    min-width: 0;
    padding: 5px 4px;
    border-radius: 16px;
    border: 1.5px solid var(--vk-border);
    background: #fff;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
    text-align: center;
    min-height: 36px;
    color: var(--vk-text-secondary);
    transition: all 0.2s;
}

.vk-modelo-tab--active {
    background: #039fe1;
    border-color: #039fe1;
    color: #fff;
}

/* ==========================================================================
   Daily payment label
   ========================================================================== */

.vk-card__precio-diario {
    font-size: 13px;
    color: var(--vk-text-secondary);
    text-align: center;
    margin-bottom: 10px;
    margin-top: -4px;
}

/* ── Fixed bottom model nav (Paso 1 mobile) ────────────────────────────── */
.vk-modelo-nav-fixed {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: #fff;
    border-top: 2px solid #039fe1;
    box-shadow: 0 -3px 14px rgba(0,0,0,0.12);
    padding: 6px 8px 10px;
    transform: none !important;
}
/* Hide on desktop — only needed on mobile */
@media (min-width: 768px) {
    .vk-modelo-nav-fixed {
        display: none !important;
    }
}
/* Give the whole mobile section room so go-electric isn't hidden behind fixed nav */
.vk-paso1-mobile {
    padding-bottom: 40px;
}

/* ── Swipe hint animation ───────────────────────────────────────────────── */
.vk-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 2px;
    font-size: 12px;
    color: var(--vk-text-muted);
    overflow: hidden;
    max-height: 36px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
/* Compact state: scroll down hides the hint */
.vk-modelo-nav-fixed--compact .vk-swipe-hint {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.vk-swipe-hint__hand {
    display: inline-block;
    font-size: 20px;
    animation: vk-swipe 1.6s ease-in-out infinite;
    transform-origin: center;
}
.vk-swipe-hint__text {
    font-size: 12px;
    color: var(--vk-text-muted);
    font-weight: 500;
}
@keyframes vk-swipe {
    0%   { transform: translateX(0); }
    30%  { transform: translateX(12px); }
    60%  { transform: translateX(-12px); }
    100% { transform: translateX(0); }
}
