/* ---------------------------------------------------------
   EVENTFORM WIZARD – CLEAN, THEME-INHERITED VERSION
   Prefijo: ef-
   No colores fijos, no tipografías fijas, fondo transparente
---------------------------------------------------------- */

/* CONTENEDOR PRINCIPAL */
.ef-wizard {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: transparent;
}

/* PASOS SUPERIORES */
.ef-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

.ef-step {
    text-align: center;
    flex: 1;
    font-size: 12px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.ef-step.active {
    opacity: 1;
    font-weight: 600;
}

.ef-step.completed {
    opacity: 0.8;
}

/* PROGRESS BAR */
.ef-progress-bar {
    position: relative;
    height: 4px;
    background: currentColor;
    opacity: 0.2;
    border-radius: 2px;
    margin: 10px 0 25px;
    overflow: hidden;
}

.ef-progress-fill {
    height: 100%;
    width: 0;
    background: currentColor;
    opacity: 0.8;
    transition: width 0.3s ease;
}

/* CONTENIDO DE CADA PASO */
.ef-step-content {
    display: none;
}

.ef-step-content.active {
    display: block;
}

/* CAMPOS */
.ef-field {
    margin-bottom: 15px;
}

.ef-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.ef-field input[type='text'],
.ef-field input[type='email'],
.ef-field input[type='number'],
.ef-field input[type='date'],
.ef-field select,
.ef-field textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid currentColor;
    background: transparent;
}

/* BOTONES */
.ef-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.ef-buttons .button,
.ef-btn-next,
.ef-btn-prev,
.ef-btn-submit {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Ocultar elementos */
.ef-hidden {
    display: none !important;
}

/* INLINE GROUPS */
.ef-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ef-inline .ef-field {
    flex: 1;
    min-width: 0;
}

/* CHECKBOX GROUP */
.ef-checkbox-group label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

/* SUMMARY */
.ef-summary {
    padding: 20px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
    border: 1px solid currentColor;
    opacity: 0.8;
}

.ef-summary h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ef-summary-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid currentColor;
    opacity: 0.8;
}

.ef-summary-row:last-child {
    border-bottom: none;
}

.ef-summary-icon {
    width: 20px;
    opacity: 0.8;
}

/* TOTAL BOX */
.ef-total-box {
    margin-top: 18px;
    padding: 15px;
    border: 2px solid currentColor;
    border-radius: 6px;
    text-align: center;
}

.ef-total-box h4 {
    margin: 0 0 8px;
    font-size: 18px;
    text-transform: uppercase;
}

.ef-total-amount {
    font-size: 26px;
    font-weight: 700;
}