*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-family: Arial;
}
#header{
	display:flex;
	justify-content: space-between;
	padding:12px 50px;
	height: 70px;
	align-items: center;
	
}
li{
	list-style:none;
}
a{
	text-decoration:none;
}
.logo{
	flex:1;
}
.logo img{
	width: 150px;
}
.menu{
	flex:3;
	display:flex;
}
.menu li{
	padding:0 12px;
	position: relative;
}
.menu li:hover .submenu{
	visibility: visible;
	top: 30px;
}
.submenu{
	position: absolute;
	width: 250px;
	border: 1px solid #CCC;
	padding: 10px 0 10px 20px;
	visibility: hidden;
	top: 50px;
	transition:0.5s;
	background-color: white;
	color: black;
	
}
.submenu li a{
	font-weight:normal;
}
.menu li a{
	font-size: 16px;
	font-weight:bold;
	display:block;
	line-height: 20px;
	color: Black;
}
.other{
	flex: 3;
	display: flex;
	align-items: center;
	gap:30px;
	justify-content:flex-end;
	
}
.other img{
	width: 20px;
}
.other a{
	align-items: center;
	display: flex;
	padding:14px 20px;
	border:1px solid #ccc;
	border-radius:20px;
	color: black;

}
.cart a{
	display:flex;
	align-items:center;
	padding:6px 12px;
	border:1px solid #ccc;
	border-radius:20px;
}
/*section*/
#slideshow{
	width:100%;
	height: 600px;
}
.slides img{
	width: 100%;
	height: 600px;
}
.side-title {
	margin-top:30px;
	text-align: center;
	margin-bottom: 30px;
}
#listcate ul {
	display: flex;
	gap : 20px;
	flex-wrap: wrap;
	justify-content:center;
}
.container{
	display:flex;
	align-items:center;
	gap: 15px;
	border: 1px solid #CCC;
	background-color:#F3F3F3;
	padding:5px 20px;
	width: 320px;
}
.container img{
	width: 120px;
	height: auto;
}
.coll-title{
	margin-top:30px;
	margin-bottom: 30px;
	margin-left: 90px;
}
#collection ul {
	display: flex;
	gap : 10px;
	flex-wrap: wrap;
	margin-left: 90px;
	
}
.coll a img{
	width:330px;
	height: 650px;
}
/*main*/
.catetitle{
	margin-left: 90px;
	border: 1px solid #CCC;
	border-radius:50px;
	background-color: orange;
	padding: 20px 30px;
	margin-top: 30px;
	margin-bottom: 30px;
	display:inline-block;
}
.photo{
	width: 250px;
	height: auto;
}
.name{
	margin-top: 20px;
	margin-bottom: 20px;
	width: 250px;
	font-size:15px;
	font-family:Nunito;
	
}
.price{
	width: 250px;
	color: red;
	font-size: 24px;
	display:block;
	margin-top:10px;
	margin-bottom:20px;
}
.product{
	border: 1px solid black;
	display:inline-block;
	text-align: center;
}
.product input{
	padding: 5px 30px;
	margin-bottom: 20px;
}
.product h3 a{
	color: black;
	font-family: Nunito;
}
.cate{
	display: flex;
	gap: 30px;
	flex-wrap:wrap;
	margin-left:90px;
}
.more{
	text-align: center;
	margin-top: 30px;
	width: 100%;
}
.more b{
	border:1px solid black;
	padding:12px 30px;
	border-radius:30px;
	display:inline-block;
	color:black;
	margin-bottom: 30px;
}
/*Footer*/
#footer{
    background:black;
    color:white;
    padding:50px 0;
	padding: 60px 90px;
	margin-top: 50px;
}
.footer-content{
    display:flex;
    justify-content:space-between;
    gap:30px;
	flex-wrap: wrap;
}
.footer-col{
    flex:1;
	min-width: 250px;
}
.footer-col h3{
    margin-bottom:25px;
    font-size:22px;
}
.footer-col p{
    margin-bottom:15px;
    line-height:28px;
	color:#CCC

}
.footer-col a{
    display:block;
    color:white;
    margin-bottom:15px;	
}
/*LOGIN CUA INDEX*/
#wrapper{
	width:100%;
	background-color:white;
	margin-top:30px;
	display:flex;
	justify-content:center;
	
	height: auto;
}

#login{
	width:500px;
	text-align:center;
	border: 2px solid black;
	border-radius: 15px;
	padding: 20px 20px;
	background-color: lightblue;
}

#login h1{
	margin-bottom:30px;
	padding: 30px 0px;
}

#login h2{
	margin-bottom:30px;
}

.conlogin{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:25px;
	gap:15px;
}

#namee,
#pass{
	width:140px;
	text-align:right;
	font-weight:bold;
}

#namee span,
#pass span{
	color:red;
}

.username input{
	width:300px;
	height:40px;
	padding:0 10px;
	border:1px solid #ccc;
	border-radius:5px;
}

#sublog{
	text-align:center;
	width:100%;
}

#sublog input{
	width:180px;
	height:42px;
	background-color:orange;
	color:white;
	border:none;
	border-radius:5px;
	cursor:pointer;
	font-weight:bold;
}
/* SIGNUP CUA INDEX */
#signup{
    width: 800px;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 30px;
    background-color: lightblue;
}

#signup h1{
    text-align: center;
    margin-bottom: 30px;
}

#signup h2{
    margin: 25px 0;
    text-align: left;
}

.form-group{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.label{
    width: 180px;
    text-align: right;
    font-weight: bold;
    margin-right: 15px;
}

.label span{
    color: red;
}

.input-box{
    flex: 1;
}

.input-box input,
.input-box textarea{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
}

.input-box input{
    height: 40px;
}

.gender{
    display: flex;
    align-items: center;
    gap: 15px;
}

.gender input{
    width: auto;
    height: auto;
}

.address{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.address select{
    width: 150px;
    height: 40px;
    border-radius: 5px;
    padding: 0 10px;
}

.address input{
    flex: 1;
}

.button-group{
    justify-content: center;
    margin-top: 30px;
}

.button-group .label{
    display: none;
}

.btn-signup{
    width: 220px ;
    height: 45px ;
    background: orange;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-signup:hover{
    opacity: 0.9;
}
/* GIOI THIEU */
.intro-content{
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: white;

}

.intro-content p{
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}
#gt h2{
	margin-left: 50px;
	margin-top: 20px;
	font-size: 16px;
}
#gt {
	display: flex;
}
.intro-content h2{
	text-align: center;
}
.intro-content a{
	border:2px solid #CCC;
	border-radius: 15px;
	text-align: center;
	padding: 20px 20px;
	margin-top: 20px;
}
/*TINTUC*/
.news{
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.news h2{
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.news-content p{
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}
/* Sanpham1*/
.product-detail{
    width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 60px;
}

.product-image img{
    width: 600px;
    height: 600px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.product-info{
    flex: 1;
}

.product-info h2{
    font-size: 32px;
    margin-bottom: 20px;
}

.product-price{
    font-size: 32px;
    color: red;
    font-weight: bold;
    margin-bottom: 25px;
}

.description{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.product-info ul{
    margin-left: 20px;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 30px;
}
.quantity-box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.quantity-box label{
    font-size: 18px;
    font-weight: bold;
}

.quantity-box input{
    width: 80px;
    height: 35px;
    border: 2px solid #666;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
}
.buy{
    padding: 15px 60px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

