body{
	*/background-image: url("background.jpg");*/
}


#header{
	background-color: #FFF;
	width: 100%;
	position: relative;
	flex-direction: column;
}
#top{
	width: 100%; 
	height: 48px; 
	background-color: #FFCCFF;
	display: flex;
    align-items: center;     
    justify-content: center; 
}
#top-header{
	width: 80%; 
	margin: 0px auto;
	text-align: center;
}
#mid-header{
	display: flex;
    justify-content: center;
    padding: 30px 0;
    gap: 30px;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.text_top_header{
	font-size: 15px;
	font-family: monsterrat;
	font-weight: bold;
	letter-spacing: normal;
	padding-top:10px;
}
.otimkiem{
    width: 400px;
    height: 30px;
    border: 2px solid #cfcfcf;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: white;
}
.otimkiem input{
    flex: 1;
    border: none;
    outline: none;
    font-size: 24px;
    color: #555;
}
.otimkiem input::placeholder{
    color: #b5b5b5;
}
.otimkiem i{
    font-size: 28px;
    color: #444;
    cursor: pointer;
}
.logo i{
    font-size: 45px;
    color: green;
}

.icons{
    display: flex;
    gap: 25px;
}

.icons i{
    font-size: 28px;
    cursor: pointer;
}
#wrapper{
	background-color: #FFF;
	width: 100%;
	min-height:1000px;
}
#footer{
	background-color: #FFAAAA;
	width: 80%;
	height:	200px;
	padding: 50px 10%;
}
#container{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;


}
.cate1{
	width: 100%;
	height: 450px;
	margin-bottom: 40px;
	margin-top: 30px;
}
.cate{
	width: 100%;
	height: 450px;
	margin-bottom: 40px;
	margin-top: 120px;
}
.cate-title{
	width: 100%;         
    text-align: center;  
    margin: 20px 0;      
    font-size: 24px;
    font-weight: bold;
    display: block;
	font-family: Montserrat, sans-serif;
}
.list-product{
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
}
.product-card{
	flex: 1;
	min-width: 280px;
	max-width: calc(25% - 20px); /* đoạn này chưa hiểu lắm */
	
}
.photo-product{
	position: relative;
}
.photo-product img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.name {
    font-weight: bold;
    margin-bottom: 10px;
}
.badge{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #ffaaaa;
	color: white;
	padding: 5px 10px;
	font-size: 12px;

}
.heart-icon {
    position: absolute; 
    bottom: 10px;        
    right: 10px;         
    z-index: 10;         
    font-size: 20px;
    color: #333;
    cursor: pointer;
}
.price{
	color: #ffaaaa;
	font-weight: bold;
	font-size: 20px;
	margin-top: auto;
}
.description{
	font-size: 14px;
	color: #555;
	flex-grow:1;
	margin-bottom: 15px;
	display: -webkit-box; /* đoạn này chưa hiểu lắm */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#menu{
	background-color: #FFAAAA; 
    width: 100%;
    height: 48px;
    line-height: 48px;
    position: relative;
}
#menu ul{
	margin: 0 auto;
    padding: 0;
    width: 80%;
    display: flex; 
    justify-content: center;
    list-style: none;
}
#menu ul li{
	padding: 0px 15px;
	line-height: 48px;
	position: relative;
}
#menu ul li a{
	text-decoration: none;
    color: #FFF;
    padding: 0 20px;
    font-weight: 500;
}
#menu a:hover{
	background-color: orange;
}
#menu ul ul {
	display: none;
	top: 48px;
	left: 0;
	width: 280px;
	background: white;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
	
}

#menu li li {
	float: none;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	background-color: #DDD;
	width: 280px;
	color: #000;
	white-space: nowrap;
	line-height: 24px;

}
#menu li:hover ul{
	display: block;
	position: absolute;
	top: 48px;
	left: 0px;
}

#menu li li a{
	color: #000;
}

#banner{
	margin-top: 20px;
	text-align: center;
}
#banner img{
	width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: auto;
}

#quick-contact{
	background-color: orange;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	position: fixed;
	bottom: 10px;
	right: 10px;
}
