﻿.productTextArea {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.add-to-basket-button {
    font-family: Oswald;
    font-size: 13px;
    font-weight: 600;
    line-height: 19.27px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #262626;
    padding: 7px;
    border: 1px solid #CD1E1E;
    background: #fff;
    text-align: center;
    transition: .4s;
}

    .add-to-basket-button:hover {
        background: #CD1E1E;
        color: #fff;
        transition: .4s;
    }


.productCard .card-body {
    padding: 0;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

    .productCard .card-body .cardTitle {
        color: #262626 !important;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 38px;
    }

    .productCard .card-body .cardPrice {
        color: #CD1E1E;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.16px;
    }