.container{
    width: 89%;
    min-height: 85%;
    float: left;
    padding:0 3%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 9em;
}
.container::before{
    content: "";
    width: 53%;
    height: 100em;
    position: absolute;
    z-index: -1;
    background-color: #71b190;
    top: -36%;
    left: -20%;
    transform: rotate(22deg);
}
.landing-container form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.product-container{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: flex-start;
}

.product-des{
    width: 46%;
    height: auto;
    float: left;
    padding: 0 2%;
    display: flex;
    flex-direction: column;
}
.title-sec{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-sec h2{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 27px;
}
.description-text{
    width: 100%;
    height: auto;
    float: left;
    display: none;
    /* color: #bcbcbc; */
}
.info-sec{
    display: block;
}
.price-sec{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
}
.price-title{
    font-size: 25px;
}
.half-price-sec{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
}
.half-price{
    width: fit-content;
    height: auto;
    float: right;
    background-color: #71b190;
    color: white;
    font-size: 30px;
    padding:1% 2%;
    border-radius: 0;
    text-decoration: line-through;
    border-radius: 14px;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 4%;
}
.half-price i{
    position: absolute;
    color: #71b190;
    left: -7%;
    font-size: 50px;
    z-index: -1;
    /* top: 7%; */
}
.price{
    /* width: 100%; */
    height: auto;
    color: #71b190;
    font-size: 30px;
}
.product-option{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    margin-bottom: 8%;
}
.option-sec{
    width: 50%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
}
.product-colors{
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.option-title{
    margin-bottom: 10px;
}
.product-colors li{
    width: fit-content;
    list-style: none;
    border: 3px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    margin-left: 8px;
}

.product-colors span,.product-colors label,.product-colors button{
    width: 22px;
    height: 22px;
    float: left;
    margin: 1%;
    /* padding: 11px; */
    margin: 2px;
    border-radius: 100px;
    cursor: pointer;
}
.product-colors button{
    background: unset;
    width: 35px !important;
    height: 35px !important;
}
.color-red{
    background-color: red;
}
.color-blue{
    background-color: blue;
}

.quantity-sec{
    width: 7em;
    height: auto;
    float: left;
    display: flex;
    align-items:center;
    border: 1.5px solid black;
}
.quantity-sec button{
    width: 30%;
    height: auto;
    float: left;
    background-color: transparent;
    border: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    cursor: pointer;
}
.quantity-num{
    width: 40%;
    height: auto;
    float: left;
    text-align: center;
    outline: none;
    border: none;
    margin: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.minus-btn{
    border-right: 1.5px solid black !important;
}
.plus-btn{
    border-left: 1.5px solid black !important;
}
.buy-sec{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8%;

}
.buy-btn{
    float: left;
    padding: 0.5em 4em;
    background-color: black;
    color: white;
    border: 2px solid black;
    cursor: pointer;
    transition: 0.4s;
}
.buy-btn:hover{
    background-color: white;
    color: black;
    transition: 0.4s;
}
.product-gallery{
    width: 50%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-info-sec{
    width: 100%;
    height: 220px;
    float: left;
    overflow: hidden;
}
.tab-sec{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid gray;
}
.tab-sec li{
    width: fit-content;
    height: auto;
    float: right;
    list-style: none;
    margin-left: 0.5em;
    position: relative;
}
.tab-btn{
    width: fit-content;
    height: auto;
    padding: 0.4em 1em;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
}
.tab-btn::after{
    content: "";
    width: 0%;
    position: absolute;
    bottom: -1.5px;
    right: 0;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}
.tab-active::after{
    width: 100%;
    border-color: #71b190;
    transition: 0.3s;

}
.product-info{
    width: 98%;
    height: 170px;
    float: left;
    overflow-y: auto;
    margin-top: 2%;
    padding-left: 2%;
}
.product-info p{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    line-height: 33px;
}
/* width */
.product-info::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .product-info::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(203, 203, 203); 
    border-radius: 10px;
  }
   
  /* Handle */
  .product-info::-webkit-scrollbar-thumb {
    background: #71b190; 
    border-radius: 10px;
  }
  
  Handle on hover
  .product-info::-webkit-scrollbar-thumb:hover {
    background: #5bb084; 
  }

.detail-btn{
    width: fit-content;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 9px;
    font-size: 16px;
    border: 2px solid #71b190;
    background-color: transparent;
    color: #71b190;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background-color: white;
}
.detail-btn .fa-minus{
    position: absolute;
    z-index: -1;
    opacity: 1;
}
.detail-btn .fa-plus{
    opacity: 0;
}