/* Estilos del Wizard de Cotización */
#wizard {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

#livePrice {
    font-size: 32px;
    font-weight: bold;
    color: #ff6a00;
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step {
    display: none;
    margin-bottom: 30px;
}

.step.active {
    display: block;
}

.step h3 {
    margin-bottom: 20px;
    color: #333;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

button {
    background: #ff6a00;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #ff7f1f;
}

button.secondary {
    background: #6c757d;
}

button.secondary:hover {
    background: #5a6268;
}

#mobileAddress {
    margin-top: 20px;
    padding: 20px;
    background: #e9ecef;
    border-radius: 6px;
}

#mobileAddress input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-top: 10px;
}

#wizard-summary {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-total {
    font-size: 20px;
    font-weight: bold;
    color: #ff6a00;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ff6a00;
}

.deposit-section {
    margin: 20px 0;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
}

.deposit-section label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.deposit-section input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

#bookButton {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background: #28a745;
}

#bookButton:disabled {
    background: #6c757d;
    cursor: not-allowed;
}