

.card {
    border: transparent;
    border-radius: 0;
    align-items: center;
    transition: border-color 0.8s ease;
}

.card-text {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card img {
    border-radius: 0;
}

.card a {
    text-decoration: none;
    color: #7A7A7A;
}

.card .go-to-product {
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 0;
    border-top: 1px solid #826F6659;
    border-bottom: 1px solid #826F6659;
    width: 75%;
    text-align: center;
}

.text-title {
    text-align: start;
    line-height: 1.5rem;
    color: #3A3845;
    font-size: 20px;
    font-weight: 400;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-price {
    text-align: start;
    color: rgb(122, 122, 122);
    font-weight: 400;
    line-height: 23px;
    font-size: 13px;
}

.new-price {
    color: rgb(0, 31, 51);
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}

@media (max-width: 1200px) {
    .card-text {
        gap: 10px;
    }


    .text-title {
        text-align: center;
        font-size: 14px;
    }

    .price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .text-price {
        text-align: center;
        font-size: 13px;
    }

    .new-price {
        text-align: center;
        font-size: 16px;
    }
}

.card:hover {
    border: 1px solid #826F666B;
}

.img-wrapper {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 97%;
}

.card img {
    width: 100%;
    max-height: 100%;
}

.go-to-product {
    font-size: 14px;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(17, 15, 15, 0.87);
    border-bottom: 1px solid rgba(17, 15, 15, 0.87);
    width: fit-content;
    color: #3A3845;
    text-align: center;
}