/* Pagina Prodotto CSS */

.breadcrumb-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    background-color: transparent;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.prodotto-detail {
    min-height: 70vh;
}

.prodotto-info .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.prodotto-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.prodotto-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.description-content {
    line-height: 1.8;
    color: #495057;
}

.prodotto-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.precio-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.precio-principal {
    margin-bottom: 0.5rem;
}

.precio-principal .currency {
    font-size: 1.2rem;
    color: #6c757d;
    vertical-align: top;
}

.precio-principal .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.precio-periodo {
    font-size: 0.9rem;
}

.precio-consulta {
    color: #28a745;
}

.precio-consulta i {
    font-size: 2rem;
    color: #28a745;
}

.contact-form h5 {
    color: #495057;
    margin-bottom: 1rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
}

.prodotti-correlati {
    border-top: 1px solid #dee2e6;
}

.prodotti-correlati .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.prodotti-correlati .card:hover {
    transform: translateY(-3px);
}

.btn-outline-primary {
    border-radius: 6px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .prodotto-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .precio-principal .amount {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .prodotto-title {
        font-size: 1.5rem;
    }
    
    .precio-principal .amount {
        font-size: 1.8rem;
    }
}