.form-step.step-extras {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.form-step.step-extras h2 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--theme-palette-color-1);
}

.form-step.step-extras p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.precio-extra {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-palette-color-1);
    margin-bottom: 30px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.extra-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.14);
    position: relative;
}

.extra-card.selected {
    border-color: var(--theme-palette-color-1);
    background-color: rgba(255,255,255,0.05);
}

.extra-card img {
    width: 100%;
    max-height: 130px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.extra-card h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.extra-card p {
    font-size: 14px;
    color: #eee;
    margin-bottom: 1rem;
}

.extra-card button.seleccionar-extra {
    border: 1px solid var(--theme-palette-color-1);
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.extra-card.selected button.seleccionar-extra {
    background-color: var(--theme-palette-color-1);
}

.extra-card button.seleccionar-extra:hover {
    background-color: var(--theme-palette-color-1); /* color rojo primario */
}

/* Responsive */
@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .extra-card h3 {
        font-size: 15px;
    }

    .extra-card p {
        font-size: 13px;
    }
}




.extra-horario {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    margin-bottom: 20px;
    border: 2px solid rgba(255,255,255,0.14)
}

.extra-horario h3 {
    font-weight: 400;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.extra-horario .precio-extra {
    background-color: var(--theme-palette-color-1);
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 400;
}

.extra-horario input[type="range"].slider-horas {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #000;
    outline: none;
    transition: background 0.3s ease;
}

.extra-horario input[type="range"].slider-horas::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--theme-palette-color-1);
    border: 2px solid #fff;
    cursor: pointer;
    margin-top: -7px;
    transition: background 0.3s ease;
}

.extra-horario input[type="range"].slider-horas::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
}

.marcadores-horas {
    display: flex!important;
    justify-content: space-between!important;
}

.marcadores-horas span {
    font-size: 12px;
}



.slider-horas .noUi-connect {
    background: var(--theme-palette-color-1, #e63946);
}

.slider-horas .noUi-handle {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.slider-horas .noUi-target {
    background: #eee;
    border: none;
    height: 10px!important;
    border-radius: 50%;
}


.noUi-horizontal .noUi-handle {
    width: 20px!important;
    height: 20px!important;
    border-radius: 50%!important;
    top: -3px!important;
}

.noUi-handle:after, .noUi-handle:before {
    display: none!important;
}

.noUi-handle.noUi-handle-upper {
    right: -10px!important;
}
