/**
 * VT Trade Onboarding — Form Styles
 * Version: 1.0.0
 */

/* ── Wrap ── */
.vto-wrap {
    max-width: 640px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    color: #0f172a;
}

/* ── Progress bar ── */
.vto-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 36px;
    padding-bottom: 8px;
}
.vto-progress__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
}
.vto-progress__fill {
    height: 100%;
    background: #2563eb;
    border-radius: 2px;
    transition: width .3s ease;
}
.vto-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}
.vto-progress__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}
.vto-progress__step.is-active .vto-progress__dot {
    background: #2563eb;
    color: #fff;
}
.vto-progress__step.is-complete .vto-progress__dot {
    background: #16a34a;
    color: #fff;
}
.vto-progress__step.is-complete .vto-progress__dot::before {
    content: '✓';
}
.vto-progress__label {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
}
.vto-progress__step.is-active .vto-progress__label { color: #2563eb; font-weight: 600; }
.vto-progress__step.is-complete .vto-progress__label { color: #16a34a; }

/* ── Steps ── */
.vto-step { display: none; }
.vto-step.is-active { display: block; }
.vto-step__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #0f172a;
}
.vto-step__hint {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px;
}

/* ── Fields ── */
.vto-field {
    margin-bottom: 18px;
}
.vto-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.vto-field input[type="text"],
.vto-field input[type="tel"],
.vto-field input[type="email"],
.vto-field input[type="number"],
.vto-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}
.vto-field input:focus,
.vto-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.vto-field textarea { resize: vertical; min-height: 100px; }
.vto-required { color: #ef4444; }
.vto-hint-label { font-weight: 400; color: #94a3b8; font-size: 12px; }
.vto-field-hint { font-size: 12px; color: #94a3b8; margin: 6px 0 0; }
.vto-input-error { border-color: #ef4444 !important; }
.vto-error-msg { font-size: 12px; color: #ef4444; margin: 4px 0 0; }

/* Two-column row */
.vto-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── Tag input ── */
.vto-tag-input {
    min-height: 44px;
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    cursor: text;
    transition: border-color .15s, box-shadow .15s;
}
.vto-tag-input:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.vto-tag-input input {
    border: none !important;
    box-shadow: none !important;
    padding: 4px 2px !important;
    min-width: 140px;
    flex: 1;
    font-size: 13px;
}
.vto-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 500;
}
.vto-tag__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
}
.vto-tag__remove:hover { color: #ef4444; }

/* ── Upload zones ── */
.vto-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    position: relative;
}
.vto-upload-zone:hover,
.vto-upload-zone.is-over {
    border-color: #2563eb;
    background: #f0f7ff;
}
.vto-upload-zone__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.vto-upload-zone__icon { font-size: 28px; display: block; margin-bottom: 8px; }
.vto-upload-zone__text { font-size: 14px; font-weight: 600; color: #334155; display: block; }
.vto-upload-zone__sub  { font-size: 12px; color: #94a3b8; display: block; margin-top: 4px; }
.vto-upload-zone__change { font-size: 12px; color: #2563eb; display: block; margin-top: 6px; }
.vto-featured-preview-img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto 8px;
}

/* Gallery */
.vto-gallery-upload { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.vto-gallery-add {
    width: 80px;
    height: 80px;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color .15s;
    text-align: center;
    padding: 6px;
}
.vto-gallery-add:hover { border-color: #2563eb; color: #2563eb; }
.vto-gallery-add input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.vto-gallery-previews { display: flex; flex-wrap: wrap; gap: 10px; }
.vto-gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.vto-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vto-gallery-thumb__remove {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ── Reviews grid ── */
.vto-review-grid { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; }
.vto-review-grid__header {
    display: grid;
    grid-template-columns: 1fr 130px 130px;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}
.vto-review-row {
    display: grid;
    grid-template-columns: 1fr 130px 130px;
    gap: 10px;
    padding: 10px 14px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}
.vto-review-row:last-child { border-bottom: none; }
.vto-review-platform { font-size: 13px; font-weight: 600; }
.vto-review-rating,
.vto-review-count {
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
}

/* ── Credentials ── */
.vto-credentials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.vto-credential {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.vto-credential:hover { border-color: #2563eb; background: #f0f7ff; }
.vto-credential input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #2563eb;
}
.vto-credential__body strong { display: block; font-size: 14px; margin-bottom: 2px; }
.vto-credential__body span   { font-size: 13px; color: #64748b; }

/* ── Notice ── */
.vto-notice {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 16px;
    font-size: 13px;
}
.vto-notice strong { display: block; margin-bottom: 6px; color: #0369a1; }
.vto-notice p { margin: 0; color: #475569; line-height: 1.6; }

/* ── Navigation buttons ── */
.vto-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.vto-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .15s, transform .1s;
    font-family: inherit;
}
.vto-btn:active { transform: scale(.98); }
.vto-btn--back {
    background: #f1f5f9;
    color: #475569;
}
.vto-btn--back:hover { background: #e2e8f0; }
.vto-btn--next,
.vto-btn--submit {
    background: #2563eb;
    color: #fff;
    margin-left: auto;
}
.vto-btn--next:hover,
.vto-btn--submit:hover   { background: #1d4ed8; }
.vto-btn:disabled { opacity: .6; cursor: not-allowed; }

/* ── Success screen ── */
.vto-success {
    text-align: center;
    padding: 48px 24px;
}
.vto-success__icon {
    width: 64px;
    height: 64px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.vto-success h2 { font-size: 24px; margin: 0 0 12px; }
.vto-success p  { font-size: 16px; color: #475569; line-height: 1.6; max-width: 420px; margin: 0 auto; }

/* ── Mobile ── */
@media (max-width: 600px) {
    .vto-progress__label { display: none; }
    .vto-row { grid-template-columns: 1fr; gap: 0; }
    .vto-review-grid__header,
    .vto-review-row {
        grid-template-columns: 1fr 100px 100px;
        gap: 6px;
        padding: 8px 10px;
    }
    .vto-step__title { font-size: 18px; }
}

/* ── Autocomplete dropdown ── */
.vto-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-top: none;
    border-radius: 0 0 8px 8px;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(15,23,42,.1);
    max-height: 200px;
    overflow-y: auto;
}
.vto-autocomplete li {
    padding: 8px 14px;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
}
.vto-autocomplete li:hover { background: #f0f7ff; color: #2563eb; }

/* ── Quick-add buttons ── */
.vto-quick-add {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}
.vto-quick-add__label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    flex-shrink: 0;
}
.vto-quick-tag {
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    background: #fff;
    color: #475569;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
    font-family: inherit;
}
.vto-quick-tag:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

/* ── Skip reviews button ── */
.vto-skip-row {
    margin-top: 20px;
    text-align: center;
}
.vto-btn--skip {
    background: none;
    border: 1px solid #cbd5e1;
    color: #64748b;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s, color .15s;
}
.vto-btn--skip:hover {
    border-color: #94a3b8;
    color: #334155;
}

/* ── Optional step label ── */
.vto-step__optional {
    font-size: 12px;
    font-weight: 400;
    color: #94a3b8;
    background: #f1f5f9;
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0;
    text-transform: none;
}

/* ── Success message rich text ── */
.vto-success p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
}
.vto-success p strong { color: #0f172a; }

/* ── Character counter ── */
.vto-char-count {
    float: right;
    font-size: 11px;
    font-weight: 400;
    color: #94a3b8;
    transition: color .15s;
}
.vto-char-count--warn   { color: #d97706; }
.vto-char-count--danger { color: #ef4444; font-weight: 600; }

/* ── Mobile upload instruction ── */
.vto-upload-text--mobile  { display: none; }
.vto-upload-text--desktop { display: block; }
@media (hover: none) and (pointer: coarse) {
    /* Touch device — phone or tablet */
    .vto-upload-text--mobile  { display: block; }
    .vto-upload-text--desktop { display: none; }
}

/* ── Upload zone uploading state ── */
.vto-upload-zone.is-uploading {
    pointer-events: none;
    opacity: .7;
}
.vto-upload-zone.is-uploading::after {
    content: attr( data-uploading );
    display: block;
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

/* ── Gallery loading placeholder ── */
.vto-gallery-thumb--loading {
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vto-gallery-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: vto-spin .7s linear infinite;
}
@keyframes vto-spin {
    to { transform: rotate(360deg); }
}

/* ── Time estimate ── */
.vto-time-estimate {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 16px;
    text-align: center;
}

/* ── Small screen two-column fix ── */
@media (max-width: 420px) {
    /* Collapse two-column rows to single column on very small phones */
    .vto-row {
        grid-template-columns: 1fr;
    }
    /* Make review grid stack more gracefully */
    .vto-review-grid__header,
    .vto-review-row {
        grid-template-columns: 1fr 80px 80px;
        gap: 4px;
        padding: 8px;
        font-size: 12px;
    }
    .vto-review-rating,
    .vto-review-count {
        padding: 6px 6px;
        font-size: 13px;
    }
}

/* ── Sticky navigation on mobile ── */
@media (max-width: 768px) {
    /* Push form content up so it's not hidden behind the sticky bar */
    .vto-wrap {
        padding-bottom: 80px;
    }

    .vto-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        border-top: 1px solid #e2e8f0;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -4px 12px rgba(15,23,42,.08);
        margin-top: 0;      /* override desktop margin */
        padding-top: 12px;  /* override desktop padding-top */
        border-radius: 0;   /* full-width on mobile */
    }

    /* Ensure buttons fill the space properly */
    .vto-btn--next,
    .vto-btn--submit {
        margin-left: 0;
        flex: 1;
        text-align: center;
    }

    .vto-btn--back {
        flex-shrink: 0;
        margin-right: 12px;
    }
}

/* ── Trust bar ── */
.vto-trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.vto-trust-bar span {
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}
@media (max-width: 480px) {
    .vto-trust-bar { gap: 10px; }
    .vto-trust-bar span { font-size: 12px; }
}

/* ── Form logo ── */
.vto-form-logo {
    text-align: center;
    margin-bottom: 16px;
}
.vto-form-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: inline-block;
}

/* ── Review proof URL row ── */
.vto-review-url-row {
    grid-column: 1 / -1;
    padding: 0 14px 10px;
    border-bottom: 1px solid #f1f5f9;
}
.vto-review-url-row:last-child { border-bottom: none; }
.vto-review-url {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 10px;
    font-size: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    color: #475569;
    font-family: inherit;
    background: #fafbfc;
}
.vto-review-url:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
}

/* ── Reviews nudge ── */
.vto-reviews-nudge {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-top: 16px;
}
.vto-reviews-nudge p {
    font-size: 14px;
    color: #1e40af;
    margin: 0 0 12px;
    line-height: 1.5;
}
.vto-btn--back-inline {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    margin-left: 10px;
}

/* ── Listing tier selector ── */
.vto-listing-tier {
    margin-top: 24px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}
.vto-listing-tier__heading {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}
.vto-tier {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.vto-tier:hover { border-color: #2563eb; background: #f0f7ff; }
.vto-tier input[type=radio] { margin-top: 3px; flex-shrink: 0; accent-color: #2563eb; }
.vto-tier__body { flex: 1; }
.vto-tier__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.vto-tier__top strong { font-size: 14px; color: #0f172a; }
.vto-tier__price { font-size: 13px; font-weight: 700; color: #16a34a; }
.vto-tier__price--soon { font-size: 11px; font-weight: 600; color: #94a3b8; background: #f1f5f9; padding: 2px 8px; border-radius: 4px; }
.vto-tier__desc { font-size: 12px; color: #64748b; }
.vto-tier--standard input:checked ~ .vto-tier__body .vto-tier__top strong { color: #2563eb; }

/* ── Listing preview ── */
.vto-preview {
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}
.vto-preview__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.vto-preview__img-wrap { flex-shrink: 0; }
.vto-preview__img-wrap img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}
.vto-preview__img-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.vto-preview__name    { font-size: 17px; font-weight: 700; color: #0f172a; margin: 0 0 4px; }
.vto-preview__tagline { font-size: 13px; color: #475569; margin: 0 0 4px; }
.vto-preview__area    { font-size: 12px; color: #64748b; margin: 0; }
.vto-preview__services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    min-height: 20px;
}
.vto-preview__service {
    font-size: 12px;
    color: #334155;
}
.vto-preview__about {
    padding: 12px 16px;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    min-height: 20px;
    white-space: pre-wrap;
}
.vto-preview__note {
    font-size: 11px;
    color: #94a3b8;
    padding: 8px 16px 12px;
    margin: 0;
    border-top: 1px solid #f1f5f9;
}

/* ── Preview badges ── */
.vto-preview__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    min-height: 10px;
}
.vto-preview__badge {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3px 10px;
}

/* ── Save indicator ── */
.vto-save-indicator {
    position: fixed;
    top: 16px;
    right: 16px;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s, transform .2s;
    pointer-events: none;
    z-index: 9999;
}
.vto-save-indicator.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Tag removing state ── */
.vto-tag--removing {
    opacity: .4;
    text-decoration: line-through;
}

/* ── Undo toast ── */
.vto-undo-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #1e293b;
    color: #fff;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
}
.vto-undo-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.vto-undo-btn {
    background: none;
    border: none;
    color: #60a5fa;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    margin-left: 10px;
    text-decoration: underline;
    font-family: inherit;
}

/* ── Bulk upload progress ── */
.vto-bulk-progress {
    margin-bottom: 10px;
    padding: 10px 12px;
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
}
.vto-bulk-progress__text {
    font-size: 12px;
    color: #1e40af;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.vto-bulk-progress__bar {
    height: 4px;
    background: #dbeafe;
    border-radius: 2px;
    overflow: hidden;
}
.vto-bulk-progress__fill {
    height: 100%;
    background: #2563eb;
    border-radius: 2px;
    transition: width .3s ease;
}

/* ── GDPR consent ── */
.vto-gdpr { margin-bottom: 20px; }
.vto-gdpr__label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    line-height: 1.5;
}
.vto-gdpr__label input[type=checkbox] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}
.vto-gdpr__label a { color: #2563eb; }

/* ── Short screen undo toast adjustment ── */
@media (max-height: 600px) {
    .vto-undo-toast { bottom: 70px; }
}

/* ── Bulk progress visibility on mobile ── */
.vto-bulk-progress {
    position: relative;
    z-index: 100;
}

/* ── FAQ fields ── */
.vto-faq-field { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #f1f5f9; }
.vto-faq-field:last-child { border-bottom: none; }
.vto-faq-field label { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; display: block; }
.vto-faq-field textarea { min-height: 70px; }

/* ── Cloudflare Turnstile ── */
.vto-turnstile {
    display: flex;
    justify-content: center;
    margin: 16px 0 8px;
}

/* ── Preview warranty ── */
.vto-preview__warranty {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    padding: 3px 10px;
    margin: 6px 0 4px;
}
