* {
	box-sizing: border-box;
}

body {
	/* background-image: url("my-page-bg.jpg") */
}

#header {
	background-color: #FFF;
	width: 100%;
	height: 300px;
	position: relative;
}

#wrapper {
	background-color: #FFF;
	width: 100%;
}

#footer {
	background-color: #666;
	width: 100%;
	height: 300px;
	clear: both;
}

#container {
	width: 80%;
	min-height: 500px;
	margin: 40px auto;
}

.cate {
	width: 100%;
	margin-bottom: 40px;
	clear: both;
}

.cate-title {
	width: 300px;
	line-height: 40px;
	height: 40px;
	background-color: #3b050b;
	color: #FFF;
	border-radius: 15px;
	font-size: 18px;
	margin: 20px 0px;
	padding-left: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

.list-product {
	height: 368px;
	width: 100%;
}

.product {
	text-align: center;
	border: 1px solid #CCC;
	border-radius: 15px;
	padding: 20px;
}

.photo {}

.name {
	color: #3b050b;
}

.price {
	color: Orange;
}


#menu {
	background-color: #3b050b;
	height: 48px;
	width: 100%;
	line-height: 48px;
	position: absolute;
	bottom: 0px;
}

#menu ul {
	margin: 0px auto;
	padding: 0px;
	width: 80%;
	height: 100%;
	list-style: none;
}

#menu ul li {
	float: left;
	line-height: 48px;
	position: relative;
}

#menu ul li a {
	text-decoration: none;
	color: #FFF;
	display: block;
	padding: 0px 15px;
}

#menu a:hover {
	background-color: Orange;
}

#menu ul ul {
	display: none;
}

#menu li li {
	float: none;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	background-color: #DDD;
	color: #000;
	width: 200px;
}

#menu li:hover ul {
	display: block;
	position: absolute;
	top: 48px;
	left: 0px;
}

#menu li li a {
	color: #000;
}

#quick-contact {
	background-color: orange;
	width: 80px;
	height: 80px;
	border-radius: 40px;
	position: fixed;
	bottom: 10px;
	right: 10px;
}

#products {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	padding: 20px;
}

.product-item {
	width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 8px;
}

.product-name {
	font-weight: bold;
	margin-top: 10px;
}

.product-price {
	color: red;
	margin: 10px 0;
}



[class*="col-"] {
	float: left;
	padding: 15px;
}

/* Định dạng cho Mobile */
@media only screen and (max-width: 768px) {
	#header {
		display: none;
	}

	#quick-contact {
		display: none;
	}

	.col-s-1 {
		width: 8.33%
	}

	.col-s-2 {
		width: 16.66%
	}

	.col-s-3 {
		width: 25%
	}

	.col-s-4 {
		width: 33.33%
	}

	.col-s-5 {
		width: 41.66%
	}

	.col-s-6 {
		width: 50%
	}

	.col-s-7 {
		width: 58.33%
	}

	.col-s-8 {
		width: 66.66%
	}

	.col-s-9 {
		width: 75%
	}

	.col-s-10 {
		width: 83.33%
	}

	.col-s-11 {
		width: 91.66%
	}

	.col-s-12 {
		width: 100%
	}
}

/* Định dạng cho Tablet */
@media only screen and (min-width: 768px) {
	#header {
		display: block;
	}

	#quick-contact {
		display: none;
	}

	.col-m-1 {
		width: 8.33%
	}

	.col-m-2 {
		width: 16.66%
	}

	.col-m-3 {
		width: 25%
	}

	.col-m-4 {
		width: 33.33%
	}

	.col-m-5 {
		width: 41.66%
	}

	.col-m-6 {
		width: 50%
	}

	.col-m-7 {
		width: 58.33%
	}

	.col-m-8 {
		width: 66.66%
	}

	.col-m-9 {
		width: 75%
	}

	.col-m-10 {
		width: 83.33%
	}

	.col-m-11 {
		width: 91.66%
	}

	.col-m-12 {
		width: 100%
	}
}

/* Định dạng cho Laptop/PC */
@media only screen and (min-width: 1200px) {
	#quick-contact {
		display: block;
	}

	.col-x-1 {
		width: 8.33%
	}

	.col-x-2 {
		width: 16.66%
	}

	.col-x-3 {
		width: 25%
	}

	.col-x-4 {
		width: 33.33%
	}

	.col-x-5 {
		width: 41.66%
	}

	.col-x-6 {
		width: 50%
	}

	.col-x-7 {
		width: 58.33%
	}

	.col-x-8 {
		width: 66.66%
	}

	.col-x-9 {
		width: 75%
	}

	.col-x-10 {
		width: 83.33%
	}

	.col-x-11 {
		width: 91.66%
	}

	.col-x-12 {
		width: 100%
	}
}