.product-card {
    border: 1px solid #EEEEEE;
    background-color: #FFFFFF;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.product-card:hover {
    border: 1px solid #C40F0F;
}
.product-card__image {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #FAFAFA;
    aspect-ratio: 1 / 1;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-info {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.product-card-info-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-info-content-category {
    color: #BDBDBD;
    font-weight: 300;
    font-size: 12px;
    line-height: 137%;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.product-card-info-content-category:hover {
    color: #c40f0f;
}


.product-card-info-content-title {
    display: block;
    min-height: 48px;
    text-decoration: none;
}

.product-card-info-content-title h3 {
    color: #212121;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 150%;
    letter-spacing: 0.01em;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card-info-content-price {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    color: #C40F0F;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
}

.product-card-info-content-price__current,
.product-card-info-content-price__current .amount,
.product-card-info-content-price__current bdi {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.product-card-info-content-price--contact,
.product-card-info-content-price--detail {
    font-size: 18px;
}

.product-card-info-content-price__label {
    display: inline-flex;
}

.the-price-has-not-decreased,
.the-price-has-not-decreased .amount,
.the-price-has-not-decreased bdi {
    color: #BDBDBD;
    font-weight: 300;
    font-size: 12px;
    line-height: 137%;
    letter-spacing: 0.01em;
    text-decoration: line-through;
}

.product-card-info-addtocart {
    flex-shrink: 0;
}

.product-card-info-addtocart__button {
    width: 48px;
    height: 48px;
    padding: 12px;
    border: none;
    border-radius: 24px;
    background-color: #FFF7F7;
    color: #C40F0F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.product-card-info-addtocart__button:hover,
.product-card-info-addtocart__button:focus-visible {
    background-color: #FED3D3;
}

.product-card-info-addtocart__button.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.product-card-info-addtocart__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card-info-addtocart__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.product-card-info-addtocart__icon path {
    stroke: #C40F0F;
}

.product-card-info-addtocart__icon--plus {
    position: absolute;
    opacity: 0;
    transform: scale(0.85);
}

.product-card-info-addtocart__button:hover .product-card-info-addtocart__icon--cart,
.product-card-info-addtocart__button:focus-visible .product-card-info-addtocart__icon--cart {
    opacity: 0;
    transform: scale(0.85);
}

.product-card-info-addtocart__button:hover .product-card-info-addtocart__icon--plus,
.product-card-info-addtocart__button:focus-visible .product-card-info-addtocart__icon--plus {
    opacity: 1;
    transform: scale(1);
}

@media screen and (max-width: 768px) {
    .product-card {
        padding: 12px;
        gap: 12px;
    }

    .product-card-info {
        gap: 12px;
        flex-direction: column;
    }

    .product-card-info-content-title h3 {
        font-size: 15px;
    }

    .product-card-info-content-price {
        font-size: 18px;
    }

    .product-card-info-content-price--contact,
    .product-card-info-content-price--detail,
    .product-card-info-content-price {
        font-size: 14px !important;
    }
}
