
.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* <a> 태그 기본 스타일 제거 */
.product-link {
    color: inherit;
    text-decoration: none;
}

/* 이미지 오버레이 효과 */
.product-image {
    transition: filter 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* 처음엔 투명 */
    transition: background-color 0.3s ease;
    z-index: 1;
}

.ratio:hover .overlay {
    background-color: rgba(0, 0, 0, 0.3); /* 어두워짐 */
}
