.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1; /* Tỉ lệ vuông, có thể đổi thành 4/3 hoặc 16/9 nếu muốn */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    transition: border 0.3s;
    border: 2px solid transparent;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-img-wrapper:hover {
    border: 2px solid #ff0000;
}
.product-img-wrapper:hover img {
    transform: scale(1.08);
}

.product-name {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}
