/* ========== PRODOTTI GRID MODERNA ========== */
.prodotti_sfondo {
    position: relative;
    background: url('../images/bg_5.jpg') center center fixed;
    background-size: cover;
}
.prodotti_sfondo .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 30, 0.75);
    z-index: 1;
}
.prodotti_sfondo .container {
    position: relative;
    z-index: 2;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}
.prodotti_grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.product-card {
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.product-card.card-bg {
	background: #FFFFFF;	
	border-top: 4px solid #1b9ce3;
}
.product-card.card-bg-alt {
    background: rgba(232, 240, 254, 0.95);
	border-top: 4px solid #1b9ce3;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.3);
}
.product-card-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-icon {
    text-align: center;
    margin-bottom: 0.5rem;
}
.product-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1b9ce3, #6a4ee4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 0.6rem;
    border-radius: 50%;
    background-color: rgba(27, 156, 227, 0.1);
    transition: all 0.3s ease;
}
.product-card:hover .product-icon i {
    transform: scale(1.1);
    background-color: rgba(27, 156, 227, 0.2);
}
.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1b9ce3;
    margin-bottom: 1rem;
    border-left: 4px solid #1b9ce3;
    padding-left: 12px;
}
.product-description {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}
.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 1rem 0;
}
.product-gallery img {
    width: 70px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.product-gallery a:hover img {
    transform: scale(1.05);
}
.product-footer {
    margin-top: 1rem;
    text-align: center;
}
.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1b9ce3, #6a4ee4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn-primary {
    background: linear-gradient(135deg, #1b9ce3, #6a4ee4);
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,156,227,0.4);
}
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .product-title { font-size: 1.2rem; }
    .price-value { font-size: 1.4rem; }
    .product-gallery img { width: 55px; }
}
/* Link nelle card prodotti - visibili su sfondo chiaro */
.product-card a:not(.btn) {
    color: #1b9ce3 !important;
    text-decoration: underline;
    transition: all 0.2s;
}
.product-card a:not(.btn):hover {
    color: #6a4ee4 !important;
    text-decoration: none;
}