/* Estilos existentes... */
#mi-config-lentes {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #D4AF37;
    /* Borde dorado sutil */
    background: #fff;
    /* Fondo blanco limpio */
    border-radius: 8px;
    position: relative;
}

.config-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.config-buttons button {
    padding: 12px 24px;
    border: 2px solid #D4AF37;
    /* Dorado elegante */
    background: #000;
    /* Fondo Negro */
    color: #fff;
    /* Letras Blancas */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    outline: none;
}

.config-buttons button:hover {
    background-color: #333;
    /* Gris oscuro al pasar el mouse */
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.config-buttons button.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B49025 100%);
    /* Dorado al activar */
    color: #fff;
    border-color: #B49025;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

/* WIZARD STYLES */
.config-step {
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.config-step.active-step {
    display: block;
}

.config-step h4 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #000;
    /* Título negro */
}

.btn-atras {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.btn-atras:hover {
    color: #D4AF37;
    /* Dorado al pasar el mouse */
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para la Tabla */
.lentes-price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    border: 2px solid #D4AF37;
    /* Borde dorado para match estético */
}

.lentes-price-table th {
    background: #000;
    /* Cabecera Negra */
    font-weight: 600;
    color: #D4AF37;
    /* Texto Dorado */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
}

.lentes-price-table td {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 15px;
    color: #333;
}

.lentes-price-table tr:last-child td {
    border-bottom: none;
    font-weight: bold;
    background-color: #fffbf0;
    /* Fondo crema muy sutil para el total */
}

/* Estilos para el Modal */
.lentes-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.lentes-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    height: 80vh;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lentes-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 5px;
    cursor: pointer;
    z-index: 10;
}

.lentes-close:hover,
.lentes-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#lentes-modal-body {
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#lentes-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Estilos para la Tarjeta de Descanso */
.descanso-card {
    border: 2px solid #D4AF37;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.descanso-header {
    background: #000;
    /* Fondo Negro */
    color: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
}

.descanso-header h3 {
    margin: 0;
    font-size: 1.4em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.descanso-header h4 {
    margin: 5px 0 0 0;
    font-size: 1.1em;
    color: #D4AF37;
    /* Dorado */
    font-weight: 400;
}

.descanso-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    background: #fff;
    /* Fondo blanco para el contenido */
}

.descanso-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.descanso-list li i {
    color: #D4AF37;
    /* Check dorado */
    margin-top: 4px;
}

.descanso-list li strong {
    color: #000;
    font-weight: 700;
}