.products-section {
    background-color: #f9fafc;
}

.section-title {
    font-weight: 700;
    color: #1b263b;
}

.section-subtitle {
    font-size: 1rem;
    color: #6c757d;
}

.product-card {
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .product-card .image-wrapper {
        height: 230px;
        overflow: hidden;
        background-color: #f3f3f3;
    }

        .product-card .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

    .product-card:hover .image-wrapper img {
        transform: scale(1.08);
    }

.product-content h5 {
    color: #003566;
}

.price {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .product-card .image-wrapper {
        height: 180px;
    }
}
