@charset "utf-8";
/* CSS Document */
.productpage_header{
	display: flex;
	width: 100%;
}
#header-cart-icon{
	position: absolute;
	right: 10px;
}
.productpageimgcontainer{
	width: 500px;
	height: 600px;
	margin-left: 100px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.productpagemain_container{
	display: flex;
	gap :30px;
}
.product_title_div{
	width: 300px;	
}
.product_name{
	font-size: 30px;
}
.price{
	 color: #27ae60;
	font-weight: bold;
}
#coverimage{
	background: #808080;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
    align-items: center;
    height: 100%;
}
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    
	
}

.slider {
    display: flex;
    transition: transform 0.5s ease;

}

.slide {
width: 500px;
height: 600px;
object-fit: cover;
cursor: zoom-in;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.15);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    font-size: 18px;

}
.prev {
    left: 10px;
    
}

.next {
    right: 10px;
}


button:hover {
    background-color: rgba(0, 0, 0, 0.8);
	
}
.cart-button {
    background-color: #65426F;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    display:flex;
    align-items: center;
	position: relative;
	
}

/* size buttons css */

.radio_group{
	display: flex;
	gap : 10px;
}
.radio_group label{
	width: auto;
	height: 50px;
	align-items: center;
	justify-content: center;
	display: flex;
	border: 2px solid #F1F1F1;
	padding-left: 10px;
	padding-right: 10px;
}
input:checked + label{
	background: #65426F;
	border-color: #65426F;
	color:black;
}
.radio_group input{
	display: block;
}

/* left side div content css */
.left_side_div{
	display: block;
}
.quantity_container{
	display: inline-block;
	height: 30px;
}
.quantity_container button{
	position: relative;
	
}
.quantity_container input{
	position: relative;
	height: 30px;
	font-size: 16px;
}
.storeimg_container{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.storeimg_container img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	
}
.product_store_container{
	width: 200px;
	
	
}
.checked{
            color: #f39c12;
            margin-right: 5px;
        }
		
     .fa-star-half-o{
	 color: #f39c12;
     margin-right: 5px;

}
.fa-star-o{
	 color: #f39c12;
     margin-right: 5px;
}
.rating {
            display: flex;
            align-items: center;
        }

/* Responsive section */
@media only screen and (max-width: 700px){
	.productpageimgcontainer{
     display: block;
	width: 100%;
	height: 600px;
	margin-left: 0;
	margin-top: 30px;
	margin-bottom: 30px;
}

.productpagemain_container{
	display: block;
	
}

.slide {
display: block;	
margin: auto;
height: 500px;
object-fit: cover;
cursor: zoom-in;
max-width: 400px;

}
	.slide_div{
		width:100%;
		display: grid;
		height: 500px;
		
	}
	.productpageimgcontainer{
		height: 500px;
	}
	
.left_side_div{
    width:100%;
}
}