/* Catalogo Prodotti CSS */

.hero-catalogo {
    background: linear-gradient(135deg, #55d1f0 0%, #3a8ea5 100%);
    color: white;
}

.hero-catalogo .display-4 {
    font-weight: 300;
    margin-bottom: 1rem;
}

.categoria-section {
    border-bottom: 1px solid #e9ecef;
}

.categoria-section:last-child {
    border-bottom: none;
}

.categoria-section h2 {
    color: #495057;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.categoria-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007bff;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.precio-info {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-catalogo .display-4 {
        font-size: 2rem;
    }
    
    .categoria-section h2 {
        font-size: 1.5rem;
    }
}