/* =============================================
   FUTURA - Declaración de fuentes
   ============================================= */

@font-face {
    font-family: 'Futura';
    src: url('../../font/Futura Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../../font/Futura Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../../font/Futura Extra Bold Condensed.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* =============================================
   WIZARD - Estilos del formulario de inscripción
   ============================================= */

/* ─── Reset para páginas del wizard ─── */
body {
    background: #f0f2f5 !important;
    background-image: none !important;
    font-family: 'Futura', -apple-system, sans-serif;
    color: #20254B;
}

/* ─── Layout dos columnas ─── */
.wizard-layout {
    display: grid;
    grid-template-columns: 941fr 339fr;
    gap: 2rem;
    padding: 2.5rem 10rem 3.75rem;
    align-items: start;
}

.wizard-sidebar {
    grid-column: 2;
    grid-row: 1 / span 10;
    position: sticky;
    top: 24px;
}

.wizard-mobile-step {
    display: none;
}

.wizard-main {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

/* ─── Card del formulario ─── */
.wizard-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* ─── * Obligatorio ─── */
.wizard-obligatorio {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 500;
    color: #20254B;
    margin: 0 0 1.5rem;
}

.wizard-obligatorio .ast {
    color: #FF3636;
}

/* ─── Título de sección ─── */
.wizard-card h2 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #20254B;
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
    background: none;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* ─── Campos del formulario ─── */
.wizard-main .form-group {
    margin-bottom: 1.25rem;
}

.wizard-main .form-group:last-child {
    margin-bottom: 0;
}

.wizard-main .form-group label {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #20254B;
    margin-bottom: 0.5rem;
    font-family: 'Futura', sans-serif;
}

.wizard-main .form-group input[type="text"],
.wizard-main .form-group input[type="email"],
.wizard-main .form-group input[type="url"],
.wizard-main .form-group input[type="tel"],
.wizard-main .form-group select,
.wizard-main .form-group textarea {
    width: 100%;
    height: 3rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0 1rem;
    font-size: 1.25rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.wizard-main .form-group select {
    background-color: rgba(0, 0, 0, 0.051);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2320254B' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.wizard-main .form-group textarea {
    height: auto;
    min-height: 7rem;
    padding: 0.875rem 1rem;
    resize: vertical;
}

.wizard-main .form-group input::placeholder,
.wizard-main .form-group textarea::placeholder {
    color: #9ca3af;
    font-size: 1.25rem;
    font-family: 'Futura', sans-serif;
}

.wizard-main .form-group input:focus,
.wizard-main .form-group select:focus,
.wizard-main .form-group textarea:focus {
    border-color: #0088C9;
    box-shadow: 0 0 0 3px rgba(0, 136, 201, 0.12);
}

.wizard-main .form-group input:disabled,
.wizard-main .form-group select:disabled {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Errores inline por campo */
.wizard-main .form-group.has-error input,
.wizard-main .form-group.has-error select,
.wizard-main .form-group.has-error textarea {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.wizard-main .form-group.has-error .phone-input-group {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.wizard-main .form-group.has-error .radio-group {
    border: 1px solid #dc2626;
    border-radius: 8px;
    padding: 0.5rem;
}

.field-error {
    display: block;
    color: #dc2626;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 0.375rem;
}

.wizard-main .required::after {
    content: ' *';
    color: #FF3636;
}

.wizard-main .help-text {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* ─── Textarea con contador ─── */
.textarea-wrapper {
    position: relative;
}

.textarea-counter {
    position: absolute;
    bottom: 0.625rem;
    right: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
    pointer-events: none;
    font-family: 'Futura', sans-serif;
}

/* ─── Radio buttons ─── */
.wizard-main .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.wizard-main .radio-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 1.25rem;
    color: #20254B;
    font-weight: 500;
    margin: 0;
    font-family: 'Futura', sans-serif;
}

.wizard-main .radio-option input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #0088C9;
    cursor: pointer;
    flex-shrink: 0;
}

/* ─── Checkbox inline ─── */
.wizard-main .checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.wizard-main .checkbox-inline input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #0088C9;
    cursor: pointer;
    flex-shrink: 0;
}

.wizard-main .checkbox-inline label {
    font-size: 1.25rem;
    color: #20254B;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    font-family: 'Futura', sans-serif;
}

/* ─── Phone selector ─── */
.wizard-main .phone-input-group {
    display: flex;
    height: 3rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    overflow: visible;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
    position: relative;
}

.wizard-main .phone-input-group:focus-within {
    border-color: #0088C9;
    box-shadow: 0 0 0 3px rgba(0, 136, 201, 0.12);
}

/* Dropdown wrapper */
.wizard-main .phone-dropdown {
    position: relative;
    flex-shrink: 0;
    border-right: 1px solid #d1d5db;
    border-radius: 12px 0 0 12px;
    overflow: visible;
}

/* Botón trigger */
.wizard-main .phone-trigger {
    height: 3rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.75rem;
    background: rgba(0, 0, 0, 0.051);
    border: none;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    font-family: 'Futura', sans-serif;
    font-size: 1rem;
    color: #20254B;
    white-space: nowrap;
    transition: background 0.15s;
}

.wizard-main .phone-trigger:hover {
    background: rgba(0, 0, 0, 0.08);
}

.wizard-main .phone-iso {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    min-width: 1.75rem;
}

.wizard-main .phone-code {
    font-size: 0.9rem;
    color: #20254B;
}

.wizard-main .phone-chevron {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-left: 2px;
}

/* Lista de opciones */
.wizard-main .phone-dropdown-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    max-height: 260px;
    overflow-y: auto;
    padding: 0.375rem 0;
    list-style: none;
    margin: 0;
}

.wizard-main .phone-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    transition: background 0.1s;
}

.wizard-main .phone-option:hover,
.wizard-main .phone-option.selected {
    background: rgba(0, 136, 201, 0.08);
}

.wizard-main .phone-option .phone-iso {
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 1.75rem;
}

.wizard-main .phone-option .phone-code {
    font-weight: 500;
    min-width: 2.5rem;
}

.wizard-main .phone-option .phone-country {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Input numérico */
.wizard-main .phone-number-input {
    height: 100% !important;
    border: none !important;
    border-radius: 0 12px 12px 0 !important;
    flex: 1 !important;
    box-shadow: none !important;
    padding: 0 1rem !important;
    font-size: 1.25rem !important;
    font-family: 'Futura', sans-serif !important;
    background: transparent !important;
}

/* ─── Botón siguiente ─── */
.wizard-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin-top: 5rem;
    padding: 0;
    border: none;
}

.btn-siguiente {
    min-width: 14.875rem;
    background: #E84472;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background 0.15s;
    line-height: 1;
}

.btn-siguiente svg {
    width: 0.875rem;
    flex-shrink: 0;
}

.btn-siguiente:hover {
    background: #c2185b;
}

.btn-volver {
    background: transparent;
    color: #20254B;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s;
    text-decoration: none;
    line-height: 1;
}

.btn-volver:hover {
    background: #f3f4f6;
}

/* ─── Sidebar de pasos ─── */
.wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wizard-step-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Círculo del número */
.wizard-step-num {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Futura', sans-serif;
    flex-shrink: 0;
    color: #ffffff;
    background: rgba(87, 165, 217, 0.212);
}

.wizard-step-item.active .wizard-step-num {
    background: #0088C9;
    color: #ffffff;
}

.wizard-step-item.completed .wizard-step-num {
    background: #22c55e;
    color: #ffffff;
    font-size: 0;
    position: relative;
}

.wizard-step-item.completed .wizard-step-num::after {
    content: '';
    position: absolute;
    width: 0.875rem;
    height: 0.5rem;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translateY(-15%);
}

/* Texto del paso */
.wizard-step-label-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    line-height: 1.3;
}

.wizard-step-item.active .wizard-step-label-text,
.wizard-step-item.completed .wizard-step-label-text {
    color: #20254B;
}

/* ─── Alertas ─── */
.wizard-main .alert-error,
.wizard-main .alert.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: #dc2626;
    font-family: 'Futura', sans-serif;
}

/* =============================================
   TABLET (≤ 992px)
   ============================================= */

@media screen and (max-width: 992px) {
    .wizard-layout {
        grid-template-columns: 432fr 298fr;
        padding: 2.5rem 5rem 3rem;
        gap: 1.5rem;
    }

    .wizard-card {
        padding: 2.5rem;
        border-radius: 12px;
    }

    .wizard-obligatorio {
        font-size: 1.125rem;
    }

    .wizard-card h2 {
        font-size: 1.5rem;
    }

    .wizard-main .form-group label {
        font-size: 1.125rem;
    }

    .wizard-main .form-group input[type="text"],
    .wizard-main .form-group input[type="email"],
    .wizard-main .form-group input[type="url"],
    .wizard-main .form-group input[type="tel"],
    .wizard-main .form-group select,
    .wizard-main .form-group textarea {
        font-size: 1.125rem;
    }

    .wizard-main .form-group input::placeholder,
    .wizard-main .form-group textarea::placeholder {
        font-size: 1.125rem;
    }

    .wizard-main .radio-option {
        font-size: 1.125rem;
    }

    .wizard-main .checkbox-inline label {
        font-size: 1.125rem;
    }

    .wizard-nav {
        margin-top: 2.5rem;
    }

    .btn-siguiente {
        min-width: 10.375rem;
        font-size: 0.8125rem;
        padding: 0.875rem 1.125rem;
    }

    .btn-siguiente svg {
        width: 0.75rem;
    }

    .btn-volver {
        font-size: 0.8125rem;
        padding: 0.875rem 1.125rem;
    }

    /* Sidebar */
    .wizard-step-num {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .wizard-step-label-text {
        font-size: 1.125rem;
    }

    .wizard-step-item {
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
    }
}

/* =============================================
   MOBILE (≤ 479px)
   ============================================= */

@media screen and (max-width: 479px) {
    .wizard-layout {
        grid-template-columns: 1fr;
        padding: 1.25rem 1.25rem 2.5rem;
        gap: 0.75rem;
    }

    .wizard-sidebar {
        display: none;
    }

    /* Indicador mobile del paso actual */
    .wizard-mobile-step {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        background: #ffffff;
        border-radius: 10px;
        padding: 0.75rem 0.75rem;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        grid-column: 1;
    }

    .wizard-mobile-step .wizard-step-num {
        width: 1.875rem;
        height: 1.875rem;
        font-size: 1.125rem;
        background: #0088C9;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        flex-shrink: 0;
    }

    .wizard-mobile-step .wizard-step-label-text {
        font-size: 1rem;
        font-weight: 500;
        color: #20254B;
        text-transform: none;
        letter-spacing: normal;
    }

    .wizard-card {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .wizard-obligatorio {
        font-size: 1rem;
    }

    .wizard-card h2 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .wizard-main .form-group label {
        font-size: 1rem;
    }

    .wizard-main .form-group input[type="text"],
    .wizard-main .form-group input[type="email"],
    .wizard-main .form-group input[type="url"],
    .wizard-main .form-group input[type="tel"],
    .wizard-main .form-group select,
    .wizard-main .form-group textarea {
        font-size: 0.875rem;
        border-radius: 10px;
    }

    .wizard-main .form-group select {
        border-radius: 10px;
    }

    .wizard-main .phone-input-group {
        border-radius: 10px;
    }

    .wizard-main .form-group input::placeholder,
    .wizard-main .form-group textarea::placeholder {
        font-size: 0.875rem;
    }

    .wizard-main .radio-option {
        font-size: 1rem;
    }

    .wizard-main .checkbox-inline label {
        font-size: 1rem;
    }

    .wizard-nav {
        margin-top: 1.5rem;
        justify-content: flex-end;
    }

    .btn-siguiente {
        min-width: 7.5rem;
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
        border-radius: 10px;
    }

    .btn-siguiente svg {
        width: 0.5rem;
    }

    .btn-volver {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
        border-radius: 10px;
    }
}

/* =============================================
   COUNTRY MULTISELECT
   ============================================= */

.wizard-main .country-multiselect {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wizard-main .selected-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    min-height: 0;
}

.wizard-main .country-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(0, 136, 201, 0.12);
    color: #0088C9;
    border-radius: 6px;
    padding: 0.25rem 0.625rem;
    font-size: 0.9rem;
    font-family: 'Futura', sans-serif;
    font-weight: 500;
}

.wizard-main .country-chip button {
    background: none;
    border: none;
    color: #0088C9;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
}

.wizard-main .country-chip button:hover {
    opacity: 1;
}

.wizard-main .country-search {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1.125rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    outline: none;
    transition: border-color 0.15s;
}

.wizard-main .country-search:focus {
    border-color: #0088C9;
}

.wizard-main .country-dropdown {
    display: none;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.wizard-main .country-dropdown.open {
    display: block;
}

.wizard-main .country-option {
    padding: 0.625rem 1rem;
    font-size: 1rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    cursor: pointer;
    transition: background 0.1s;
}

.wizard-main .country-option:hover {
    background: rgba(0, 136, 201, 0.08);
}

.wizard-main .country-option.selected {
    background: rgba(0, 136, 201, 0.12);
    color: #0088C9;
    font-weight: 600;
}

/* =============================================
   SOCIAL PREFIX INPUT
   ============================================= */

.wizard-main .input-prefix-group {
    display: flex;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.15s;
}

.wizard-main .input-prefix-group:focus-within {
    border-color: #0088C9;
}

.wizard-main .input-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    background: #f9fafb;
    color: #6b7280;
    font-size: 1rem;
    font-family: 'Futura', sans-serif;
    white-space: nowrap;
    border-right: 1.5px solid #d1d5db;
    flex-shrink: 0;
}

.wizard-main .input-prefix-field {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0.875rem 1rem !important;
    font-size: 1.125rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    outline: none;
    background: transparent;
}

/* =============================================
   FILE UPLOAD
   ============================================= */

.wizard-main .file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 1.125rem 1.5rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 1rem;
    font-family: 'Futura', sans-serif;
    color: #6b7280;
    background: #fafafa;
}

.wizard-main .file-upload-label:hover {
    border-color: #0088C9;
    background: rgba(0, 136, 201, 0.04);
    color: #0088C9;
}

.wizard-main .file-upload-label svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.wizard-main input[type="file"].file-hidden {
    display: none;
}

.wizard-main .file-preview-img {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.wizard-main .file-preview-img img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

.wizard-main .file-preview-pdf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    margin-top: 0.25rem;
    gap: 0.75rem;
}

.wizard-main .file-preview-pdf svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #E84472;
}

.btn-file-reupload,
.btn-file-delete {
    font-size: 0.8rem;
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: opacity 0.15s;
}

.btn-file-reupload {
    background: #0088C9;
    color: #fff;
}

.btn-file-delete {
    background: #ef4444;
    color: #fff;
}

.btn-file-reupload:hover,
.btn-file-delete:hover {
    opacity: 0.85;
}

/* ─── Preview imagen de producto ─── */
.wizard-main .file-img-preview {
    display: none;
    margin-bottom: 0.5rem;
}

.wizard-main .file-img-preview img {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

/* ─── Feedback PDF cargado ─── */
.wizard-main .file-pdf-feedback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.5rem;
    font-size: 0.875rem;
    color: #16a34a;
    margin-bottom: 0.375rem;
}

.wizard-main .file-pdf-feedback svg {
    flex-shrink: 0;
}

.wizard-main .file-pdf-feedback .file-pdf-name {
    color: #374151;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 20rem;
}

/* ─── Link agregar catálogo ─── */
.wizard-main .link-agregar {
    background: none;
    border: none;
    color: #0088C9;
    font-family: 'Futura', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    text-decoration: underline;
}

.wizard-main .link-agregar:hover {
    opacity: 0.75;
}

/* =============================================
   PRODUCTO CARD (PASO 5)
   ============================================= */

.wizard-main .producto-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.wizard-main .producto-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.wizard-main .producto-num {
    font-size: 0.875rem;
    font-family: 'Futura', sans-serif;
    color: #9ca3af;
    margin-bottom: 0.25rem;
    display: block;
}

.wizard-main .producto-card h4 {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.wizard-main .btn-eliminar-producto {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.85rem;
    font-family: 'Futura', sans-serif;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.btn-agregar-producto {
    background: #6B4FE7;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s;
    margin-top: 0.5rem;
}

.btn-agregar-producto:hover {
    background: #5a3ed4;
}

.link-agregar {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #0088C9;
    font-size: 0.9rem;
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem 0;
    margin-top: 0.5rem;
}

.link-agregar:hover {
    text-decoration: underline;
}

/* =============================================
   CHECKBOX SUBIR MÁS TARDE
   ============================================= */

.wizard-main .subir-tarde-check {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.wizard-main .subir-tarde-check input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: #0088C9;
}

/* =============================================
   REVIEW / PASO 6
   ============================================= */

.wizard-main .review-section {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.wizard-main .review-section h3 {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 1rem 0;
}

.wizard-main .review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.wizard-main .review-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.wizard-main .review-item.full-width {
    grid-column: 1 / -1;
}

.wizard-main .review-label {
    font-size: 0.8rem;
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wizard-main .review-value {
    font-size: 1rem;
    font-family: 'Futura', sans-serif;
    color: #20254B;
}

.wizard-main .review-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.wizard-main .review-chip {
    background: rgba(0, 136, 201, 0.1);
    color: #0088C9;
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-family: 'Futura', sans-serif;
}

.wizard-main .review-logo {
    max-width: 4rem;
    max-height: 4rem;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.wizard-main .review-product {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.wizard-main .review-product h4 {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Futura', sans-serif;
    color: #20254B;
    margin: 0 0 0.25rem 0;
}

@media screen and (max-width: 479px) {
    .wizard-main .review-grid {
        grid-template-columns: 1fr;
    }

    .wizard-main .input-prefix {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }

    .wizard-main .input-prefix-field {
        font-size: 0.875rem !important;
    }

    .btn-agregar-producto {
        font-size: 0.875rem;
        padding: 0.75rem 1.125rem;
    }
}
