/* assets/css/quote.css - Estilos para la página de cotización */

.quote-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero_cotizacion_1.png') center/cover;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.product-selector {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.product-item-quote {
    transition: all 0.3s ease;
    padding: 10px;
    margin-bottom: 10px;
}

.product-item-quote:hover {
    background-color: #f0f7ff;
}

.quantity-input {
    width: 80px;
}

.total-display {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

.progress-bar {
    height: 10px;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

.quote-success {
    text-align: center;
    padding: 40px 0;
}

.quote-success i {
    font-size: 4rem;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-item-quote .col-md-5,
    .product-item-quote .col-md-2,
    .product-item-quote .col-md-1 {
        margin-bottom: 10px;
    }
    
    .quantity-input {
        width: 100%;
    }
}