.productDetails{
    width:95%;
    padding: 60px 10vw;
    display: flex;
    justify-content: space-between;
}

.imageSlider{
    width: 500px;
    height: 500px;
    position: relative;
    background-image: url("../images/Product1.jpeg");
    background-size: cover;
}


.productImages img{
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
}

.productImages img.active{
    opacity: 0.5;
}
.details{
    width: 50%;
}

.details .productBrand{
    text-transform: capitalize;
    font-size: 30px;
}

.details .productShortDes{
    font-size: 25px;
    line-height: 30px;
    height: auto;
    margin: 15px 0 30px;
}

.productPrice{
    font-weight: 700;
    font-size: 30px;
}

.productActualPrice{
    font-size: 30px;
    opacity: 0.5;
    text-decoration: line-through;
    margin: 0 20px;
    font-weight: 300;
}

.productDiscount{
    color: #ff7d7d;
    font-size: 20px;
}

.productSubHeading{
    font-size: 20px;
    text-transform: uppercase;
    margin: 60px 0 10px;
    font-weight: 300;
}

.sizeRadioBtn{
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 15px;
    border: 1px solid #383838;
    border-radius: 50%;
    margin: 10px;
    margin-left: 0;
    line-height: 80px;
    text-transform: uppercase;
    color: #383838;
    cursor: pointer;
}

.sizeRadioBtn.check{
    background: #383838;
    color: #fff;
}

.btn{
    width: 48%;
    padding: 20px;
    border-radius: 5px;
    background: none;
    border: 1px solid #383838;
    color: #383838;
    font-size: 20px;
    cursor: pointer;
    margin: 20px 0;
    text-transform: capitalize;
}

.btn:hover{
    box-shadow: 0 0 5px 5px #383838 inset;
    background-color: #383838;
    color: white;
  }

.cartBtn{
    margin-right: 2%;
    background: #383838;
    color: #fff;
}
.detailDes{
    padding: 0 10vw;
    text-transform: capitalize;
}

.heading{
    font-size: 30px;
    margin-bottom: 30px;
}

.des{
    color: #383838;
    line-height: 25px;
}