
body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: white;
}
* {
	box-sizing: border-box;
}
#top {
	width: 100%;
	background: white;
	border-bottom: 1px solid #eee;
}
#top-content {
	width: 80%;
	margin: auto;
	min-height: 95px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 10px 0;
}
.logo img {
	height: 70px;
	display: block;
}
.search-box {
	flex: 1;
	min-width: 250px;
}
.search {
	display: flex;
	border: 1px solid #ddd;
	border-radius: 30px;
	overflow: hidden;
}
.search input {
	flex: 1;
	border: none;
	padding: 12px 15px;
	outline: none;
}
.search button {
	border: none;
	background: gray;
	color: white;
	padding: 0 18px;
	cursor: pointer;
}
.icon-group {
	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
}
.icon-item {
	text-align: center;
	position: relative;
	cursor: pointer;
}
.icon-item i {
	font-size: 22px;
	color: #5C4033;
}
.icon-text {
	font-size: 13px;
}
.cart-count {
	position: absolute;
	background-color: red;
	color: white;
	font-size: 12px;
	font-weight: bold;
	border-radius: 50%;
	padding: 2px 6px;
	text-align: center;
	top: -8px;
	right: -10px;
}
#menu {
	background: #5C4033;
	position: sticky;
}
#menu-content {
	width: 80%;
	margin: auto;
}
#menu-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
#menu-content ul li {
	position: relative;
}
#menu-content ul li a {
	display: block;
	padding: 18px 20px;
	color: white;
	text-decoration: none;
	font-weight: bold;
}
#menu-content ul li:hover {
	background: #8f6547;
}
.submenu {
	display: none !important;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 220px;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 5px 0;
}
#menu-content ul .submenu li {
	width: 100%;
	border-bottom: none;
	background: white;
}
#menu-content ul .submenu li a {
	color: #333;
	padding: 12px 20px;
	font-weight: normal;
	display: block;
	transition: all 0.2s ease;
}
#menu-content ul .submenu li:hover {
	background: #f8f5f2;
}
#menu-content ul .submenu li:hover a {
	color: #A67B5B;
}
.has-submenu:hover .submenu {
	display: block !important;
}
.menu-hotline {
	color: white;
	padding: 18px 20px;
	font-weight: bold;
	margin-left: auto;
}


.banner {
	width: 100%;
	background: #F8F5F2;
	padding: 50px 0;
}
.banner-content {
	width: 80%;
	margin: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}
.banner-text {
	flex: 1;
	min-width: 300px;
}
.banner-title-top {
	font-size: 50px;
	font-weight: bold;
	color: #A67B5B;
}
.banner-title-bottom {
	font-size: 28px;
	margin: 15px 0;
}
.banner-text p {
	line-height: 1.8;
	color: #555;
}
.banner-btn {
	background: #A67B5B;
	border: none;
	padding: 12px 28px;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
	margin-top: 15px;
}
.banner-btn a {
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 1px;
	display: block;
	color: #ffffff;
}
.banner-image {
	flex: 1;
	min-width: 300px;
	position: relative;
}
.banner-image img {
	width: 100%;
	border-radius: 20px;
	display: none;
}
.banner-image img.active {
	display: block;
}

.category-box {
	width: 80%;
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
}
.category-item {
	background: #F8F5F2;
	border-radius: 20px;
	text-align: center;
	padding: 20px;
	height: 100%;
}
.category-item:hover {
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.category-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 15px;
}
.category-item h3 {
	margin-top: 15px;
}

.album {
	width: 80%;
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
.album-item {
	background: white;
	border-radius: 15px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	height: 100%;
	border: 1px solid #f0e9e4;
	transition: all 0.3s ease;
}
.album-item:hover {
	border-color: #A67B5B;
	box-shadow: 0 8px 24px rgba(166, 123, 91, 0.15);
}
.album-icon {
	font-size: 35px;
}
.album-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}
.album-desc {
	color: gray;
	font-size: 14px;
}

.items {
	width: 80%;
	margin: 60px auto;
}
.items-title {
	text-align: center;
	margin-bottom: 40px;
	color: #A67B5B;
}
.items-list {
	display: flex;
	flex-wrap: wrap;
}
.item-box {
	background: #F8F5F2;
	border-radius: 20px;
	padding: 15px;
	text-align: center;
	height: 100%;
}
.item-box img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
}
.item-box h3 {
	margin-top: 15px;
}

.sale {
	width: 80%;
	margin: 60px auto;
}
.sale-title h1 {
	margin: 0;
	color: #A67B5B;
}
.sale-products {
	display: flex;
	flex-wrap: wrap;
}
.sale-card {
	background: #F8F5F2;
	border-radius: 20px;
	padding: 15px;
	height: 100%;
}
.sale-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 15px;
}
.star, .voucher-star {
	color: gold;
	margin: 10px 0;
}
.price {
	color: #A67B5B;
	font-size: 22px;
	font-weight: bold;
}
.sold {
	color: gray;
	font-size: 14px;
	margin: 10px 0;
}
.progress {
	width: 100%;
	height: 10px;
	background: #ddd;
	border-radius: 20px;
	overflow: hidden;
}
.progress-bar {
	height: 100%;
	background: #A67B5B;
}

.famous {
	width: 80%;
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-items: stretch;
}
.brand-box {
	flex: 2;
	background: #F8F5F2;
	padding: 25px;
	border-radius: 20px;
}
.brand-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 25px;
}
.brand-title {
	margin: 0;
	color: #A67B5B;
}
.brand-subtitle {
	color: gray;
}
.brand-button {
	background: #A67B5B;
	color: white;
	padding: 12px 20px;
	border-radius: 30px;
	cursor: pointer;
}
.brand-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.brand-item {
	width: calc(25% - 12px);
	background: white;
	padding: 10px;
	border-radius: 15px;
}
.brand-item img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}
.brand-banner {
	flex: 1;
}
.brand-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

.voucher {
	width: 80%;
	margin: 60px auto;
}
.voucher-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}
.voucher-title {
	color: #A67B5B;
}
.voucher-tabs {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.voucher-tab {
	padding: 10px 20px;
	background: #F8F5F2;
	border-radius: 30px;
	cursor: pointer;
}
.voucher-tab.active {
	background: #A67B5B;
	color: white;
}
.voucher-products {
	display: flex;
	flex-wrap: wrap;
}
.voucher-item {
	background: white;
	border-radius: 18px;
	padding: 15px;
	height: 100%;
	text-align: center;
	border: 1px solid #f0e9e4;
	transition: all 0.3s ease;
}
.voucher-image {
	width: 100%;
	height: 260px;
	border-radius: 18px;
	overflow: hidden;
	background: #F8F5F2;
}
.voucher-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.voucher-item:hover {
	border-color: #A67B5B;
	box-shadow: 0 8px 24px rgba(166, 123, 91, 0.15);
}
.voucher-item a.buy-btn {
	display: inline-block !important;
	padding: 8px 25px;
	text-decoration: none !important;
	background-color: #A67B5B;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
	border-radius: 4px;
	margin-top: 10px;
}
.all {
	width: 220px;
	margin: 30px auto;
	text-align: center;
	padding: 14px 20px;
	border: 2px solid #A67B5B;
	border-radius: 35px;
	color: #A67B5B;
	font-weight: bold;
	cursor: pointer;
	display: block;
	text-decoration: none;
}
.all:hover {
	background: #A67B5B;
	color: white;
}

.about-container {
	width: 80%;
	margin: 50px auto;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-sizing: border-box;
	line-height: 1.8;
}
.about-container h1 {
	font-size: 42px;
	color: #A67B5B;
	text-align: center;
	margin-bottom: 30px;
}
.about-container h2 {
	font-size: 28px;
	color: #444;
	margin-top: 30px;
	margin-bottom: 15px;
	border-left: 5px solid #A67B5B;
	padding-left: 15px;
}
.about-container p {
	font-size: 17px;
	color: #555;
	margin-bottom: 18px;
	text-align: justify;
}
.contact {
	margin-top: 40px;
	padding: 25px;
	background: #F8F5F2;
	border-radius: 15px;
}
.contact p {
	margin: 10px 0;
	font-size: 16px;
}
.label {
	font-weight: bold;
	color: #A67B5B;
}

.page-header-banner {
	width: 100%;
	background-color: #F8F5F2;
	padding: 35px 0;
	text-align: center;
	border-bottom: 1px solid #f0e9e4;
	margin-bottom: 40px;
}
.page-header-content h1 {
	font-size: 26px;
	color: #5C3D2E;
	font-weight: bold;
	letter-spacing: 1px;
	margin: 0 0 10px 0;
}
.page-header-content p {
	font-size: 14px;
	color: #777777;
	margin: 0;
}
.page-header-content p a {
	color: #5C3D2E;
	text-decoration: none;
}
.page-header-content p a:hover {
	color: #A67B5B;
}
.page-header-content p span {
	color: #A67B5B;
	font-weight: 500;
}
.shop-container {
	width: 80%;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	padding-bottom: 60px;
}
.shop-sidebar {
	flex: 0 0 280px;
}
.shop-content-products {
	flex: 1;
}
.filter-section {
	background-color: #ffffff;
	border: 1px solid #f0e9e4;
	border-radius: 8px;
	padding: 22px;
	margin-bottom: 25px;
}
.filter-section h3 {
	font-size: 16px;
	color: #5C3D2E;
	font-weight: bold;
	margin: 0 0 18px 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #f8f5f2;
	display: flex;
	align-items: center;
	gap: 10px;
}
.filter-section h3 i {
	font-size: 14px;
	color: #A67B5B;
}
.filter-cate-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.filter-cate-list li {
	margin-bottom: 12px;
}
.filter-cate-list li a {
	color: #555555;
	font-size: 14px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
.filter-cate-list li a i {
	font-size: 10px;
	color: #cccccc;
}
.filter-cate-list li a:hover, 
.filter-cate-list li a.active {
	color: #A67B5B;
	font-weight: bold;
	padding-left: 5px;
}
.filter-cate-list li a:hover i,
.filter-cate-list li a.active i {
	color: #A67B5B;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.filter-price-options label {
	display: block;
	font-size: 14px;
	color: #555555;
	margin-bottom: 14px;
	cursor: pointer;
}
.filter-price-options input[type="radio"] {
	margin-right: 10px;
	accent-color: #5C3D2E;
	vertical-align: middle;
}
.promo-widget {
	background: linear-gradient(135deg, #5C3D2E, #845943);
	color: #ffffff;
	border: none;
	text-align: center;
}
.promo-widget h4 {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 10px 0;
	letter-spacing: 0.5px;
}
.promo-widget p {
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
	color: #f5f0eb;
}
.sidebar-policy {
	width: 100%;
}
.sidebar-policy img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}
.products-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
}
.admin-link {
	text-decoration: none;
	color: #5C3D2E;
	font-weight: bold;
	margin-left: auto;
	font-size: 13px;
	padding: 6px 12px;
	border: 1px solid #5C3D2E;
	border-radius: 5px;
	transition: all 0.3s ease;
	display: inline-block;
}
.admin-link:hover {
	background-color: #5C3D2E;
	color: #fff;
}
.product-grid-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 20px;
}
.product-item {
	background-color: #ffffff;
	border: 1px solid #f2f2f2;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.product-item:hover {
	border-color: #e6ded8;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.product-image-wrapper {
	position: relative;
	width: 100%;
	height: 350px;
	background-color: #fafafa;
	overflow: hidden;
}
.product-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-item:hover .product-image-wrapper img {
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.product-info {
	padding: 20px 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.product-info h3 {
	font-size: 15px;
	color: #333333;
	font-weight: 600;
	margin: 0 0 8px 0;
	line-height: 1.4;
	height: 42px;
	overflow: hidden;
}
.product-rating {
	color: #ffcc00;
	font-size: 12px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}
.product-info .price {
	font-size: 17px;
	color: #A67B5B;
	font-weight: bold;
	margin-bottom: 18px;
	margin-top: auto;
}
.product-info a {
	display: inline-block;
	color: #5C3D2E;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	margin-top: auto;
	align-self: center;
	padding: 8px 0;
	border-bottom: 2px solid #5C3D2E;
	width: fit-content;
}

.product-detail-container {
	max-width: 900px;
	margin: 50px auto;
	padding: 0 20px;
}
.product-detail-grid {
	display: flex;
	gap: 50px;
	align-items: center;
}
.product-gallery {
	flex: 0 0 40%;
}
.product-gallery img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-detail-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.product-detail-info h1 {
	font-size: 32px;
	margin-bottom: 10px;
}
.description {
	line-height: 1.6;
	color: #666;
	margin-bottom: 25px;
}
.buy-btn {
	background-color: #A67B5B;
	color: #ffffff;
	padding: 12px 28px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	width: fit-content;
	display: block;
	margin-top: 15px;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
}
.buy-btn:hover {
	background-color: #8f6547;
}

.related-title {
	text-align: center;
	margin: 50px 0 30px;
	color: #5C4033;
}
.related-products {
	width: 80%;
	margin: auto;
	display: flex;
	gap: 20px;
	justify-content: center;
}
.product-card {
	width: 220px;
	padding: 15px;
	text-align: center;
	border: 1px solid #eee;
}
.product-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.card-price {
	color: #A67B5B;
	font-weight: bold;
	margin: 10px 0;
}
.view-btn {
	display: inline-block;
	padding: 8px 15px;
	background: #A67B5B;
	color: white;
	text-decoration: none;
}

/*cart*/

#cart-top {
	width: 100%;
	background: white;
	border-bottom: 1px solid #ddd;
}
#cart-top-content {
	width: 80%;
	height: 80px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cart-logo img {
	height: 60px;
}
.page-title h2 {
	margin: 0;
	color: #5C4033;
}
.cart-wrapper {
	width: 80%;
	margin: 30px auto;
	display: flex;
	gap: 20px;
}
.cart-items {
	flex: 2;
	background: white;
	padding: 20px;
	border: 1px solid #ddd;
}
.cart-summary {
	flex: 1;
	background: white;
	padding: 20px;
	border: 1px solid #ddd;
}
.summary-line {
	display: flex;
	justify-content: space-between;
	margin: 15px 0;
}
.btn-checkout {
	width: 100%;
	padding: 14px;
	background: #5C4033;
	color: white;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}
.btn-checkout:hover {
	background: #A67B5B;
	box-shadow: 0 4px 12px rgba(166, 123, 91, 0.2);
}
.qty-btn {
	width: 28px;
	height: 28px;
	border: 1px solid #ddd;
	background: #F8F5F2;
	color: #5C4033;
	font-weight: bold;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.qty-btn:hover {
	background: #A67B5B;
	color: white;
	border-color: #A67B5B;
}
.qty-val {
	font-weight: bold;
	min-width: 25px;
	text-align: center;
	font-size: 15px;
	color: #333;
}
.continue-shopping {
	display: block;
	margin-top: 15px;
	text-align: center;
	text-decoration: none;
	color: #5C4033;
}

/*contact*/
#contact-page {
	width: 80%;
	margin: 40px auto;
}
.contact-page-title {
	text-align: center;
	color: #5C3D2E;
	font-size: 32px;
	margin-bottom: 10px;
}
.contact-page-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 50px;
}
.contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
	margin-top: 30px;
}
.contact-grid > div {
	flex: 1;
	min-width: 300px;
}
.contact-info-block, .contact-form-block {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	height: 100%;
	box-sizing: border-box;
}
.contact-info-block h2, .contact-form-block h2 {
	text-align: center;
	color: #5C3D2E;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #A67B5B;
	display: inline-block;
	width: 100%;
}
.info-item-detail {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}
.info-item-detail i {
	color: #A67B5B;
	font-size: 20px;
	margin-top: 5px;
}
.contact-form-block {
	background: #f9f9f9;
	border: 1px solid #eee;
}
.contact-input-group {
	margin-bottom: 15px;
}
.contact-input-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
.contact-input-group input, .contact-input-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-family: inherit;
}
.contact-submit-btn {
	width: 100%;
	background: #5C3D2E;
	color: white;
	padding: 12px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
}
.contact-submit-btn:hover {
	background-color: #845943;
}

/* news */
.news-container {
	width: 80%;
	margin: 50px auto;
}
.news-page-title {
	text-align: center;
	color: #5C3D2E;
	font-size: 32px;
	margin-bottom: 10px;
}
.news-page-subtitle {
	text-align: center;
	color: #777;
	margin-bottom: 40px;
}
.news-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.news-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #eee;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.news-img-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
.news-info-box {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.news-tag {
	background: #A67B5B;
	color: white;
	padding: 4px 8px;
	font-size: 11px;
	border-radius: 4px;
	text-transform: uppercase;
	width: fit-content;
}
.news-info-box h2, .news-info-box h3 {
	font-size: 18px;
	margin: 10px 0;
	color: #333;
	line-height: 1.4;
}
.news-date {
	font-size: 12px;
	color: #999;
	margin-bottom: 10px;
}
.news-excerpt {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
}
.read-more-btn {
	font-size: 13px;
	color: #5C3D2E;
	font-weight: bold;
	text-decoration: none;
	margin-top: auto;
}
.featured-news {
	flex-direction: row;
}
.featured-news .news-img-box {
	flex: 1.2;
}
.featured-news .news-img-box img {
	height: 100%;
}
.featured-news .news-info-box {
	flex: 1;
	justify-content: center;
}

/* =========================
   PROMOTIONS PAGE
========================= */
.promo-container {
	width: 80%;
	margin: 40px auto;
}
.promo-page-title {
	text-align: center;
	color: #5C3D2E;
	font-size: 32px;
}
.promo-page-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 40px;
}
.promo-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
}
.promo-grid > .col-x-12 {
	grid-column: span 2;
}
.promo-card {
	border: 1px solid #eee;
	padding: 15px;
	border-radius: 12px;
	text-align: center;
	background: white;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.promo-card:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.main-promo-banner {
	background: #fdfbf7;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	align-items: center;
	border: 1px solid #eee;
	width: 100%;
}
.main-promo-banner img {
	width: 50%;
	height: 300px;
	object-fit: cover;
}
.main-promo-info {
	padding: 40px;
	flex: 1;
}
.main-promo-info h2 {
	color: #5C3D2E;
	margin-bottom: 15px;
}
.promo-card-img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
}
.promo-card-text h3 {
	margin: 15px 0;
	font-size: 18px;
	color: #333;
}
.promo-time {
	color: #A67B5B;
	font-size: 14px;
	font-weight: bold;
}
.promo-shop-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 25px;
	background: #5C3D2E;
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: bold;
}
.promo-shop-btn:hover {
	background-color: #845943;
}

/* =========================
   LOGIN & SIGNUP PAGES
========================= */
#wrapper {
	width: 100%;
	padding: 60px 0;
	background: #f8f5f2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login-box, .signup-box {
	width: 450px;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.login-box h1, .signup-box h1 {
	text-align: center;
	margin-bottom: 12px;
	color: #5C3D2E;
	font-size: 28px;
}
.login-box p, .signup-box p {
	text-align: center;
	font-size: 14px;
	margin-bottom: 25px;
	color: #666;
}
.login-box p a, .signup-box p a {
	color: #5C3D2E;
	text-decoration: none;
	font-weight: bold;
}
.form-title {
	font-weight: bold;
	font-size: 16px;
	color: #333;
	margin-bottom: 15px;
}
.form-group {
	margin-bottom: 18px;
}
.form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold;
	font-size: 14px;
	color: #333;
}
.form-group input {
	width: 100%;
	height: 45px;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 0 12px;
	font-size: 14px;
	outline: none;
}
.login-btn, .signup-btn {
	width: 100%;
	height: 46px;
	border: none;
	border-radius: 8px;
	background: #5C3D2E;
	color: white;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 10px;
}
.login-btn:hover, .signup-btn:hover {
	background-color: #845943;
}
.social-title, .social-text {
	text-align: center;
	font-size: 13px;
	color: #888;
	margin-top: 20px;
	margin-bottom: 15px;
}
.social-login {
	display: flex;
	gap: 12px;
}
.social-login button {
	flex: 1;
	height: 42px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	color: white;
	font-size: 14px;
}
.social-login button:hover {
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.facebook {
	background: #1877f2;
}
.google {
	background: #db4437;
}
#footer {
	width: 100%;
	background: #F5F5F5;
	margin-top: 40px;
	border-top: 1px solid #e5e5e5;
}
.footer-container {
	width: 80%;
	margin: auto;
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
}
.footer-col {
	width: 25%;
	padding: 15px;
}
.footer-col h3 {
	margin-top: 0;
	color: #3E2C23;
}
.footer-col p, .footer-col li {
	color: #666;
	line-height: 1.8;
}
.footer-col ul {
	list-style: none;
	padding: 0;
}
.footer-subscribe {
	display: flex;
	margin-top: 15px;
}
.footer-subscribe input {
	flex: 1;
	padding: 12px;
	border: 1px solid #ddd;
	outline: none;
}
.footer-subscribe button {
	border: none;
	background: #5C4033;
	color: white;
	padding: 12px 18px;
	cursor: pointer;
}
.footer-subscribe button:hover {
	background-color: #8f6547;
}
.payment {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}
.payment span {
	background: white;
	padding: 8px 12px;
	border-radius: 8px;
	color: #5C4033;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid #eee;
}
.footer-bottom {
	text-align: center;
	padding: 20px;
	border-top: 1px solid #ddd;
	color: #aaa;
}


.contact-fixed {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 9999;
}
.contact-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff !important;
	font-size: 20px;
	text-decoration: none;
}
.contact-btn:hover {
}
.contact-btn.phone {
	background-color: #2ecc71;
}
.contact-btn.messenger {
	background-color: #0084FF;
}
/* ==========================================
   TRANG ADMIN
   ========================================== */
.admin-dashboard-container {
	width: 80%;
	margin: 30px auto 60px auto;
	font-family: Arial, sans-serif;
}
.admin-toolbar {
	margin-bottom: 25px;
}
.back-shop-btn {
	text-decoration: none !important;
	color: #5C3D2E;
	font-weight: bold;
	font-size: 13px;
	padding: 6px 12px;
	border: 1px solid #5C3D2E;
	border-radius: 5px;
	transition: all 0.3s ease;
	display: inline-block;
}
.back-shop-btn:hover {
	background-color: #5C3D2E;
	color: #fff !important;
}
.admin-section {
	margin-bottom: 30px;
}
.admin-section h2 {
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
	font-weight: bold;
}

/* FORM THÊM SẢN PHẨM DẠNG ĐƠN GIẢN (STACKED) */
.form-group-inline {
	margin-bottom: 15px;
	max-width: 400px;
}
.form-group-inline label {
	display: block;
	font-size: 14px;
	margin-bottom: 6px;
	color: #333;
}
.form-group-inline input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}
.form-group-inline input:focus {
	border-color: #5C3D2E;
	outline: none;
}
.simple-submit-btn {
	background-color: #5C3D2E;
	color: white;
	border: none;
	padding: 10px 18px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.2s;
}
.simple-submit-btn:hover {
	background-color: #452c21;
}

.admin-divider {
	border: 0;
	border-top: 1px solid #ddd;
	margin: 35px 0;
}

/* BẢNG DANH SÁCH ĐƠN GIẢN */
.simple-admin-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
	font-size: 14px;
}
.simple-admin-table th, 
.simple-admin-table td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
	vertical-align: middle;
}
.simple-admin-table th {
	background-color: #f9f9f9;
	font-weight: bold;
	color: #333;
}
.simple-admin-table tbody tr:hover {
	background-color: #f5f5f5;
}
.admin-img-preview {
	width: 50px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #ddd;
	display: block;
	margin: 0 auto;
}
.admin-table-price {
	font-weight: bold;
	color: #A67B5B;
}

.action-buttons {
	display: flex;
	gap: 10px;
}
.btn-edit, .btn-delete {
	border: 1px solid #ddd;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	font-size: 12px;
	transition: all 0.2s ease;
	background-color: #fff;
	color: #333;
}
.btn-edit:hover {
	background-color: #f0ad4e;
	color: white;
	border-color: #f0ad4e;
}
.btn-delete:hover {
	background-color: #d9534f;
	color: white;
	border-color: #d9534f;
}

@media screen and (max-width: 768px) {
	.admin-dashboard-container {
		width: 90%;
	}
	.action-buttons {
		flex-direction: column;
		gap: 5px;
	}
}

/* ERROR MESSAGE STYLING */
.error-msg {
	color: #d9534f;
	font-size: 12px;
	margin-top: 5px;
	display: block;
	text-align: left;
}

/* MOBILE */
@media only screen and (max-width: 767px) {
	#menu {
		display: none;
	}
	.login-box, .signup-box {
		width: 95%;
		padding: 30px 20px;
	}
	.footer-col {
		width: 100%;
	}
	.promo-grid {
		grid-template-columns: 1fr;
	}
	.promo-grid > .col-x-12 {
		grid-column: span 1;
	}
	.main-promo-banner {
		flex-direction: column;
	}
	.main-promo-banner img {
		width: 100%;
		height: 200px;
	}
	.product-detail-grid {
		flex-direction: column;
		gap: 30px;
	}
	.product-gallery {
		flex: 0 0 100%;
		width: 100%;
	}
	.featured-news {
		flex-direction: column;
	}
	.featured-news .news-img-box {
		flex: none;
	}
	.shop-container {
		flex-direction: column;
		width: 90%;
	}
	.shop-sidebar {
		flex: none;
		width: 100%;
	}
	.product-grid-layout {
		grid-template-columns: repeat(2, 1fr);
	}
	.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%; }
}

/* TABLET */
@media screen and (min-width: 768px) and (max-width: 1199px) {
	#menu {
		display: none;
	}
	.login-box {
		width: 70%;
	}
	.signup-box {
		width: 75%;
	}
	.footer-col {
		width: 50%;
	}
	.shop-container {
		width: 90%;
		gap: 20px;
	}
	.shop-sidebar {
		flex: 0 0 220px;
	}
	.product-grid-layout {
		grid-template-columns: repeat(2, 1fr);
	}
	.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%; }
}

/* DESKTOP / LAPTOP */
@media screen and (min-width: 1200px) {
	#menu {
		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-12 { width: 100%; }
	.col-x-2-4 { width: 20%; }
}

[class*="col-"] {
	padding: 10px;
}

