﻿/*------------hFlex--------------*/
.hFlex {
    display: flex;
}

.layouttt.Cvertical {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.layouttt.Cstart {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/*------------Layout Card--------------*/
.productCard {
    background: #ffffff;
    border-radius: 9.88703px;
    display: flex;
    flex-direction: column;
    max-height: 654px;
    padding: 30px 0px 40px 0px;
}

.productCard img {
    display: block;
    max-width: 178px;
    width: auto;
    height: 155px;
}

.productText {
    font-weight: normal;
    flex-direction: row;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.productText.productInfo {
    -webkit-line-clamp: 2;
    line-height: 20px;
    max-width: 80%;
    height: 40px;
    font-size: 16px;
}

.productPrice {
    max-width: 80%;
    font-size: 27.2789px;
    text-align: center;
    color:var(--primary2) !important;
}

.productText.productDetail {
    -webkit-line-clamp: 3;
    line-height: 20px;
    max-width: 80%;
    font-size: 14px;
    color: #919191;
}

.btnPrice {
    width: 90%;
}

.btnPrice .Button {
    width: 100% !important;
    height: 55px;
    font-size: 20px !important;
    margin: 0px !important;
    background: var(--primary2) !important;
}

.btnPrice .ind {
    width: 100% !important;
    height: 100% !important;
    font-size: 22.9378px !important;
    margin: 0px !important;
    text-align: center;
    color:var(--tertinary);
}

.productSelector {
    max-width: 80%;
}

.gap-20 {
    gap: 20px;
}

@media (max-width: 450px) {
    .productText.productInfo {
        font-size: 11px;
        margin-top: 5%;
        -webkit-line-clamp: 2;
        line-height: 16px;
    }

    .productPrice {
        font-size: 16px;
        margin-top: 2%;
    }

    .btnPrice .Button {
        font-size: 16px !important;
        min-width:  100% !important;
        height: 40px;
    }

    .btnPrice .ind {
        font-size: 16px !important;
        min-width: 90% !important;
    }

    .productPriceOld {
        margin-top: 3%;
    }

    .productText.productDetail {
        -webkit-line-clamp: 2;
        line-height: 14px;
        margin-top: 0%;
        height: 8%;
        font-size: 10px;
    }

    .productSelector{
        margin-top: 1%;
    }
}


