/* Product Cards Styles */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1d1d1d;
}

.product-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-card {
        margin-bottom: 30px;
    }
    
    .product-image {
        height: 200px;
    }
} 