/* ═══════════════════════════════════════════════════════
   VERON CONSEIL — PREMIUM CHECKOUT v4.0
   Standalone stylesheet — imported by index.html + store.html
   ═══════════════════════════════════════════════════════ */

/* OVERLAY */
.vc-checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.vc-checkout-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* SHELL */
.vc-checkout-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    width: 100%;
    max-width: 880px;
    height: 90vh;
    max-height: 680px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255,255,255,0.07),
                inset 0 1px 0 rgba(255,255,255,0.07);
    transform: scale(0.96) translateY(20px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.vc-checkout-overlay.active .vc-checkout-shell {
    transform: scale(1) translateY(0);
}

/* CLOSE BUTTON */
.vc-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.25s;
}

.vc-close-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: rotate(90deg);
}

/* ── LEFT PANEL ── */
.vc-left-panel {
    background: linear-gradient(160deg, #050810 0%, #08112a 50%, #050a16 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.vc-panel-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.18) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
    animation: vcGlowPulse 4s ease-in-out infinite;
}

@keyframes vcGlowPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Brand Mark */
.vc-brand-mark {
    display: flex;
    gap: 0.1rem;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.vc-brand-v { color: #fff; }
.vc-brand-c { color: #0070f3; }

/* Product Summary */
.vc-product-label {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.vc-product-name {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.vc-product-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    padding: 0.32rem 0.85rem;
    border: 1px solid rgba(0, 112, 243, 0.35);
    border-radius: 100px;
    font-size: 0.52rem;
    letter-spacing: 2px;
    color: #4da3ff;
    text-transform: uppercase;
    background: rgba(0, 112, 243, 0.08);
}

.vc-product-type-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0070f3;
    box-shadow: 0 0 6px rgba(0, 112, 243, 0.8);
    animation: vcDotBlink 1.6s ease-in-out infinite;
}

@keyframes vcDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Price Block */
.vc-price-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.vc-price-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,112,243,0.6), transparent);
}

.vc-price-label {
    font-size: 0.52rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.vc-price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.vc-price-value {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

.vc-price-currency {
    font-size: 1rem;
    color: #0070f3;
    font-weight: 700;
    letter-spacing: 1px;
}

.vc-price-note {
    margin-top: 0.5rem;
    font-size: 0.66rem;
    color: rgba(255,255,255,0.35);
}

/* Order Lines */
.vc-order-lines {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vc-order-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.4);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vc-order-total {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom: none;
    padding-top: 0.4rem;
    padding-bottom: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Trust Signals */
.vc-trust-signals {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.vc-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.67rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.vc-trust-item:hover { color: rgba(255,255,255,0.65); }

.vc-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0070f3;
    box-shadow: 0 0 8px rgba(0, 112, 243, 0.7);
    flex-shrink: 0;
}

/* ── RIGHT PANEL ── */
.vc-right-panel {
    background: #0b0f18;
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 112, 243, 0.4) transparent;
    -webkit-overflow-scrolling: touch;
}

.vc-right-panel::-webkit-scrollbar {
    width: 4px;
}

.vc-right-panel::-webkit-scrollbar-track {
    background: transparent;
}

.vc-right-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 112, 243, 0.4);
    border-radius: 4px;
}

/* STEP PROGRESS BAR */
.vc-step-bar {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 0;
    flex-shrink: 0;
}

.vc-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.vc-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255,255,255,0.03);
}

.vc-step-label {
    font-size: 0.56rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    transition: color 0.35s;
}

.vc-step-connector {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0 0.6rem;
    margin-bottom: 1.2rem;
    transition: background 0.5s ease;
}

/* Active Step */
.vc-step-item.active .vc-step-circle {
    background: linear-gradient(135deg, #0070f3, #0090ff);
    border-color: #0070f3;
    color: #fff;
    box-shadow: 0 0 24px rgba(0, 112, 243, 0.55);
}

.vc-step-item.active .vc-step-label {
    color: #4da3ff;
}

/* Done Step */
.vc-step-item.done .vc-step-circle {
    background: rgba(0, 112, 243, 0.15);
    border-color: #0070f3;
    color: #0070f3;
}

.vc-step-item.done .vc-step-circle::after {
    content: '✓';
    font-size: 0.65rem;
}

.vc-step-item.done .vc-step-circle span { display: none; }

.vc-step-item.done + .vc-step-connector {
    background: linear-gradient(90deg, #0070f3, rgba(255,255,255,0.08));
}

/* STEP CONTENT */
.vc-step-content {
    flex: 1;
    animation: vcSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vc-step-content.hidden {
    display: none;
}

@keyframes vcSlideIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vc-step-heading {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.vc-step-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

/* FORM */
.vc-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.vc-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: relative;
}

.vc-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── PREMIUM INPUT ── */
.vc-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.vc-input::placeholder { color: rgba(255,255,255,0.18); }

.vc-input:focus {
    border-color: #0070f3;
    background: rgba(0, 112, 243, 0.07);
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15), 0 4px 16px rgba(0, 112, 243, 0.08);
}

.vc-input:hover:not(:focus) {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

.vc-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
    animation: vcShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes vcShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.vc-field-error {
    font-size: 0.63rem;
    color: #ef4444;
    display: none;
    padding-left: 2px;
}

.vc-field-error.visible { display: block; }

/* ── PREMIUM DATE INPUT ── */
input[type="date"].vc-input {
    color: rgba(255,255,255,0.9);
    cursor: pointer;
}

input[type="date"].vc-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.7);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

input[type="date"].vc-input:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

input[type="date"].vc-input::-webkit-datetime-edit-fields-wrapper {
    color: rgba(255,255,255,0.8);
}

/* ── PREMIUM SELECT DROPDOWN ── */
select.vc-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 16px;
    padding-right: 2.8rem;
    color: rgba(255,255,255,0.85);
}

select.vc-input option {
    background: #10162a;
    color: #fff;
    padding: 0.6rem;
}

select.vc-input option:disabled {
    color: rgba(255,255,255,0.3);
}

/* Appointment Node (Services) */
.vc-appointment-node {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.4rem;
    background: linear-gradient(135deg, rgba(0, 112, 243, 0.05), rgba(0, 80, 200, 0.03));
    border: 1px solid rgba(0, 112, 243, 0.2);
    border-radius: 14px;
    margin-top: 0.4rem;
    position: relative;
    overflow: hidden;
}

.vc-appointment-node::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,112,243,0.5), transparent);
}

.vc-appointment-node.active { display: flex; }

.vc-appointment-label {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4da3ff;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vc-appointment-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

/* Meeting platform selector */
.vc-platform-selector {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.vc-platform-btn {
    flex: 1;
    padding: 0.6rem 0.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.vc-platform-btn:hover, .vc-platform-btn.active {
    border-color: #0070f3;
    background: rgba(0, 112, 243, 0.1);
    color: #fff;
}

/* CTA BUTTON */
.vc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0070f3, #0055cc);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(0, 112, 243, 0.38);
    position: relative;
    overflow: hidden;
}

.vc-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.vc-cta-btn:hover::before { transform: translateX(100%); }

.vc-cta-btn:hover {
    background: linear-gradient(135deg, #0085ff, #0065e0);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 112, 243, 0.5);
}

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

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

/* SPINNER */
.vc-btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vcSpin 0.7s linear infinite;
    display: none;
    flex-shrink: 0;
}

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

/* Loading state */
.vc-cta-btn.loading .vc-btn-text { display: none; }
.vc-cta-btn.loading .vc-btn-loader { display: block; }
.vc-stripe-pay-btn.loading .vc-btn-text { display: none; }
.vc-stripe-pay-btn.loading .vc-btn-loader { display: block; }

/* ── PAYMENT METHODS ── */
.vc-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vc-payment-option {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.3rem;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s;
}

.vc-payment-option:hover {
    border-color: rgba(0, 112, 243, 0.35);
    background: rgba(0, 112, 243, 0.04);
    transform: translateY(-1px);
}

.vc-payment-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.vc-payment-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.07);
}

.vc-payment-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.vc-payment-sub {
    font-size: 0.67rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.1rem;
}

.vc-payment-badge {
    margin-left: auto;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0070f3;
    background: rgba(0, 112, 243, 0.1);
    border: 1px solid rgba(0, 112, 243, 0.3);
    border-radius: 100px;
    padding: 0.22rem 0.65rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.vc-paypal-btn-wrap {
    min-height: 44px;
}

/* Stripe Pay Button */
.vc-stripe-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #635bff, #4f46e5);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.vc-stripe-pay-btn:hover {
    background: linear-gradient(135deg, #7870ff, #5b52f0);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 91, 255, 0.45);
}

/* OR Divider */
.vc-payment-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    color: rgba(255,255,255,0.2);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vc-payment-divider::before,
.vc-payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* BACK BUTTON */
.vc-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1.2rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.vc-back-btn:hover { color: rgba(255,255,255,0.7); }

/* ── SERVICE BOOKING SUCCESS (STEP 3 for services) ── */
.vc-service-booking {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.vc-service-booking.active { display: flex; }

/* ── SUCCESS SCREEN ── */
.vc-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0 0;
    animation: vcSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vc-success-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(0, 200, 100, 0.08);
    border: 2px solid rgba(0, 200, 100, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    animation: vcPulseRing 2.5s ease infinite;
    flex-shrink: 0;
}

@keyframes vcPulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 100, 0.25); }
    50% { box-shadow: 0 0 0 18px rgba(0, 200, 100, 0); }
}

.vc-success-icon { line-height: 1; }

.vc-success-heading {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.vc-success-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    max-width: 380px;
    line-height: 1.75;
    margin-bottom: 1.6rem;
}

.vc-success-order-block {
    background: rgba(0, 200, 100, 0.05);
    border: 1px solid rgba(0, 200, 100, 0.2);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    margin-bottom: 1.6rem;
    width: 100%;
}

.vc-success-order-label {
    font-size: 0.52rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.vc-success-order-id {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: #00e87a;
    letter-spacing: 2px;
}

.vc-success-product-confirm {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.35rem;
}

/* Email notification banners */
.vc-email-banner {
    width: 100%;
    background: rgba(0, 112, 243, 0.06);
    border: 1px solid rgba(0, 112, 243, 0.18);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
}

.vc-email-banner-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.vc-email-banner-text {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
}

.vc-email-banner-text strong {
    color: #4da3ff;
    font-weight: 700;
}

/* Booking confirmation block */
.vc-booking-confirm-block {
    background: rgba(0, 200, 100, 0.04);
    border: 1px solid rgba(0, 200, 100, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.4rem;
    width: 100%;
    text-align: left;
}

.vc-booking-confirm-label {
    font-size: 0.52rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.vc-booking-confirm-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.4rem;
}

.vc-booking-confirm-row:last-child { margin-bottom: 0; }

.vc-booking-confirm-row span {
    color: #00e87a;
    font-weight: 700;
}

.vc-success-next-steps {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 1.8rem;
    text-align: left;
}

.vc-next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.vc-next-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.58rem;
    font-weight: 800;
    color: #0070f3;
    letter-spacing: 1px;
    min-width: 22px;
    padding: 0.15rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .vc-checkout-shell {
        grid-template-columns: 1fr;
        height: 95vh;
        max-height: 95vh;
        border-radius: 20px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .vc-left-panel {
        padding: 1.8rem 1.5rem;
        gap: 1.2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        overflow: visible;
    }

    .vc-right-panel {
        overflow-y: visible;
        padding: 1.8rem 1.5rem;
    }

    .vc-price-value { font-size: 2rem; }
    .vc-product-name { font-size: 1.1rem; }
    .vc-step-heading { font-size: 1.3rem; }
    
    .vc-appointment-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vc-checkout-shell { border-radius: 14px; }
    .vc-left-panel { padding: 1.4rem 1.2rem; }
    .vc-right-panel { padding: 1.4rem 1.2rem; }
    .vc-platform-selector { flex-direction: column; }
}
