﻿.product-item .text-price {
    color: var(--accent-color);
}

.product-item .image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

    .product-item .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.product-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.product-item .image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}

.product-item:hover .image-wrapper::after {
    background: rgba(0,0,0,0.35);
}

@media (max-width: 374px) {
    .modal-footer .btn {
        padding: 10px !important;
    }
}
