@charset "utf-8";

body{
	display: block;
	overflow-x: hidden;
}

#logo{
	width: 10%;
	margin-left: 45%;
	margin-top: 10px;
	float: left;
}
#login{
	width:5%;
	height: 20px;
	float: left;
	margin-left: 25% ;
	margin-top: 15px;
	}
#SignIn{
	width:5%;height: 20px;float: left;margin-left: 5px;margin-top: 15px;
}
#header-cart-icon{
	width:5%;height: 0px;float: left;margin-left: 20px;
	margin-top: 15px;
}
#searchinput{
	margin-left:40%; width: 20%;
}
header{
	background: #FFFFFF;
	width: 100%;
	height: 150px;
	 
}

#sidemenu{
	background:#FFFFFF;
	width: 25%;
	height: 465px;
	float: left;
	
}
.nav-menue-option{
	cursor: pointer;
	width: 10%;
	height: 30px;
	float:left;
	text-align: center;
}

 /* category section*/

#category-section{
	background: pink;
	width: 75%;
	height: 165px;
	position: relative;
	justify-content: center;
	display: flex;
	
	
	
	
}
.category-section-image{
	width: 80%;
	height: 60%;
	border-radius: 50%;
	border-style: none;
	margin-left: 10%;
	margin-top: 5px;
	border: none;
	
	
	
}
.category-section-child{
	background: #FFFFFF;
	width: 15%;
	height: 150px;
	margin: 5px 0.5%;
	display: block;
	justify-content: center;
	padding: 2px;
	border-radius: 5px;
	cursor: pointer;
	
   
}
.category-name1{
font-size: 15px	;
	text-align: center;
}




 /* advert-section*/
#advert-section{
	width: 100%;
	background: #808080;
	display: block;
	position: relative;
}
.banner-container {
    position: relative;
    width: 100%;
    overflow: auto;
	background-color: #EFB6B7;
    
	
}
.banner-container::-webkit-scrollbar{
	display: none;
}

.bannerset {
    display: flex;
    transition: transform 0.5s ease;
}

.banner {
    width: 100%;
    height: 200px;
	padding:10px;
	
	border-radius: 20px;
	
}



/* product-view-section*/
#product-view-section{
	margin:10px;
	display: block;
	width: 100%;
	position: relative;
		
}
.product-card-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap:5px;
	
}

.product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            width: 250px;
			height: 450px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;	
			margin: 5px;
		
			
        }

        .product-card:hover {
            transform: translateY(-5px);
			
        }

        .product-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .product-details {
            padding-left:5px;
			padding-right:5px;
			padding-bottom:5px;
        }

       
.product_name_div{
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding:1px;
}

        .price {
            color: #27ae60;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
		 
        }

        .rating {
            display: flex;
            align-items: center;
        }
.cart-button {
    background-color: #65426F;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
    display:flex;
    align-items: center;
	position:relative;
	margin-left: 115px;
	margin-top: 16px; 
	
}       

.checked{
            color: #f39c12;
            margin-right: 5px;
        }
		
     .fa-star-half-o{
	 color: #f39c12;
     margin-right: 5px;

}
.fa-star-o{
	 color: #f39c12;
     margin-right: 5px;

	
} 
#view-more{
	position: absolute;
	width: 150px;
	height: 50px;
	font-size: 14px;
	border-radius: 5px;
	background-color: #65426F;
	
}      

       

/* footer section*/
footer{
	width:100%;
	background: #000000;
    color: #fff;  
	text-align: center;
	height: 200px;
	position: absolute;
	display: block;
	margin-top: 15px;
	
}

 .footer-container {
        display: flex;
	    width: 100%;
        margin-top: 10px;
    }
    .footer-section {
        margin: 15px;
        min-width: 100px;
    }
    .footer-section h3 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .footer-section ul {
        list-style: none;
        padding: 0;
		
    }
    .footer-section ul li {
        margin: 5px 0;
		
    }
    .footer-section ul li a {
        color: #bbb;
        text-decoration: none;
		
    }
    .footer-section ul li a:hover {
        color: #fff;
    }

 /* cover image slider*/
#coverimage{
	background: #808080;
	width: 75%;
	position: relative;
	display: flex;
	justify-content: center;
    align-items: center;
  
}
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    
	
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 150%;
    height: 300px;
}

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);
}


/* Responsive section */
@media only screen and (max-width: 700px){
	
	#logo{
		width: 20%;
		margin-left: 35%;
	}
	#login{
		width:10%;height: 20px;float:none;margin-right: 5px ;margin-top: 15px;
		font-size: 14px; position: absolute; left: 5px; margin-left: 5px;
		
	}
	#SignIn{
	width:12%;
	height: 20px;
	margin-top: 15px;
	font-size: 14px;	
	float:none;
	position: absolute;
	right: 15%;	
}
	#header-cart-icon{
	width:5%;float:none;
	position: absolute;
	right: 5%;		
	
}
	#searchinput{
	margin-left:30%; width: 30%;
}
	#coverimage{
	background: #808080;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
    align-items: center;
}
	.slide {
    width: 100%;
    height: 200px;
}
   #category-section{
	background: #EFB6B7;
	width: 100%;
	height: 100px;
	   
}
	.category-section-child{
	background: #FFFFFF;
	width: 15%;
	height: 85px;
	border-radius: 10px;
	
}	.category-name1{
    font-size: 9px	;
	text-align: center;
}	
	
	.category-section-image{
	width: 80%;
	height: 55%;
	border-radius: 50%;
	border-style: none;
	border-color: white;   /*#B7B2B2*/
	margin-left: 10%;
	margin-top: 1px;
	
}
	header{
	background: #FFFFFF;
	width: 100%;
	height: 160px;
	overflow: hidden;
	 
}
	#sidemenu{
		display:none;
		width: 230px;
		overflow-y: scroll;
		
	}
	
	#navigation-menue{
		width: 100%;
		height: 100px;
		overflow-x: scroll;
		display: inline-flex;
		
		
	}
	.nav-menue-option{
		width: 100%;
		margin:15px ;
		display: block;
		font-size: 12px;
		
	}
	.banner {
    width: 60%;
    height: 130px;
	padding:10px;
	
	}
	.product-card-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap:5px;
}
	.product-card {
           
            border-radius: 8px;
            overflow: hidden;
            width: 150px;
			height: 265px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
			margin: 6px;
			
        }
		
		 .product-card a img {
            width: 100%;
            height: 150px;
            object-fit: cover;
	}
	 .product-title {
            font-size: 10px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .price {
            color: #27ae60;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 3px;
        }

        .rating {
            display: flex;
            align-items: center;
        }
.cart-button {
    background-color: #65426F;
    color: white;
    border: none;
    padding: 3px 7px;
    font-size: 10px;
    cursor: pointer;
   
    
    align-items: center;
	 
	margin-left: 23%;
	margin-top: 15px;
}       
	 .product-details {
            padding-left:5px;
        }
  
	 .footer-section {
        margin: 7px;
        min-width: 60px;
    }
    .footer-section h3 {
        margin-bottom: 10px;
        font-size: 12px;
    }
	footer{
	width:100% ;
	background: #000000;
    color: #fff;  
	padding: 2px;
    text-align: center;
	height: 150px;	
	margin-top: 15px;
}
	.product-card-container{
	width: 100%;
	align-content: center;
	
	
}
	.footer-p{
		font-size: 8px;
	}
	
	.footer-section ul li {
        margin: 3px 0;
		font-size: 8px;
		
    }
}