.product-card {
    position: relative;
    background-color: #F6F6F6;
    padding: 1rem 1rem 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.off-badge {
    position: absolute;
    background-color: #D5A84A;
    width: 2.25rem;
    height: 4.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 1rem;
    z-index: 1;
    writing-mode: sideways-lr;
    letter-spacing: .2em;
    font-size: 1.125rem;
    border-radius: 0 0 .5rem .5rem;
}



.product-card__title {
    font-weight: normal;
    font-family: var(--main-font);
}

.product-card__title a {
    font-size: 1.125rem;
    line-height: 2rem;
    color: #696969;
    font-weight: normal;
    margin-bottom: 0.5rem;
    transition: 0.5s;
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__image img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: #fff;
}

.product-card:hover .product-card__title a {
    color: #002D50;
    ;
}

.product-card:hover .product__more {
    background-color: #002D50;
    color: #fff;
}

.product__more {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002D50;
    font-size: 1rem;
    height: 2.875rem;
    border-radius: 0.375rem;
    border: 1px solid #002D50;
    margin-top: 1.25rem;
    gap: .5rem;
    transition: 0.5s;
}

.product__more i {
    font-size: 0.75rem;
}

.product__price {
    display: flex;
    align-items: center;
}

.product__price__label,
.product__price .amount {
    color: #002D50;
    font-weight: normal;
    font-size: 1rem;
}

.product__price del {
    order: 1;
    margin-right: 1rem;
}

.product__price del .amount {
    color: #696969;
    font-size: 0.875rem;
}

.product__more.not-exist {
    background-color: transparent !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

@media (max-width:767.98px) {
    .product-card__title a {
        font-size: 0.9375rem;
    }

    .product__price__label,
    .product__price .amount {
        font-size: 0.875rem;
    }

    span.product__price__label {
        display: none;
    }

    .product-card img {
        border-radius: .75rem;
    }

    .product-card {
        padding: 0.75rem;
    }

    .product__more {
        font-size: .875rem;
        height: 2.5rem;
        margin-top: 0.5rem;
    }

}