.product-details{
	width: 100%;
	padding: 60px 10vw;
	display: flex;
	justify-content: space-between;
}

.image-slider{
	width: 500px;
	height: 500px;
	position: relative;
	background-image: url('../assets/card2');
	background-size: cover;
}

.product-images{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	background: #fff;
	border-radius: 5px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 100px;
	grid-gap: 10px;
	padding: 10px;
}

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

.product-images img.active{
	opacity: 0.5;
}

.details{
	width: 50%;
}

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

.details .product-short-des{
	font-size: 16px;
	line-height: 30px;
	height: auto;
	margin: 15px 0 30px;
}

.product-price{
	font-weight: 700;
	font-size: 38px;
}

.product-actual-price{
	font-size: 22px;
	opacity: 0.5;
	text-decoration: line-through;
	margin: 0 20px;
	font-weight: 300;
}

.product-discount{
	color: red;
	font-size: 16px;
}

.product-sub-heading{
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 300;
}

.system-radio-btn{
    display: inline-block;
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #383838;
    border-radius: 50%;
    margin: 10px;
    margin-left: 0;
    line-height: 65px;
    text-transform: uppercase;
    color: #383838;
    cursor: pointer;
}

.system-radio-btn.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;
}

.cart-btn{
    margin-right: 2%;
    background: #383838;
    color: #fff;
}

.btn:hover{
	background: #383838;
	color: #fff;
}

.detail-des{
	padding: 0 10vw;
	text-transform: capitalize;
}

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

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




































































































