/* SEZIONE PRODOTTI */
.product-section {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.product-section .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-hero-gradient);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    background: var(--bg-white);
    color: var(--color-primary-dark);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.product-content {
    padding: var(--spacing-md);
}

.product-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-tight);
}

.product-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-relaxed);
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.product-features li {
    position: relative;
    padding: var(--spacing-xs) 0 6px var(--spacing-xl);
    font-size: var(--font-size-sm);
    color: #555;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
}

.product-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    transition: var(--transition-normal);
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
}

.product-btn:hover {
    background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary-darker));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
    text-decoration: none;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
    .product-section .container {
        max-width: 1200px;
    }
    
    .product-card {
        max-height: calc(100vh - 280px);
    }
    
    .product-image {
        height: 220px;
    }
}

@media (min-width: 992px) {
    .product-section {
        scroll-margin-top: var(--navbar-height);
    }
    
    .product-content {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .product-section {
        height: auto;
        min-height: 100vh;
        padding: var(--section-padding-mobile);
    }
    
    .product-section .container {
        height: auto;
        justify-content: flex-start;
        padding-top: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}
