/* detail product client */
.prod-detail-container {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
}
/* banner */
.banner-container {
    float: left;
    width: 100%;

    
}
.banner-container img {
    width: 100%;
}

/* prod-detail-section */
.prod-detail-section {
    float: left;
    width: 100%;
    margin-top: 40px;
    
}
.prod-detail-box {
    width: 90%;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
}
.prod-detail-section-left, .prod-detail-section-right {
    width: 50%;
}

.prod-detail-img {
    width: 100%;
    /* background-color: aqua; */
}
.prod-detail-img img {
    width: 90%;
    border-radius: 10px;
}

.wp-prod-detail-desc {
    width: 100%;

    /* background-color: yellow; */
}
.prod-detail-name {
    font-weight: bold;
    font-size: 22px;
    color: #069347;
}
.prod-detail-desc {
    width: 100%;
    margin-top: 10px;
}
.prod-detail-type {
    margin-top: 10px;
}
.prod-detail-type-new {
    margin: 25px 0;
}
.rdo-prod-type {
    margin: 0 5px;
    padding: 7px 15px;
    border: 2px solid lightgray;
    border-radius: 7px;
    cursor: pointer;
    font-size: 15px;
}
.rdo-prod-type:hover {
    /* border: 3px solid red; */
    background-color: #069347;
    color: white;
}
.rdo-prod-type.active {
    border: 2px solid #069347 ;
}

.sel-prod-type {
    height: 22px;
}
.wp-prod-quantity {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    /* background-color: aqua; */
}
.quantity-lablel {
    /* width: 10%; */
    /* background-color: yellow; */
    text-align: left;
}
.quantity-control {
    /* margin-left: 10px; */
    display: flex;
}
.minus-control-detail {
    width: 40px;
    padding-left: 10px;
    padding-top: 3px;
    cursor: pointer;
    /* background-color: yellow; */
}
.minus-control-detail img {
    width: 100%;
}
.plus-control-detail {
    width: 40px;
    /* padding-left: 10px; */
    padding-top: 3px;
    cursor: pointer;
    /* background-color: yellow; */
    
}
.plus-control-detail img {
    width: 100%;
}
.quantity-control input {
    width: 30px;
    padding: 0 5px;
    font-size: 16px;
    text-align: center;
    border: none;
    background-color: white;
}

.prod-detail-price {
    margin: 20px 0;
    padding: 15px;
    background-color: #f5f5f5;
}


/* CART */
.add-cart {
    width: 100%;
    margin-top: 30px;
    /* text-align: center; */
    display: flex;
}

.wp-btn-add-cart {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.wp-btn-buy-now {
    width: 50%;
    /* background-color: yellow; */
}
/* .wp-btn-add-cart:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} */

.wp-btn-add-cart, .wp-btn-buy-now {
    /* width: 50%; */
    text-align: center;
    /* font-size: 20px; */
}
.wp-btn-add-cart input, .wp-btn-buy-now input {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    /* font-weight: bold;
    font-size: 20px;     */
    padding: 15px 0px;
    cursor: pointer;

    border-radius: 50px;
    border: none;
}

.cart-white-icon {
    width: 40px;
    margin-right: 15px;
}
.cart-white-icon img {
    width: 80%;
}
.btn-add-cart {
    /* font-weight: bold; */
    color: #029346;
    
}
.btn-add-cart:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.btn-buy-now {
    background-color: #029346;
    color: white;
    border: 1px solid white;
}
.btn-buy-now:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


/* OTHER PRODUCT */
.other-prod-section {
    float: left;
    width: 100%;
    margin: 50px 0;
    /* background-color: yellow; */
}
.other-prod-section-mobi {
    float: left;
    width: 100%;
    margin: 50px 0;
    display: none;
}
.other-prod-title {
    width: 100%;
    margin-top: 20px;
    font-size: 40px;
    font-weight: 500;
    color: #2c3145;
    font-family: 'Helve', sans-serif;
}

.prevDetailBox, .nextDetailBox {
    float: left;
    width: 5%;
    text-align: center;
}
.prevDetailBox button {
    width: 40px;
    height: 40px;
    font-size: 30px;
    border: none;
    border-radius: 50%;
    background-color: lightgray;
    cursor: pointer;
}
.prevDetailBox button:hover {
    background-color: #069347;
    color: white
} 
.nextDetailBox button {
    width: 40px;
    height: 40px;
    font-size: 30px;
    border: none;
    border-radius: 50%;
    background-color: lightgray;
    cursor: pointer;
}

.nextDetailBox button:hover {
    background-color: #069347;
    color: white
}

.product-detail-slider {
    float: left;
    width: 90%;
    /* background-color: aqua; */
}
.boxHeight {
    min-height: 450px;
}


@media screen and (max-width: 768px) {
    .prod-detail-box {
        display: block;
    }
    .prod-detail-section-left, .prod-detail-section-right {
        width: 100%;
        /* background-color: yellow; */
    }
    .wp-prod-detail-desc {
        width: 100%;
        margin-top: 10px;
    }
    .prod-detail-name, .prod-detail-desc, .prod-detail-type-new, .wp-prod-quantity {
        font-size: 16px;
        
    }

    .prod-detail-img img {
        width: 100%;
    }
    .btn-add-cart {
        font-size: 14px;
    }
    .wp-btn-buy-now input {
        font-size: 14px;
    }

    .other-prod-title {
        font-size: 30px;
    }


    .prevDetailBox, .nextDetailBox {
        display: none;
    }

    /* OTHER PRODUCT */
    .other-prod-section {
        display: none;
    }
    .other-prod-section-mobi {
        display: block;
    }

    .rdo-prod-type {
        margin: 0 1px;
        padding: 7px 10px;
        border: 2px solid lightgray;
        border-radius: 7px;
        cursor: pointer;
        font-size: 15px;
    }
}
