﻿/* wwwroot/css/product.css */
.product-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    }
.img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}
.custom-btn-outline {
    border-width: 2px;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s;
}

    .custom-btn-outline:hover {
        transform: scale(1.05);
    }
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}
@media (max-width: 768px) {
    .img-wrapper {
        height: 250px;
    }
}
