/*
Theme Name: DoDo Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

#main {
	background-color: #1a1a1a;
}

a.plain {
	color: #fff;
}

.shop-page-title {
	background: linear-gradient(135deg, #000 0%, #27272a 100%);
}

.amount {
	color: #C9A961 !important;
}

.tab-panels {
	padding-top: 0px;
}

.page-wrapper .large-9 {
	flex-basis: 65%;
}

.page-wrapper .large-3 {
	flex-basis: 35%;
	max-width: 35%;
}

.page-wrapper .row-large>.col {
	padding: 0 10px 30px;
}

.kl-news .box-image {
	width: 40%;
	float: left;
}

.kl-news .post-title {
	color: #27272A;
	font-size: 14px;
	width: 55%;
	float: left;
	text-align: left;
	margin-left: 10px;
}

/* ============================================
   LUXURY HEADER BUTTON - Phone Number
   ============================================ */
.header-button {
	position: relative;
	z-index: 10;
}

.header-button .button {
	position: relative;
	background: linear-gradient(135deg, #C9A961 0%, #F4E4C1 50%, #C9A961 100%) !important;
	color: #0a0a0a !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	border: none !important;
	border-radius: 0 !important;
	clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
	box-shadow:
		0 0 20px rgba(201, 169, 97, 0.6),
		0 4px 15px rgba(201, 169, 97, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	overflow: hidden;
	letter-spacing: 1px;
	text-transform: uppercase !important;
}

/* Shine/Mirror effect animation */
@keyframes shine-sweep {
	0% {
		transform: translateX(-100%);
	}

	20% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(100%);
	}
}

.header-button .button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transform: translateX(-100%);
	animation: shine-sweep 3s ease-in-out infinite;
	pointer-events: none;
}

.header-button .button:hover::before {
	animation: none;
	transform: translateX(100%);
	transition: transform 0.6s ease;
}

.header-button .button::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #C9A961, #F4E4C1, #C9A961);
	clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
	z-index: -1;
	opacity: 0;
	filter: blur(10px);
	transition: opacity 0.4s ease;
}

.header-button .button:hover::after {
	opacity: 1;
}

.header-button .button:hover {
	background: linear-gradient(135deg, #F4E4C1 0%, #C9A961 50%, #F4E4C1 100%) !important;
	transform: translateY(-3px);
	box-shadow:
		0 0 30px rgba(201, 169, 97, 0.8),
		0 0 60px rgba(201, 169, 97, 0.4),
		0 8px 25px rgba(201, 169, 97, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.header-button .button:active {
	transform: translateY(-1px);
	box-shadow:
		0 0 20px rgba(201, 169, 97, 0.6),
		0 2px 10px rgba(201, 169, 97, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.header-button .button span {
	position: relative;
	z-index: 2;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Animated border glow */
@keyframes border-glow {

	0%,
	100% {
		box-shadow:
			0 0 20px rgba(201, 169, 97, 0.6),
			0 4px 15px rgba(201, 169, 97, 0.4),
			inset 0 1px 0 rgba(255, 255, 255, 0.3);
	}

	50% {
		box-shadow:
			0 0 30px rgba(201, 169, 97, 0.8),
			0 0 50px rgba(201, 169, 97, 0.3),
			0 4px 20px rgba(201, 169, 97, 0.6),
			inset 0 1px 0 rgba(255, 255, 255, 0.4);
	}
}

.header-button .button {
	animation: border-glow 3s ease-in-out infinite;
}

.header-button .button:hover {
	animation: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.header-button .button {
		font-size: 15px !important;
		padding: 2px 15px !important;
		letter-spacing: 0.5px;
	}

	.page-wrapper .large-9 {
		width: 100%;
		flex-basis: 100%;
	}

	.page-wrapper .large-3 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.blog-single {
		padding: 5px !important;
	}
}

.footer-2 p {
	font-size: 14px;
}

.widget .is-divider {
	display: none;
}

.textwidget {
	color: rgba(255, 255, 255, 0.7) !important;
}

#logo img {
	padding: 5px;
}

#footer,
.footer,
.footer-wrapper {
	background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%) !important;
	color: rgba(255, 255, 255, 0.8) !important;
	border-top: 1px solid rgba(201, 169, 97, 0.2) !important;
}

.footer-primary,
.footer-1,
.footer-2 {
	background: transparent !important;
}

.footer-secondary {
	padding: 0 !important;
}

/* Footer Widget Titles */
.footer .widget-title,
#footer .widget-title {
	font-family: 'Playfair Display', Georgia, serif !important;
	color: #ffffff !important;
	font-weight: 600 !important;
	padding-bottom: 15px !important;
	margin-bottom: 20px !important;
}

/* Footer Links */
.footer a,
#footer a {
	color: rgba(255, 255, 255, 0.7) !important;
	transition: all 0.3s ease !important;
}

.footer a:hover,
#footer a:hover {
	color: #C9A961 !important;
	padding-left: 5px !important;
}

/* Footer Lists */
.footer ul li,
#footer ul li {
	border-bottom: 1px solid rgba(201, 169, 97, 0.1) !important;
	padding: 0 0 0 15px !important;
}

.footer ul li:last-child,
#footer ul li:last-child {
	border-bottom: none !important;
}

/* Footer Text */
.footer p,
#footer p,
.footer-secondary p {
	color: rgba(255, 255, 255, 0.6) !important;
}

/* Copyright */
.copyright-footer,
.footer-secondary .col {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================
   LUXURY HEADER STYLING
   Override default header for luxury homepage
   ============================================ */

/* Header Container */


.widget-title {
	font-family: 'Playfair Display', Georgia, serif;
}

.footer-2 ul li {
	background: url(./icons/arrow.png) no-repeat left center;
	padding-left: 15px;
	border-top: 0px !important;
	font-size: 15px;
	margin-bottom: 0px;
	line-height: 2;
}

.header-wrapper,
.header-main,
#masthead {
	background: rgba(10, 10, 10, 0.95) !important;
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(201, 169, 97, 0.2);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Logo */
.luxury-homepage .header-logo img,
.luxury-homepage .site-logo img {
	filter: brightness(1.1);
}

/* Navigation Menu */
.header-nav,
.nav-wrapper,
.primary-menu {
	background: transparent !important;
}

/* Menu Items */
.header-nav a,
.primary-menu>li>a,
.menu-item>a,
.nav-top a {
	color: rgba(255, 255, 255, 0.85) !important;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.header-nav a:hover,
.primary-menu>li>a:hover,
.menu-item>a:hover,
.nav-top a:hover {
	color: #C9A961 !important;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

/* Active Menu Item */
.luxury-homepage .current-menu-item>a,
.luxury-homepage .current_page_item>a {
	color: #C9A961 !important;
	border-bottom: 2px solid #C9A961;
}

/* Search Box */

.luxury-homepage .header-search::placeholder,
.luxury-homepage .search-wrapper input::placeholder,
.luxury-homepage .searchform input::placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
}

.luxury-homepage .header-search:focus,
.luxury-homepage .search-wrapper input:focus,
.luxury-homepage .searchform input:focus {
	border-color: #C9A961 !important;
	box-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
	outline: none;
}

.luxury-homepage .header-search-button:hover,
.luxury-homepage .search-submit:hover {
	background: #F4E4C1 !important;
	box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

/* Mobile Menu Toggle */
.luxury-homepage .mobile-nav-toggle,
.luxury-homepage .nav-toggle {
	color: #C9A961 !important;
}

/* Dropdown Menu - Luxury Style */
.sub-menu,
.dropdown-menu,
.nav-dropdown {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%) !important;
	border: 1px solid rgba(201, 169, 97, 0.3);
	backdrop-filter: blur(20px) !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
	border-radius: 8px !important;
	padding: 8px 0;
	margin-top: 0 !important;
	min-width: 220px !important;
}

/* Fix submenu position */
.nav-dropdown {
	top: 100% !important;
}

.sub-menu li,
.dropdown-menu li,
.nav-dropdown li {
	margin: 0 !important;
	padding: 0 !important;
}

.sub-menu li a,
.dropdown-menu li a,
.nav-dropdown li a {
	color: rgba(255, 255, 255, 0.85) !important;
	padding: 12px 20px !important;
	border-bottom: 1px solid rgba(201, 169, 97, 0.1) !important;
	transition: all 0.3s ease !important;
	display: block !important;
}

.sub-menu li:last-child a,
.dropdown-menu li:last-child a,
.nav-dropdown li:last-child a {
	border-bottom: none !important;
}

.sub-menu li a:hover,
.dropdown-menu li a:hover,
.nav-dropdown li a:hover {
	background: linear-gradient(90deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%) !important;
	color: #C9A961 !important;
	padding-left: 25px !important;
	border-left: 3px solid #C9A961 !important;
}

/* Menu items with submenu - Arrow on right */
.menu-item-has-children>a,
.has-dropdown>a {
	position: relative !important;
	padding-right: 35px !important;
}

/* Hide default left arrow icon */
.menu-item-has-children>a i,
.has-dropdown>a i {
	display: none !important;
}

/* Add custom arrow on right */
.menu-item-has-children>a::after,
.has-dropdown>a::after {
	content: '▼' !important;
	position: absolute !important;
	right: 15px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	font-size: 10px !important;
	color: rgba(201, 169, 97, 0.6) !important;
	transition: all 0.3s ease !important;
}

.menu-item-has-children:hover>a::after,
.has-dropdown:hover>a::after {
	color: #C9A961 !important;
	transform: translateY(-50%) rotate(180deg) !important;
}

/* Submenu arrow indicator */
.nav-dropdown li.has-dropdown>a::after {
	content: '▶' !important;
	transform: translateY(-50%) !important;
}

.nav-dropdown li.has-dropdown:hover>a::after {
	transform: translateY(-50%) translateX(3px) !important;
}

/* ============================================
   SEARCH FORM STYLING
   ============================================ */
.header-search,
.search-wrapper {
	position: relative !important;
}

.searchform,
.search-form {
	position: relative !important;
	align-items: center !important;
}

.button.icon {
	padding-right: 40px;
}

.search-field,
input[type="search"] {
	background: rgba(10, 10, 10, 0.8) !important;
	border: 1px solid rgba(201, 169, 97, 0.3) !important;
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.9) !important;
	padding: 10px 45px 10px 20px !important;
	transition: all 0.3s ease !important;
}

.search-field:focus,
input[type="search"]:focus {
	border-color: #C9A961 !important;
	box-shadow: 0 0 15px rgba(201, 169, 97, 0.2) !important;
	outline: none !important;
}

.search-field::placeholder,
input[type="search"]::placeholder {
	color: rgba(255, 255, 255, 0.4) !important;
}

/* Search Submit Button */
.search-submit,
button[type="submit"].search-submit {
	position: absolute !important;
	right: 5px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	background: linear-gradient(135deg, #C9A961 0%, #F4E4C1 100%) !important;
	border: none !important;
	border-radius: 50% !important;
	width: 35px !important;
	height: 35px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	padding: 0 !important;
}

.search-submit:hover,
button[type="submit"].search-submit:hover {
	background: linear-gradient(135deg, #F4E4C1 0%, #C9A961 100%) !important;
	transform: translateY(-50%) scale(1.1) !important;
	box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4) !important;
}

.search-submit i,
.search-submit svg {
	color: #0a0a0a !important;
	font-size: 14px !important;
}


/* Header Icons */
.luxury-homepage .header-icon,
.luxury-homepage .nav-icon {
	color: rgba(255, 255, 255, 0.85) !important;
}

.luxury-homepage .header-icon:hover,
.luxury-homepage .nav-icon:hover {
	color: #C9A961 !important;
}

/* Top Bar (if exists) */
.luxury-homepage .header-top,
.luxury-homepage .top-bar {
	background: rgba(0, 0, 0, 0.5) !important;
	border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.luxury-homepage .header-top a,
.luxury-homepage .top-bar a {
	color: rgba(255, 255, 255, 0.7) !important;
}

.luxury-homepage .header-top a:hover,
.luxury-homepage .top-bar a:hover {
	color: #C9A961 !important;
}

/* Sticky Header */
.luxury-homepage .stuck .header-main,
.luxury-homepage .header-wrapper.stuck {
	background: rgba(10, 10, 10, 0.98) !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.search-field {
	width: 300px !important;
}

.content-area {
	background-color: #1a1a1a !important;
	padding-bottom: 30px;
}

.banner-home-img {
	max-width: 1270px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
}

.banner-home-img img {
	border-radius: 10px;
}

.nav>li>a {
	font-size: 16px;
	color: #000;
}

.mfp-wrap {
	z-index: 9999;
}

.header.show-on-scroll,
.stuck .header-main {
	background: #fff;
}

.autocomplete-suggestion .search-price {
	display: grid;
}

.dodo_review-button-container {
	border-top: 0px !important;
}

.product-thumbnails a {
	border-radius: 10px;
}


.nav-vertical-fly-out>li>a:hover {
	color: #ff6b00 !important;
}

.nav>li>a:hover {
	color: #ff6b00;
}

.form-flat input:not([type=submit]),
.form-flat select,
.form-flat textarea {
	border: 2px solid #ff6b00;
}

.form-flat input:not([type=submit]):focus,
.form-flat select:focus,
.form-flat textarea:focus {
	border-color: #ff6b00;
}

.bocuc3 {
	margin-top: -30px !important;
}

.bocuc3 .banner {
	border-radius: 10px;
}

.bocuc3 .col-inner {
	border-radius: 10px;
}

.bocuc3 .banner .fill {
	border-radius: 10px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.home .giua {
	margin-left: auto !important;
	margin-right: auto !important;
	border: 5px solid #db1116;
	border-radius: 15px;

}

.home .giua .product-small .box {
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.home .spdanhmuc .product-small .box {
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.home .star-rating span:before {
	color: #ff6b00 !important;
}

.home .is-divider {
	display: none;
}

.home .star-rating {
	margin: 0px !important;
}

.home .giua .col {
	padding: 0 0px 10px;
}

.big-text {
	order: 2;
	font-size: 20px;
	margin-top: 3px;
}

.nav-top-link {
	display: flex;
	flex-direction: column;
	align-items: normal !important;
}

.nav-top-link {
	color: #fff;
	text-transform: none !important;
}

.nav-top-link:hover,
.nav-top-link.active {
	color: #ff6b00 !important;
}

.nav-top-link img {
	position: absolute;
	left: -25px;
	top: 12px;
}

.header-nav .menu-item {
	margin-left: 25px;
}

.header-bottom {
	background-color: #fff !important;
	border-top: 1px solid #ebebf0;
	color: #000;
}

.header-bottom img {
	margin-left: 20px;
}

.header-bottom .header-block span {
	font-size: 13px !important;
}

.header-vertical-menu__opener {
	margin-right: 20px;
	;
}

.spmoi {
	background: #fff5e9;
	padding-top: 20px;
	padding-bottom: 20px;
}

.spmoi .sp {
	margin-left: auto !important;
	margin-right: auto !important;
}

.sp .box-text {
	background: #fff;
	padding: 5px;
	font-size: 15px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	height: 130px;
}

.sp .box-image {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.sp ins span.amount {
	color: #ff6b00;
}

.sp del span.amount {
	font-size: 11px;
	text-decoration: line-through;
}

.sp a {
	color: #1F2937;
}

.home .badge-container {
	margin: 0px !important;
	right: 0;
	left: unset;
}

.home .badge {
	height: 35px;
	width: 65px;

}

.home .badge-inner {
	background: #ef4444;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.section-title b {
	display: none;
}

.home .section-title-main {
	margin-left: auto;
	margin-right: auto;
	font-size: 25px;
	margin-top: 15px;
	color: #ff6b00;
}

.home .spdanhmuc {
	background: linear-gradient(rgba(255, 255, 255, 0) 22.49%, rgb(255, 255, 255) 73.49%), linear-gradient(264.03deg, rgb(247 183 136) -10.27%, rgb(255 217 161) 35.65%, rgb(255 151 75) 110.66%);
	margin-top: 30px;
	border-radius: 10px;
}

.home .spdanhmuc h2 {
	color: #27272a;
	font-size: 20px;
	margin-top: 10px;
}

.home .spdanhmuc .box-image img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.home .spdanhmuc .col {
	padding: 0 15px 0px;
}

.home .price-wrapper .price {
	margin-bottom: 0px;
}

.home .spdanhmuc .box-text {
	padding: 5px;
	background: #fff;
	font-size: 15px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.spdanhmuc del span.amount {
	font-size: 11px;
	text-decoration: line-through;
}

.category-page-row .shop-container .box {
	border-radius: 10px;
	box-shadow: 0 1px 2px 0 rgba(255, 215, 0, 0.6), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.category-page-row .shop-container .badge {
	height: 25px;
	width: 35px;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.category-page-row .shop-container .badge-inner {
	background: #ef4444;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
}


.category-page-row .shop-container .product-gifts {
	top: -20px;
	right: 10px;
	position: absolute;
}

.category-page-row .shop-container del span.amount {
	font-size: 12px;
	color: #27272a !important;
	text-decoration: line-through;
}

.category-page-row .shop-container ins span.amount {
	color: #ff6b00 !important;
}

.category-page-row .shop-container .box-text {
	padding: 5px;
}

.tintuc {
	background: #fff;
	border-radius: 10px;
	margin-top: 30px;
}

.tintuc h2 {
	font-size: 20px;
	color: #27272a;
	margin-top: 10px;
}

.tintuc .box-image img {
	border-radius: 10px;
}

.tintuc .col {
	padding: 0 15px 0px;
}

.home .product-small .box {
	border: 1px solid #eee;
	border-radius: 10px;
}

.home .product-small a {
	color: #27272a
}

.home h5 {
	color: #27272a;
}

.spdanhmuc ins span.amount {
	color: #ff6b00;
}

.danhmuc-home {
	margin-top: 30px;
}

.danhmuc-home .banner {
	border-radius: 10px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.danhmuc-home .danhmuccon2 {
	margin-top: 20px;
}

.footer-1 h3,
.footer-2 h3 {
	color: #27272a !important;
	font-size: 17px !important;
	margin-top: 10px !important;
}

.footer-1 li,
.footer-2 li {
	margin-left: 0px !important;
	margin-bottom: 5px !important;
	font-size: 14px !important;
}

.footer-2 {
	background-image: url(./images/footer-pattern.webp) !important;
	background-color: unset !important;
}

.copyright-footer {
	color: #fff !important;
}

.footer-1 img.size-full.alignnone {
	margin-bottom: 0px !important;
}

.footer-2 img.size-full.alignnone {
	margin-bottom: 0px !important;
}

.footer-1 p,
.footer-2 p {
	margin-bottom: 5px !important;
}

.footer .col {
	padding: 0 15px 0px !important;
}

.footer h4 {
	font-size: 16px !important;
	color: #e65b20 !important;
}

.footer {
	color: #27272A !important;
}

.footer-1 .large-4 .col-inner {
	border: 1px solid #e65b20 !important;
	border-radius: 10px !important;
	padding: 10px !important;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15) !important;
}

.footer-1 .section-title-center span {
	text-align: center !important;
	width: 100% !important;
	background: #eee !important;
	margin-top: -40px !important;
	border-radius: 10px !important;
	font-size: 17px !important;
	color: #21212A !important;
}

.footer-1 .section-title-container {
	margin-bottom: 10px !important;
}

/* Shop */
.shop-container .product-info .product-short-description li,
.shop-container .product-info .product-short-description p {
	margin-bottom: 0px;
}

.shop-container .product-info .product-short-description td {
	padding: 0px;
}

.shop-container .row .row:not(.row-collapse) {
	margin-left: 0px !important;
	margin-right: 0px !important;
}

.product_meta {
	border: 1px solid #ddd;
	margin-top: 10px;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.uudaithem {
	border: 1px solid #ddd;
	margin-top: 10px;
	border-radius: 10px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.uudaithem strong {
	color: #27272a;
	font-size: 16px;
	margin-bottom: 5px;
}

.uudaithem .col {
	padding: 0px;
}

.uudaithem li {
	margin-left: 35px !important;
	list-style: none;
	position: relative;
	font-size: 15px;
}

.uudaithem li:before {
	content: '';
	width: 18px;
	height: 18px;
	border: 2px solid #00b300;
	border-radius: 50%;
	position: absolute;
	left: -25px;
	top: 2px;
}

.uudaithem li:after {
	content: '';
	width: 5px;
	height: 10px;
	border-right: 2px solid #00b300;
	border-bottom: 2px solid #00b300;
	position: absolute;
	left: -19px;
	top: 4px;
	transform: rotate(45deg);
}

.uudaithem ul {
	margin-bottom: 5px;
}

.uudaithem .col-inner p {
	background: #ddd;
	padding: 7px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin-bottom: 5px;
}

.uudaithem li {
	color: #27272a;
	margin-bottom: 0px;
}

.goi-dien {
	background: #db1116;
	padding: 8px 20px 7px 20px;
	color: #fff;
	font-weight: bold;
	position: absolute;
	/* float: right; */
	right: 0;
	margin-top: -51px;
	margin-right: 35px;
	border-radius: 10px;
}

.single_add_to_cart_button {
	border-radius: 10px;
	margin-bottom: 5px;
}

.product-gifts {
	background: url(./images/bgsale.png);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	height: 125px;
	z-index: 3;
	margin-top: -125px;
	position: relative;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.home .product-gifts {
	background: url(./images/bgsale.png);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	z-index: 3;
	margin-top: -125px;
	position: absolute;
	right: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.product-gifts .ribbon {
	position: absolute;
	width: 86px;
	right: 9px;
	margin-top: -24px;
	z-index: 5;
	transform: rotate(-10deg);
}

.product-gifts .gift-image {
	margin-top: -20px;
	position: absolute;
	z-index: 4;
	right: 0;
}

.product-gifts .gift-image img {
	border-radius: 80px !important;
	border: 5px solid #f80722;
}

.product-gifts .gift-details p {
	width: 80%;
}

.product-gifts .gift-details {
	position: absolute;
	width: 94%;
	/* top: 10px; */
	margin-top: 80px;
	overflow: hidden;
	/* bottom: 20px; */
	color: #000;
	font-size: 19px;
	margin-left: 12px;
	font-weight: bold;

}

.product-small .box-image img {
	object-fit: contain;
	background: #0a0a0a;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	height: 235px;
}

.product-small .box-text {
	height: 100px;
}

.product-small .title-wrapper {
	max-height: 65px;
	overflow: hidden;
}

.product-small .product-gifts .gift-image {
	width: 70px;
	margin-top: -40px;
	right: -8px;
}

.product-small .product-gifts .gift-image img {
	border: 3px solid #f80722;
}

.product-small .product-gifts .gift-details {
	display: none;
}

.product-small .product-gifts {
	height: 0px;
}

.product-small .product-gifts .ribbon {
	position: absolute;
	width: 46px;
	right: -5px;
	margin-top: -41px;
	z-index: 999999;
	transform: rotate(-10deg);
}

.danh-gia {
	width: calc(40% - 10px);
	border: 1px solid rgba(201, 169, 97, 0.2);
	border-radius: 10px;
	margin-left: 10px;
}

.description_tab {
	display: none !important;
}

.wpkqcg_qrcode {
	width: auto;
	position: absolute;
	z-index: 2;
	right: 0;
	width: 20% !important;
	padding: 4px;
}

.shop-container .product-images {
	border: 2px solid #eee;
	border-radius: 10px;
}

.shop-container .image-tools a.button {
	top: -100px;
}

.shop-container .tab-panels {
	color: #27272a;
	width: 60%;
	border-radius: 10px;
}

.shop-container .tab-panels p {
	margin-bottom: 5px;
}

.shop-container .tab-panels li {
	margin-bottom: 0px;
}

.shop-container .product-summary form {
	margin-bottom: 5px;
}

.shop-container .product-summary .quantity {
	margin-bottom: 5px;
}

.shop-container .product-images img {
	border-radius: 10px;
	border-radius: 10px;
	max-height: 600px;
	object-fit: contain;
}

.shop-container .badge-container {
	margin: 0px !important;

}

.shop-container .product-images .badge {
	height: 40px;
	width: 80px;
}

.shop-container .product-images .badge-inner {
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background: #f80722;
}

.shop-container .product-info .product-title {
	font-size: 26px;
	color: #27272a;
}

.shop-container .product-info ins span.amount {
	color: #ea580c;
}

.shop-container .product-info del span.amount {
	font-size: 20px;
	color: #27272a !important;
	text-decoration: line-through;
}

del {
	text-decoration: unset;
}

.search-price del {
	text-decoration: line-through;
}

.shop-container .product-info .star-rating span:before {
	color: #ea580c;
}

.entry-summary ul li {
	margin-left: 0px;
}

.product-small .dodo-rating-count {
	display: none;
}

.button.alt,
.button.checkout,
.checkout-button,
.secondary {
	background: #ea580c;
}

#wrapper .product-page-title {
	background: #f1f1f1;
}

#wrapper .page-title-inner {
	min-height: 45px;
	padding-top: 2px;
	position: relative;
}

.breadcrumbs a {
	color: #C9A961 !important;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.breadcrumbs a:hover {
	color: #F4E4C1 !important;
	text-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
	transform: translateX(2px);
}

.breadcrumbs {
	color: #C9A961 !important;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.breadcrumbs::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #C9A961 0%, #F4E4C1 50%, #C9A961 100%);
	box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

.breadcrumbs span {
	color: rgba(255, 255, 255, 0.6) !important;
}

/* News */
.box-vertical .box-text {
	vertical-align: top;
	padding-top: 0px;
}

.post-item .box-image img {
	border-radius: 10px;
}

.entry-image img {
	border-radius: 10px;
	max-height: 300px;
	object-fit: cover;
	margin-bottom: 20px;
}

.entry-header h1 {
	color: #27272A;
}

.entry-content {
	color: #27272A;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: #fff;
}

.entry-content li {
	margin-bottom: 0px;
}

.entry-content p {
	margin-bottom: 10px;
}

.entry-divider {
	display: none;
}

.entry-meta {
	color: #27272A;
}

.entry-category a {
	background: #e65b20;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
}

.post-sidebar .is-divider {
	display: none;
}

.post-sidebar .box-text {
	padding-top: 0px;
}

.blog-archive .is-divider {
	display: none;
}

.blog-archive h5 {
	color: #27272A;
}

.post-sidebar .post-item {
	padding: 15px 0px 0 0px;
}

.post-sidebar h5 {
	color: #27272A;
	font-size: 14px;
}

/* Floating buttons */
.floating-buttons {
	position: fixed;
	bottom: 12%;
	right: 20px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.floating-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.floating-button:hover {
	transform: scale(1.1);
}

.zalo-button {
	background: #0068ff;
}

.phone-button {
	background: #ff0000;
	animation: shake 1.5s ease infinite;
	position: relative;
}

/* Hiệu ứng rung */
@keyframes shake {
	0% {
		transform: rotate(0deg);
	}

	10% {
		transform: rotate(-25deg);
	}

	20% {
		transform: rotate(25deg);
	}

	30% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

/* Hiệu ứng gợn sóng */
.phone-button::before,
.phone-button::after {
	content: '';
	position: absolute;
	border: 1px solid #ff0000;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	animation: pulse 1.5s linear infinite;
	opacity: 0;
}

.phone-button::after {
	animation-delay: .5s;
}

@keyframes pulse {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

/* Sửa lại hover để không ảnh hưởng đến hiệu ứng rung */
.phone-button:hover {
	transform: none !important;
}

.floating-button img {
	width: 35px;
	height: 35px;
}

/* Side Sliders */
.side-sliders {
	display: none;
	/* Ẩn mặc định trên mobile */
	opacity: 0;
	/* Ẩn ban đầu */
	transition: opacity 0.3s ease;
}

@media screen and (min-width: 1300px) {
	.side-sliders {
		display: block;
	}

	.side-slider {
		position: fixed;
		top: 50%;
		transform: translateY(-50%);
		z-index: 99;
		width: 150px;
		transition: opacity 0.3s ease;
	}

	.side-slider img {
		width: 100px;
		height: auto;
		display: block;
		border-radius: 10px;
	}

	.left-slider {
		left: calc((100% - 1200px) / 2 - 150px);
	}

	.right-slider {
		right: calc((100% - 1200px) / 2 - 150px - 50px);
	}

	/* Hiển thị khi scroll */
	.side-sliders.show {
		opacity: 1;
	}

	/* Đảm bảo slider không bị quá gần vào content khi màn hình vừa đủ 1300px */
	@media screen and (max-width: 1500px) {
		.left-slider {
			left: 0;
		}

		.right-slider {
			right: 0;
		}
	}

	/* Điều chỉnh vị trí khi scroll đến footer */
	.is-scrolled .side-slider {
		position: absolute;
		top: auto;
		bottom: 120%;
		/* Điều chỉnh khoảng cách với footer */
		transform: none;
	}

	.side-slider:hover {
		opacity: 0.9;
	}
}

/* Mobile styles */
@media screen and (max-width: 849px) {
	.home .product-gifts .gift-image {
		width: 60px;
		margin-top: -40px;
		right: -8px;
	}

	.home .product-gifts .gift-image img {
		border: 3px solid #f80722;
	}

	.home .product-gifts .gift-details {
		display: none;
	}

	.home .product-gifts {
		height: 0px;
	}

	.home .product-gifts .ribbon {
		position: absolute;
		width: 38px;
		right: -5px;
		margin-top: -41px;
		z-index: 999999;
		transform: rotate(-10deg);
	}

	.shop-container .product-gifts {
		background: url(./images/bgsale.png);
		background-size: contain;
		background-position: bottom;
		background-repeat: no-repeat;
		height: 125px;
		z-index: 9;
		margin-top: -125px;
		position: relative;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.category-page-row .shop-container .product-gifts {
		top: 30px;
		right: 5px;
		position: absolute;
	}

	.nav-tabs+.tab-panels {
		padding: 15px;
	}

	#wrapper .page-title-inner {
		display: none;
	}

	.shop-container .product-gifts .gift-image {
		margin-top: 25px;
		position: absolute;
		z-index: 9;
		right: 0;
		width: 60px;
	}

	.shop-container .product-gifts .ribbon {
		position: absolute;
		width: 44px;
		right: 2px;
		margin-top: 24px;
		z-index: 10;
		transform: rotate(-10deg);
	}

	.shop-container .product-main .product-gifts .ribbon {
		position: absolute;
		width: 55px;
		right: 7px;
		margin-top: 24px;
		z-index: 10;
		transform: rotate(-10deg);
	}

	.shop-container .product-main .product-gifts .gift-image {
		margin-top: 25px;
		position: absolute;
		z-index: 9;
		right: 0;
		width: 90px;
	}

	.shop-container .product-gifts .gift-details {
		position: absolute;
		width: 94%;
		/* top: 10px; */
		margin-top: 95px;
		overflow: hidden;
		/* bottom: 20px; */
		color: #000;
		font-size: 12px;
		margin-left: 12px;
		font-weight: bold;
	}

	.shop-container .product-info .product-title {
		font-size: 24px;
		color: #27272a;
	}

	.shop-container .product-info .product-short-description {
		font-size: 14px;
		color: #27272a;
	}

	.shop-container .product-info .product-short-description li {
		margin-bottom: 0px;
	}

	.goi-dien {
		background: #db1116;
		padding: 8px 20px 7px 20px;
		color: #fff;
		font-weight: bold;
		border-radius: 10px;
		display: block;
		width: 100%;
		text-align: center;
		position: unset;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 5px;
	}

	.shop-container .tab-panels {
		width: 100%;
	}

	.danh-gia {
		width: 100%;
		margin-left: 0px;
		margin-top: 10px;
		border: 0px;
	}

	.product-main {
		padding: 0px;
	}

	.off-canvas-right .mfp-content,
	.off-canvas-left .mfp-content {
		--drawer-width: 350px !important;
	}

	.off-canvas .sidebar-menu {
		padding: 0px;
	}





	.header-main li.html.custom {
		display: block;
	}

	.dodo-mb-latest .product-info h4 {
		margin: 0px;
	}

	.dodo-mb-latest .product-info .price ins {
		padding: 0px;
	}

	.dodo-mb-latest .product-info .price {
		margin: 0px;
	}

	.dodo-mb-latest .product-info {
		padding: 0px 5px 0px 5px;
	}

	.dodo-mb-latest del span.amount {
		text-decoration: line-through;
	}

	.shop-container .product-images img {
		max-height: 400px;
	}


	.danhmuc-mobile {
		padding: 0 5px 0 5px;
		margin-top: 0px !important;
	}

	.danhmuc-mobile .col {
		padding: 8px;
	}

	.danhmuc-mobile .col img {
		border-radius: 10px;
		border: 1px solid #e65b20;
	}

	.danhmuc-mobile .section-title-container {
		margin-bottom: 0px;
	}

	.danhmuc-mobile .section-title-main {
		margin-top: 0px;
		font-size: 20px;
	}

	#logo img {
		max-height: 60px;
		padding: 5px;
	}


}

/* ============================================
   Homepage Styles - Két Sắt & Khóa Vân Tay
   ============================================ */

/* Hero Section - Full Width - Luxury Gold & Black */
.homepage-hero-section {
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	padding: 0;
	position: relative;
	overflow: hidden;
	animation: gradientShift 15s ease infinite;
	background-size: 200% 200%;
	transition: background 1s ease;
	width: 100%;
	clear: both;
}

/* Override Flatsome container constraints for hero section */
.homepage-hero-section .row.row-main {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.homepage-hero-section .large-12.col {
	padding-left: 0 !important;
	padding-right: 0 !important;
	width: 100% !important;
}

.homepage-hero-section .col-inner {
	padding: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	position: relative;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.homepage-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
	animation: pulseOverlay 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes pulseOverlay {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.8;
	}
}

.homepage-hero-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 30%, transparent 60%),
		radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.12) 0%, rgba(255, 165, 0, 0.06) 35%, transparent 65%),
		radial-gradient(circle at 50% 20%, rgba(184, 134, 11, 0.2) 0%, transparent 50%);
	z-index: 1;
	pointer-events: none;
	animation: radialPulse 12s ease-in-out infinite;
}

@keyframes radialPulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

/* Animated Background Elements */
.hero-animated-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

/* Floating Circles - Luxury Gold & Dark */
.floating-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 215, 0, 0.12);
	border: 2px solid rgba(255, 215, 0, 0.35);
	backdrop-filter: blur(10px);
	animation: float 20s ease-in-out infinite;
	will-change: transform;
	transition: transform 0.1s ease-out;
	--mouse-x: 0px;
	--mouse-y: 0px;
	transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.25), inset 0 0 20px rgba(255, 215, 0, 0.08);
}

.circle-1 {
	width: 200px;
	height: 200px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
	box-shadow: 0 0 50px rgba(255, 215, 0, 0.4), 0 0 100px rgba(255, 215, 0, 0.15);
	background: rgba(255, 215, 0, 0.15);
	border-color: rgba(255, 215, 0, 0.4);
}

.circle-2 {
	width: 150px;
	height: 150px;
	top: 60%;
	right: 10%;
	animation-delay: 2s;
	box-shadow: 0 0 40px rgba(255, 215, 0, 0.35), 0 0 80px rgba(255, 215, 0, 0.12);
	background: rgba(255, 215, 0, 0.14);
	border-color: rgba(255, 215, 0, 0.38);
}

.circle-3 {
	width: 100px;
	height: 100px;
	top: 30%;
	right: 20%;
	animation-delay: 4s;
	box-shadow: 0 0 35px rgba(255, 215, 0, 0.4), 0 0 70px rgba(255, 215, 0, 0.15);
	background: rgba(255, 215, 0, 0.15);
	border-color: rgba(255, 215, 0, 0.4);
}

.circle-4 {
	width: 80px;
	height: 80px;
	bottom: 20%;
	left: 15%;
	animation-delay: 6s;
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.35), 0 0 60px rgba(255, 215, 0, 0.12);
	background: rgba(255, 215, 0, 0.12);
	border-color: rgba(255, 215, 0, 0.35);
}

.circle-5 {
	width: 120px;
	height: 120px;
	bottom: 10%;
	right: 5%;
	animation-delay: 8s;
	box-shadow: 0 0 45px rgba(255, 215, 0, 0.4), 0 0 90px rgba(255, 215, 0, 0.15);
	background: rgba(255, 215, 0, 0.15);
	border-color: rgba(255, 215, 0, 0.4);
}

@keyframes float {

	0%,
	100% {
		transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translate(0, 0) scale(1);
		opacity: 0.6;
	}

	25% {
		transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translate(30px, -30px) scale(1.1);
		opacity: 0.8;
	}

	50% {
		transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translate(-20px, 20px) scale(0.9);
		opacity: 0.7;
	}

	75% {
		transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translate(20px, 30px) scale(1.05);
		opacity: 0.9;
	}
}

/* Tech Grid Pattern - Luxury Gold */
.tech-grid {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(rgba(255, 215, 0, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 215, 0, 0.12) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.4;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(50px, 50px);
	}
}

/* Tech Lines */
.tech-lines {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.tech-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0.5), transparent);
	height: 2px;
	animation: lineMove 15s linear infinite;
}

.line-1 {
	width: 300px;
	top: 20%;
	left: -300px;
	animation-delay: 0s;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.25);
}

.line-2 {
	width: 400px;
	top: 50%;
	left: -400px;
	animation-delay: 5s;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.25);
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0.4), transparent);
}

.line-3 {
	width: 250px;
	top: 80%;
	left: -250px;
	animation-delay: 10s;
	box-shadow: 0 0 18px rgba(255, 215, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.25);
}

@keyframes lineMove {
	0% {
		left: -400px;
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

.hero-banner-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	padding: 80px 0 60px;
}

.hero-slider-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 500px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
	box-sizing: border-box;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
	box-sizing: border-box;
}

.hero-slide.active {
	position: absolute;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.hero-slide:not(.active) {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Slide 1: Két Sắt - Background xanh lá đậm với accent vàng */
.hero-slide-safe {
	position: relative;
}

/* Slide specific backgrounds sẽ được xử lý bởi JavaScript */
.hero-slide-safe,
.hero-slide-lock {
	position: relative;
}

.hero-slide.active .hero-text {
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-slide.active .hero-title::after {
	animation: underlineExpand 1.5s ease-out 0.5s both;
}

.hero-slide.active .hero-subtitle {
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-slide.active .hero-features {
	animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-slide.active .hero-buttons {
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-slide.active .hero-image {
	animation: fadeInRight 0.8s ease-out 0.4s both;
}

/* Slide Transition Effects - Removed duplicate */

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 3;
	min-height: 500px;
}

/* Prevent overflow on hero content */
.hero-content>* {
	max-width: 100%;
	box-sizing: border-box;
}

.hero-text {
	color: #fff;
	position: relative;
	z-index: 3;
}

.hero-badge {
	display: inline-block;
	padding: 10px 25px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
	border: 2px solid rgba(255, 215, 0, 0.6);
	border-radius: 50px;
	color: #FFD700;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
	backdrop-filter: blur(15px);
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35), 0 0 40px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	animation: badgePulse 3s ease-in-out infinite;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes badgePulse {

	0%,
	100% {
		box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35), 0 0 40px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 215, 0, 0.6);
	}

	50% {
		box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
		border-color: rgba(255, 215, 0, 0.8);
	}
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 30px;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.95);
	font-size: 16px;
	font-weight: 500;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-feature-item svg {
	flex-shrink: 0;
	filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

.hero-feature-item svg path {
	stroke: #FFD700;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.2;
	color: #ffffff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.15);
	letter-spacing: -0.5px;
	position: relative;
}

@keyframes titleGlow {

	0%,
	100% {
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.25);
	}

	50% {
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.4);
	}
}

.hero-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.3);
	animation: underlineExpand 1.5s ease-out 0.5s both;
}

@keyframes underlineExpand {
	from {
		width: 0;
		opacity: 0;
	}

	to {
		width: 100px;
		opacity: 1;
	}
}

.hero-subtitle {
	font-size: 22px;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0.3px;
	animation: fadeInUp 1s ease-out 0.3s both;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .primary-button,
.hero-buttons .secondary-button {
	position: relative;
	overflow: hidden;
}

.hero-buttons .primary-button::before,
.hero-buttons .secondary-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.hero-buttons .primary-button:hover::before,
.hero-buttons .secondary-button:hover::before {
	width: 300px;
	height: 300px;
}

.primary-button {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	color: #000000;
	padding: 18px 45px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.primary-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.primary-button:hover::before {
	left: 100%;
}

.primary-button:hover {
	background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FFA500 100%);
	border-color: #FFA500;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
	color: #000000;
}

.secondary-button {
	background: rgba(0, 0, 0, 0.4);
	color: #FFD700;
	padding: 18px 45px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 215, 0, 0.6);
	backdrop-filter: blur(15px);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.15);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.4);
}

.secondary-button:hover {
	background: rgba(0, 0, 0, 0.6);
	border-color: rgba(255, 215, 0, 0.9);
	color: #FFA500;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3);
}

.hero-image {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Grid layout cho 6 ảnh - 2 hàng x 3 cột - Elegant & Simple */
.hero-images-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
	width: 100%;
	max-width: 900px;
	height: 500px;
	position: relative;
}

/* Mỗi ảnh item - Elegant & Simple */
.hero-image-item {
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 1;
	cursor: pointer;
}

.hero-slide.active .hero-image-item {
	opacity: 1;
}

.hero-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(255, 215, 0, 0.15);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(45, 27, 14, 0.2);
	/* Màu nâu đậm nhẹ */
	width: 100%;
	height: 100%;
	position: relative;
}

/* Hiệu ứng viền chạy quanh hình ảnh - Game Style (chạy dọc theo border) */
.hero-image-border-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
	pointer-events: none;
	transition: opacity 0.3s ease;
	overflow: visible;
	will-change: transform, filter;
}

.hero-image-border-animation svg {
	width: 100%;
	height: 100%;
}

.hero-image-border-animation rect {
	stroke-dasharray: 90 90;
	stroke-dashoffset: 0;
	stroke: #FFD700;
	stroke-width: 2;
	filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 15px rgba(255, 165, 0, 0.5));
	animation: borderRun 5s linear infinite;
	stroke-linejoin: round;
	stroke-linecap: round;
}

.hero-slide.active .hero-image-border-animation {
	opacity: 1;
}

.hero-image-item:hover .hero-image-border-animation {
	opacity: 1;
}

@keyframes borderRun {
	0% {
		stroke-dashoffset: 0;
		filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 15px rgba(255, 165, 0, 0.5));
	}

	25% {
		filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 20px rgba(255, 165, 0, 0.7));
	}

	50% {
		stroke-dashoffset: 90;
		filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 15px rgba(255, 165, 0, 0.5));
	}

	75% {
		filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 20px rgba(255, 165, 0, 0.7));
	}

	100% {
		stroke-dashoffset: 180;
		/* Với pathLength=360 và stroke-dasharray=90 90, tạo đúng 2 đoạn đối xứng, mỗi đoạn 90, chạy mượt */
		filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 15px rgba(255, 165, 0, 0.5));
	}
}

.hero-image-item:hover .hero-image-wrapper {
	border-color: rgba(255, 215, 0, 0.7);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.8),
		0 0 40px rgba(255, 215, 0, 0.4),
		0 0 60px rgba(255, 215, 0, 0.25);
}

/* Bỏ hiệu ứng zoom khi hover */
.hero-image-item:hover {
	transform: none !important;
}

.hero-image-item:hover .hero-slide-image {
	transform: none !important;
	filter: none !important;
	animation-play-state: running !important;
}



/* Animation cho wrapper đã được xóa - chỉ animate image */

.hero-slide.active .hero-image-wrapper::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border: 3px solid rgba(255, 215, 0, 0.35);
	border-radius: 30px;
	animation: borderPulse 3s ease-in-out infinite;
	z-index: -1;
	box-shadow: 0 0 40px rgba(255, 215, 0, 0.25), inset 0 0 40px rgba(255, 215, 0, 0.08);
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translateX(30px);
	}

	to {
		opacity: 1;
		transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) translateX(0);
	}
}

.hero-slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
	z-index: 1;
	will-change: transform;
}

/* Animation float riêng cho từng ảnh với delay khác nhau */
.hero-slide.active .hero-image-item-1 .hero-slide-image {
	animation: imageFloat1 6s ease-in-out infinite;
}

.hero-slide.active .hero-image-item-2 .hero-slide-image {
	animation: imageFloat2 7s ease-in-out infinite;
}

.hero-slide.active .hero-image-item-3 .hero-slide-image {
	animation: imageFloat3 8s ease-in-out infinite;
}

.hero-slide.active .hero-image-item-4 .hero-slide-image {
	animation: imageFloat4 6.5s ease-in-out infinite;
}

.hero-slide.active .hero-image-item-5 .hero-slide-image {
	animation: imageFloat1 7s ease-in-out infinite;
}

.hero-slide.active .hero-image-item-6 .hero-slide-image {
	animation: imageFloat2 6.8s ease-in-out infinite;
}

/* Bỏ hiệu ứng zoom khi hover */
.hero-image-item:hover .hero-slide-image {
	transform: none;
	filter: none;
	animation-play-state: running;
}

/* Fallback cho .hero-image img (nếu có) */
.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 22px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: transform 0.4s ease, filter 0.4s ease;
	z-index: 1;
}

/* Keyframes cho từng ảnh với chuyển động khác nhau */
@keyframes imageFloat1 {

	0%,
	100% {
		transform: translateY(0) translateX(0) scale(1);
		filter: brightness(1) contrast(1) saturate(1);
	}

	50% {
		transform: translateY(-10px) translateX(-5px) scale(1.02);
		filter: brightness(1.1) contrast(1.05) saturate(1.05);
	}
}

@keyframes imageFloat2 {

	0%,
	100% {
		transform: translateY(0) translateX(0) scale(1);
		filter: brightness(1) contrast(1) saturate(1);
	}

	50% {
		transform: translateY(-8px) translateX(5px) scale(1.02);
		filter: brightness(1.08) contrast(1.05) saturate(1.05);
	}
}

@keyframes imageFloat3 {

	0%,
	100% {
		transform: translateY(0) translateX(0) scale(1);
		filter: brightness(1) contrast(1) saturate(1);
	}

	50% {
		transform: translateY(-12px) translateX(-3px) scale(1.02);
		filter: brightness(1.12) contrast(1.05) saturate(1.05);
	}
}

@keyframes imageFloat4 {

	0%,
	100% {
		transform: translateY(0) translateX(0) scale(1);
		filter: brightness(1) contrast(1) saturate(1);
	}

	50% {
		transform: translateY(-9px) translateX(4px) scale(1.02);
		filter: brightness(1.09) contrast(1.05) saturate(1.05);
	}
}

.hero-image::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border: 2px solid rgba(255, 215, 0, 0.2);
	border-radius: 30px;
	animation: borderPulse 3s ease-in-out infinite;
	z-index: -1;
}

@keyframes borderPulse {

	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
		border-color: rgba(255, 215, 0, 0.35);
		box-shadow: 0 0 40px rgba(255, 215, 0, 0.25), inset 0 0 40px rgba(255, 215, 0, 0.08);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
		border-color: rgba(255, 215, 0, 0.6);
		box-shadow: 0 0 60px rgba(255, 215, 0, 0.4), inset 0 0 60px rgba(255, 215, 0, 0.15);
	}
}

.hero-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 450px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
	border-radius: 25px;
	padding: 50px;
	text-align: center;
	border: 2px solid rgba(255, 215, 0, 0.2);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	animation: placeholderGlow 4s ease-in-out infinite;
}

@keyframes placeholderGlow {

	0%,
	100% {
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
		border-color: rgba(255, 215, 0, 0.2);
	}

	50% {
		box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
		border-color: rgba(255, 215, 0, 0.4);
	}
}

.hero-placeholder::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.08), transparent);
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.hero-placeholder svg {
	opacity: 0.4;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	animation: iconPulse 2s ease-in-out infinite;
	position: relative;
	z-index: 1;
}

@keyframes iconPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.4;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.6;
	}
}

/* Hero Slider Navigation - Luxury Gold */
.hero-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(255, 215, 0, 0.6);
	color: #FFD700;
	cursor: pointer;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(15px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-slider-nav:hover {
	background: rgba(255, 215, 0, 0.25);
	border-color: #FFA500;
	color: #FFA500;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.hero-slider-nav:active {
	transform: translateY(-50%) scale(0.95);
}

.hero-slider-prev {
	left: 20px;
}

.hero-slider-next {
	right: 20px;
}

.hero-slider-nav svg {
	width: 24px;
	height: 24px;
	filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

/* Hero Slider Dots */
.hero-slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 100;
}

.hero-dot {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(255, 215, 0, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	padding: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.15);
}

.hero-dot::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	background: #FFD700;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.hero-dot.active {
	background: rgba(255, 215, 0, 0.3);
	border-color: #FFA500;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-dot.active::before {
	width: 8px;
	height: 8px;
	background: #FFA500;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-dot:hover {
	background: rgba(255, 215, 0, 0.25);
	border-color: #FFA500;
	transform: scale(1.2);
	box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.25);
}

.category-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #f5f5f5;
	padding: 40px;
}

.category-placeholder {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.2) 50%, rgba(15, 23, 42, 0.3) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
}

.category-placeholder svg path {
	stroke: #FFD700;
}

.about-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 450px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(15, 23, 42, 0.4) 100%);
	border-radius: 25px;
	padding: 50px;
	text-align: center;
	border: 2px solid rgba(255, 215, 0, 0.3);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.about-placeholder svg path {
	stroke: #FFD700;
}

.about-placeholder svg {
	opacity: 0.5;
	filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 30px;
	z-index: 1;
}

.section-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	letter-spacing: 1px;
	position: relative;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.section-subtitle {
	font-size: 19px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Brands Section - Luxury Style */
.homepage-brands-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-brands-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.homepage-brands-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

/* Brands Title - Nổi bật phía trên logo */
.brands-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 30px;
	z-index: 1;
}

.brands-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.brands-heading {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 1px;
	line-height: 1.4;
	margin: 0;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

.brands-names {
	color: #FFD700;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
	font-weight: 800;
	position: relative;
	display: inline-block;
}

.brands-names::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.brands-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.brand-item {
	flex: 1;
	max-width: 320px;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.brand-logo-wrapper {
	position: relative;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 26, 26, 0.98) 50%, rgba(15, 23, 42, 0.95) 100%);
	border-radius: 20px;
	padding: 50px 35px;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 0 2px rgba(255, 215, 0, 0.3),
		inset 0 0 30px rgba(255, 215, 0, 0.05);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 215, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	overflow: hidden;
}

.brand-logo-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 30%, #FFD700 50%, #FFA500 70%, #FFD700 100%);
	border-radius: 20px 20px 0 0;
	opacity: 0.6;
	transition: opacity 0.5s ease, height 0.5s ease;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
	z-index: 2;
}

.brand-logo-wrapper::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 0;
}

.brand-item:hover {
	transform: translateY(-12px) scale(1.02);
}

.brand-item:hover .brand-logo-wrapper {
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.8),
		0 0 0 2px rgba(255, 215, 0, 0.6),
		0 0 40px rgba(255, 215, 0, 0.4),
		inset 0 0 50px rgba(255, 215, 0, 0.1);
	border-color: rgba(255, 215, 0, 0.8);
	background: linear-gradient(135deg, rgba(10, 22, 40, 1) 0%, rgba(26, 26, 26, 1) 50%, rgba(15, 23, 42, 1) 100%);
}

.brand-item:hover .brand-logo-wrapper::before {
	opacity: 1;
	height: 5px;
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.brand-item:hover .brand-logo-wrapper::after {
	opacity: 1;
}

.brand-logo {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	filter: brightness(0.9) contrast(1.1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
}

.brand-item:hover .brand-logo {
	filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
	transform: scale(1.08);
}

.brand-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 80px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
	border-radius: 10px;
	border: 2px dashed rgba(255, 215, 0, 0.3);
}

.brand-name {
	font-size: 18px;
	font-weight: 600;
	color: #FFD700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Categories Section - Luxury Style */
.homepage-categories-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-categories-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
	z-index: 1;
}

.homepage-categories-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.category-card {
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 26, 26, 0.98) 50%, rgba(15, 23, 42, 0.95) 100%);
	border-radius: 20px;
	overflow: hidden;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 0 2px rgba(255, 215, 0, 0.3),
		inset 0 0 30px rgba(255, 215, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border: 2px solid rgba(255, 215, 0, 0.4);
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	opacity: 0.6;
	transition: opacity 0.4s ease;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
	z-index: 1;
}

.category-card:hover {
	transform: translateY(-12px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.8),
		0 0 0 2px rgba(255, 215, 0, 0.8),
		0 0 40px rgba(255, 215, 0, 0.5),
		inset 0 0 50px rgba(255, 215, 0, 0.1);
	border-color: rgba(255, 215, 0, 0.8);
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 26, 26, 1) 50%, rgba(15, 23, 42, 0.98) 100%);
}

.category-card:hover::before {
	opacity: 1;
}

.category-image {
	position: relative;
	overflow: hidden;
	height: 250px;
	background: rgba(0, 0, 0, 0.2);
}

.category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
	transform: scale(1.1);
}

.category-content {
	padding: 25px;
}

.category-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	letter-spacing: -0.3px;
	line-height: 1.3;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	position: relative;
}

.category-content p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 14px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.category-link {
	color: #FFD700;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.category-link:hover {
	color: #FFD700;
	gap: 12px;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.category-link::after {
	content: '→';
	transition: transform 0.3s ease;
}

.category-link:hover::after {
	transform: translateX(4px);
}

/* Featured Products Section */
.homepage-featured-products-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-featured-products-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
	z-index: 1;
}

.homepage-featured-products-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.homepage-featured-products-section .col-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

/* WooCommerce Products Grid - 5 Columns */
.homepage-featured-products-section ul.products {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.homepage-featured-products-section ul.products li.product {
	margin: 0;
	width: 100%;
	float: none;
}

/* Product Card Styling - Luxury Black & Blue */
.homepage-featured-products-section .product {
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 26, 26, 1) 50%, rgba(15, 23, 42, 0.98) 100%);
	border-radius: 16px;
	overflow: hidden;
	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.8),
		0 0 0 3px rgba(255, 215, 0, 0.5),
		inset 0 0 40px rgba(255, 215, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border: 3px solid rgba(255, 215, 0, 0.6);
	padding: 0;
	display: flex;
	flex-direction: column;
}

.homepage-featured-products-section .product::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	opacity: 0.8;
	transition: opacity 0.4s ease;
	box-shadow: 0 0 25px rgba(255, 215, 0, 1);
	z-index: 1;
}

.homepage-featured-products-section .product:hover {
	transform: translateY(-10px);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.9),
		0 0 0 3px rgba(255, 215, 0, 0.9),
		0 0 50px rgba(255, 215, 0, 0.6),
		inset 0 0 60px rgba(255, 215, 0, 0.15);
	border-color: rgba(255, 215, 0, 0.9);
	background: linear-gradient(135deg, rgba(10, 22, 40, 1) 0%, rgba(26, 26, 26, 1) 50%, rgba(15, 23, 42, 1) 100%);
}

.homepage-featured-products-section .product:hover::before {
	opacity: 1;
	height: 6px;
	box-shadow: 0 0 30px rgba(255, 215, 0, 1);
}

.homepage-featured-products-section .product img {
	border-radius: 0;
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
	display: block;
	background: rgba(0, 0, 0, 0.3);
}

.homepage-featured-products-section .product:hover img {
	transform: scale(1.08);
}

.homepage-featured-products-section .product .woocommerce-loop-product__link {
	display: block;
	overflow: hidden;
	position: relative;
}

.homepage-featured-products-section .product .woocommerce-loop-product__title,
.homepage-featured-products-section .product h2,
.homepage-featured-products-section .product h3 {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	margin: 18px 18px 12px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.3);
	line-height: 1.5;
	letter-spacing: 0.2px;
	min-height: 45px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.homepage-featured-products-section .product .woocommerce-loop-product__title a,
.homepage-featured-products-section .product h2 a,
.homepage-featured-products-section .product h3 a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.homepage-featured-products-section .product .woocommerce-loop-product__title a:hover,
.homepage-featured-products-section .product h2 a:hover,
.homepage-featured-products-section .product h3 a:hover {
	color: #FFD700;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.homepage-featured-products-section .product .price {
	color: #FFD700;
	font-size: 20px;
	font-weight: 800;
	margin: 0 18px 18px;
	text-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.8);
	letter-spacing: 0.5px;
}

.homepage-featured-products-section .product .price del {
	color: rgba(255, 255, 255, 0.4);
	opacity: 0.5;
	font-size: 16px;
	font-weight: 500;
}

.homepage-featured-products-section .product .price ins {
	color: #FFD700;
	text-decoration: none;
	font-weight: 800;
	text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.homepage-featured-products-section .product .button,
.homepage-featured-products-section .product .add_to_cart_button {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.15) 100%);
	color: #FFD700;
	border: 2px solid rgba(255, 215, 0, 0.7);
	border-radius: 10px;
	padding: 12px 24px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
	margin: 0 18px 18px;
	display: inline-block;
	text-decoration: none;
	text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
	letter-spacing: 0.3px;
}

.homepage-featured-products-section .product .button:hover,
.homepage-featured-products-section .product .add_to_cart_button:hover {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #000000;
	border-color: #FFD700;
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.7), 0 6px 20px rgba(255, 215, 0, 0.4);
	transform: translateY(-3px);
	text-shadow: none;
}

/* Features Section - Luxury Gold & Black */
.homepage-features-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
	z-index: 1;
}

.homepage-features-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.homepage-features-section .col-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.feature-item {
	text-align: center;
	padding: 40px 25px;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 26, 26, 0.98) 50%, rgba(15, 23, 42, 0.95) 100%);
	border-radius: 20px;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 0 2px rgba(255, 215, 0, 0.3),
		inset 0 0 30px rgba(255, 215, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(255, 215, 0, 0.4);
}

.feature-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	opacity: 0.6;
	transition: opacity 0.4s ease;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
	z-index: 1;
}

.feature-item:hover {
	transform: translateY(-12px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.8),
		0 0 0 2px rgba(255, 215, 0, 0.8),
		0 0 40px rgba(255, 215, 0, 0.5),
		inset 0 0 50px rgba(255, 215, 0, 0.1);
	border-color: rgba(255, 215, 0, 0.8);
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 26, 26, 1) 50%, rgba(15, 23, 42, 0.98) 100%);
}

.feature-item:hover::before {
	opacity: 1;
}

.feature-icon {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	position: relative;
}

.feature-icon svg {
	filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
	transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon svg {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.6));
}

.feature-icon svg path {
	stroke: #FFD700;
	stroke-width: 2;
}

.feature-item h3 {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 18px;
	letter-spacing: -0.3px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-item p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	font-size: 15px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* About Section */
.homepage-about-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-about-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
	z-index: 1;
}

.homepage-about-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.homepage-about-section .col-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 35px;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 20px;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

.about-text h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	border-radius: 2px;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.about-text p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.9;
	margin-bottom: 25px;
	font-size: 17px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.about-list {
	list-style: none;
	padding: 0;
	margin-top: 35px;
}

.about-list li {
	padding: 12px 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 17px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.about-list li:hover {
	color: #FFA500;
	padding-left: 8px;
}

.about-list li::before {
	content: '✓';
	color: #FFD700;
	font-size: 20px;
	font-weight: bold;
	text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 25px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 215, 0, 0.25), 0 0 40px rgba(255, 215, 0, 0.15);
	border: 3px solid rgba(255, 215, 0, 0.2);
	transition: transform 0.4s ease;
}

.about-image:hover img {
	transform: scale(1.02);
}

/* CTA Section - Luxury Gold & Black */
.homepage-cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	color: #fff;
	text-align: center;
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
	z-index: 1;
}

.homepage-cta-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.homepage-cta-section .col-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-content h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.4);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cta-content p {
	font-size: 22px;
	margin-bottom: 50px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-buttons .primary-button {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #000000;
	border-color: #FFD700;
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-buttons .primary-button:hover {
	background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
	border-color: #FFA500;
	color: #000000;
	box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.cta-buttons .secondary-button {
	background: rgba(0, 0, 0, 0.4);
	color: #FFD700;
	border-color: rgba(255, 215, 0, 0.6);
	backdrop-filter: blur(10px);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.cta-buttons .secondary-button:hover {
	background: rgba(255, 215, 0, 0.2);
	border-color: rgba(255, 215, 0, 0.8);
	color: #FFA500;
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.button.large {
	padding: 18px 50px;
	font-size: 18px;
}

/* News Section */
.homepage-news-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d1b0e 50%, #1a1a1a 75%, #000000 100%);
	position: relative;
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	overflow: hidden;
}

.homepage-news-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.6) 80%, transparent 100%);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
	z-index: 1;
}

.homepage-news-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.homepage-news-section .col-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.news-item {
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 26, 26, 0.98) 50%, rgba(15, 23, 42, 0.95) 100%);
	border-radius: 20px;
	overflow: hidden;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 0 2px rgba(255, 215, 0, 0.3),
		inset 0 0 30px rgba(255, 215, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border: 2px solid rgba(255, 215, 0, 0.4);
}

.news-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	opacity: 0.6;
	transition: opacity 0.4s ease;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
	z-index: 1;
}

.news-item:hover {
	transform: translateY(-12px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.8),
		0 0 0 2px rgba(255, 215, 0, 0.8),
		0 0 40px rgba(255, 215, 0, 0.5),
		inset 0 0 50px rgba(255, 215, 0, 0.1);
	border-color: rgba(255, 215, 0, 0.8);
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(26, 26, 26, 1) 50%, rgba(15, 23, 42, 0.98) 100%);
}

.news-item:hover::before {
	opacity: 1;
}

.news-image {
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
	transform: scale(1.1);
}

.news-content {
	padding: 25px;
}

.news-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 18px;
	letter-spacing: -0.3px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-content h3 a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-content h3 a:hover {
	color: #FFD700;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.news-excerpt {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 18px;
	font-size: 15px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.news-link {
	color: #FFD700;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.news-link:hover {
	color: #FFD700;
	gap: 12px;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.news-link::after {
	content: '→';
	transition: transform 0.3s ease;
}

.news-link:hover::after {
	transform: translateX(4px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
	.homepage-hero-section {
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0;
	}

	.hero-banner-container {
		padding: 70px 0 50px;
	}

	.homepage-hero-section .row.row-main,
	.homepage-hero-section .large-12.col,
	.homepage-hero-section .col-inner {
		width: 100% !important;
		max-width: 100% !important;
	}

	.hero-slider-wrapper,
	.hero-slider,
	.hero-slide {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	.hero-slider-nav {
		width: 40px;
		height: 40px;
	}

	.hero-slider-prev {
		left: 10px;
	}

	.hero-slider-next {
		right: 10px;
	}

	.hero-slider-nav svg {
		width: 20px;
		height: 20px;
	}

	.hero-slider-dots {
		bottom: 20px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 15px;
		min-height: 450px;
	}

	/* Hero Images Grid - Tablet */
	.hero-images-grid {
		max-width: 700px;
		height: 400px;
		gap: 15px;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}

	.hero-image-item {
		transform: none !important;
	}

	.hero-slide.active .hero-image-item {
		transform: none !important;
	}

	.hero-image-item:hover {
		transform: none !important;
	}

	.hero-image-wrapper {
		border-radius: 15px;
	}

	.hero-slide-image {
		border-radius: 13px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-features {
		gap: 10px;
	}

	.hero-feature-item {
		font-size: 14px;
	}

	/* Brands Section - Tablet */
	.brands-title {
		margin-bottom: 40px;
		padding-bottom: 25px;
	}

	.brands-heading {
		font-size: 24px;
		letter-spacing: 0.5px;
	}

	.brands-container {
		gap: 40px;
		padding: 0 30px;
	}

	.brand-logo-wrapper {
		padding: 40px 30px;
		min-height: 160px;
		border-radius: 18px;
	}

	.brand-item:hover {
		transform: translateY(-10px) scale(1.01);
	}

	/* Categories Section - Tablet */
	.section-header {
		margin-bottom: 50px;
		padding-bottom: 25px;
	}

	.section-title {
		font-size: 36px;
	}

	.section-subtitle {
		font-size: 17px;
	}

	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
		max-width: 1200px;
	}

	.category-content h3 {
		font-size: 20px;
	}

	.category-content p {
		font-size: 13px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {

	.form-flat input:not([type=submit]),
	.form-flat select,
	.form-flat textarea {
		width: 100vw !important;
		margin-top: 10px;
	}

	.header li .html .live-search-results {
		width: 100vw;
		left: 0;
		right: 0;
	}

	.header-search .nav-dropdown {
		border: unset !important;
		padding: 0px !important;
	}

	.header-search .button.icon {
		padding-right: 0px;
	}

	.col .live-search-results,
	.header .search-form .live-search-results,
	.header-block .live-search-results {
		color: #fff;
	}

	.header-search-form {
		width: 100%;
	}

	.search-field,
	input[type="search"] {
		border-radius: 0px !important;
	}

	.homepage-hero-section {
		padding: 0;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hero-banner-container {
		padding: 50px 0 40px;
	}

	.homepage-hero-section .row.row-main,
	.homepage-hero-section .large-12.col,
	.homepage-hero-section .col-inner {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hero-slide {
		min-height: 400px;
	}

	.hero-content {
		padding: 0 15px;
		min-height: 400px;
	}

	.hero-banner-container {
		padding: 50px 0 40px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.hero-badge {
		font-size: 11px;
		padding: 6px 15px;
		margin-bottom: 15px;
	}

	.hero-features {
		margin-bottom: 20px;
		gap: 8px;
	}

	.hero-feature-item {
		font-size: 13px;
	}

	.hero-feature-item svg {
		width: 16px;
		height: 16px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.primary-button,
	.secondary-button {
		width: 100%;
		text-align: center;
		padding: 15px 30px;
		font-size: 14px;
	}

	/* Hero Images Grid - Mobile */
	.hero-images-grid {
		max-width: 100%;
		height: 400px;
		gap: 12px;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}

	.hero-image-item {
		transform: none !important;
	}

	.hero-slide.active .hero-image-item {
		transform: none !important;
	}

	.hero-image-wrapper {
		border-radius: 12px;
		border-width: 1.5px;
	}

	.hero-slide-image {
		border-radius: 10px;
	}

	.hero-image-item:hover {
		transform: none !important;
	}

	.hero-slider-nav {
		width: 35px;
		height: 35px;
		display: none;
		/* Ẩn arrows trên mobile */
	}

	.hero-slider-dots {
		bottom: 15px;
		gap: 10px;
	}

	.hero-dot {
		width: 10px;
		height: 10px;
	}

	.hero-dot.active::before {
		width: 4px;
		height: 4px;
	}

	.section-header {
		margin-bottom: 40px;
		padding-bottom: 20px;
	}

	.section-title {
		font-size: 28px;
		letter-spacing: 0.5px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.categories-grid {
		max-width: 100%;
	}

	/* Brands Section Responsive - Mobile */
	.homepage-brands-section {
		padding: 60px 0;
	}

	.brands-title {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.brands-heading {
		font-size: 18px;
		letter-spacing: 0.3px;
		line-height: 1.5;
	}

	.brands-container {
		flex-direction: column;
		gap: 25px;
		padding: 0 15px;
	}

	.brand-item {
		max-width: 100%;
		width: 100%;
	}

	.brand-logo-wrapper {
		padding: 35px 25px;
		min-height: 140px;
		border-radius: 15px;
	}

	.brand-item:hover {
		transform: translateY(-8px) scale(1);
	}

	.brand-logo {
		max-width: 85%;
	}

	/* Categories Section Responsive - Mobile */
	.categories-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.category-card {
		border-radius: 15px;
	}

	.category-image {
		height: 70px;
	}

	.category-content {
		padding: 20px;
	}

	.category-content h3 {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.category-content p {
		font-size: 14px;
		margin-bottom: 18px;
	}

	.features-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.homepage-categories-section,
	.homepage-featured-products-section,
	.homepage-features-section,
	.homepage-about-section,
	.homepage-cta-section,
	.homepage-news-section {
		padding: 60px 0;
	}

	/* Featured Products - Mobile: 2 columns */
	.homepage-featured-products-section ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.homepage-featured-products-section .product .woocommerce-loop-product__title,
	.homepage-featured-products-section .product h2,
	.homepage-featured-products-section .product h3 {
		font-size: 14px;
		margin: 12px 12px 8px;
	}

	.homepage-featured-products-section .product .price {
		font-size: 16px;
		margin: 0 12px 12px;
	}

	.homepage-featured-products-section .product .button,
	.homepage-featured-products-section .product .add_to_cart_button {
		padding: 8px 15px;
		font-size: 13px;
		margin: 0 12px 12px;
	}

	/* Featured Products - Tablet: 3 columns */
	.homepage-featured-products-section ul.products {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}

	.homepage-featured-products-section .product .woocommerce-loop-product__title,
	.homepage-featured-products-section .product h2,
	.homepage-featured-products-section .product h3 {
		font-size: 16px;
		margin: 20px 20px 15px;
		min-height: 48px;
	}

	.homepage-featured-products-section .product .price {
		font-size: 19px;
		margin: 0 20px 20px;
	}

	.homepage-featured-products-section .product .button,
	.homepage-featured-products-section .product .add_to_cart_button {
		padding: 11px 22px;
		font-size: 14px;
		margin: 0 20px 20px;
	}

	.cta-content h2 {
		font-size: 32px;
	}

	.cta-content p {
		font-size: 16px;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .primary-button,
	.cta-buttons .secondary-button {
		width: 100%;
	}
}

/* ============================================
   TERM DESCRIPTION TOGGLE - Thu gọn mô tả danh mục
   ============================================ */
.term-description {
	position: relative;
	max-height: 250px;
	overflow: hidden;
	transition: max-height 0.4s ease;
	margin-bottom: 30px;
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
	padding: 20px 20px 60px 20px;
	border-radius: 8px;
	border: 1px solid rgba(201, 169, 97, 0.2);
}

.term-description.expanded {
	max-height: none;
	padding-bottom: 70px;
}

.term-description::after {
	content: '';
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.98));
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.term-description.expanded::after {
	opacity: 0;
}

.term-description-toggle-wrapper {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.term-description-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	background: linear-gradient(135deg, #C9A961 0%, #F4E4C1 100%);
	color: #0a0a0a;
	border: none;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
	position: relative;
	overflow: hidden;
}

.term-description-toggle::after {
	content: '▼';
	font-size: 9px;
	transition: transform 0.3s ease;
	display: inline-block;
}

.term-description.expanded+.term-description-toggle-wrapper .term-description-toggle::after {
	transform: rotate(180deg);
}

.term-description-toggle::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.term-description-toggle:hover::before {
	left: 100%;
}

.term-description-toggle:hover {
	background: linear-gradient(135deg, #F4E4C1 0%, #C9A961 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(201, 169, 97, 0.6);
}

.term-description-toggle:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

/* Mobile responsive cho term-description */
@media (max-width: 768px) {
	.term-description {
		max-height: 200px;
		padding: 15px 15px 50px 15px;
	}

	.term-description.expanded {
		padding-bottom: 60px;
	}

	.term-description::after {
		bottom: 40px;
		height: 50px;
	}

	.term-description-toggle-wrapper {
		bottom: 10px;
	}

	.term-description-toggle {
		padding: 5px 14px;
		font-size: 10px;
		gap: 5px;
	}

	.term-description-toggle::after {
		font-size: 8px;
	}
}

/* ============================================
   LUXURY BLOG POST STYLING
   ============================================ */
/* Single Post Container */
.single-post .post-content,
.single .entry-content,
.blog-single,
.post-article {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
	color: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	border: 1px solid rgba(201, 169, 97, 0.2);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	padding: 20px;
}

/* Post Title */
.single-post .entry-title,
.single .entry-title,
.post-title h1 {
	font-family: 'Playfair Display', Georgia, serif;
	color: #C9A961;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0px;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

/* Post Meta */
.post-meta,
.entry-meta {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(201, 169, 97, 0.2);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.post .entry-summary p:last-of-type {
	color: #ccc;
}

.entry-content {
	padding-top: 0px;
}

.entry-header-text.text-center {
	padding: 0 0 10px 0px;
}

.post-meta a,
.entry-meta a {
	color: #C9A961;
	text-decoration: none;
	transition: all 0.3s ease;
}

.post-meta a:hover,
.entry-meta a:hover {
	color: #F4E4C1;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* Post Content Typography */
.single-post .entry-content p,
.single .entry-content p,
.post-content p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 5px;
	text-align: justify;
}

.entry-content figure {
	text-align: center;
}

.comments-area {
	display: none;
}

.single-post .entry-content h2,
.single .entry-content h2 {
	font-family: 'Playfair Display', Georgia, serif;
	color: #F4E4C1;
	font-size: 25px;
	font-weight: 600;
	margin: 15px 0 20px;
}

.single-post .entry-content h3,
.single .entry-content h3 {
	color: #C9A961;
	font-size: 24px;
	font-weight: 600;
	margin: 30px 0 15px;
}

.single-post .entry-content h4,
.single .entry-content h4 {
	color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: 600;
	margin: 25px 0 12px;
}

/* Lists */
.single-post .entry-content ul,
.single .entry-content ul,
.single-post .entry-content ol,
.single .entry-content ol {
	color: rgba(255, 255, 255, 0.85);
	margin: 5px;
	line-height: 1.8;
}

.single-post .entry-content li,
.single .entry-content li {
	margin-bottom: 0px;
	padding-left: 0px;
}

.single-post .entry-content ul li::marker,
.single .entry-content ul li::marker {
	color: #C9A961;
}

/* Blockquote */
.single-post .entry-content blockquote,
.single .entry-content blockquote {
	background: rgba(201, 169, 97, 0.1);
	border-left: 4px solid #C9A961;
	padding: 25px 30px;
	margin: 30px 0;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	border-radius: 0 8px 8px 0;
}

/* Images */
.single-post .entry-content img,
.single .entry-content img {
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(201, 169, 97, 0.2);
	margin: 30px 0;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* Links */
.single-post .entry-content a,
.single .entry-content a {
	color: #C9A961;
	text-decoration: underline;
	text-decoration-color: rgba(201, 169, 97, 0.3);
	transition: all 0.3s ease;
}

.single-post .entry-content a:hover,
.single .entry-content a:hover {
	color: #F4E4C1;
	text-decoration-color: #F4E4C1;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.4);
}

/* Code */
.single-post .entry-content code,
.single .entry-content code {
	background: rgba(201, 169, 97, 0.15);
	color: #F4E4C1;
	padding: 3px 8px;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
	font-size: 14px;
}

.single-post .entry-content pre,
.single .entry-content pre {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(201, 169, 97, 0.3);
	border-radius: 8px;
	padding: 20px;
	overflow-x: auto;
	margin: 25px 0;
}

/* Sidebar */
.sidebar,
.widget-area {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
	padding: 30px;
	border-radius: 12px;
	border: 1px solid rgba(201, 169, 97, 0.2);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.sidebar .widget,
.widget-area .widget {
	border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.sidebar .widget:last-child,
.widget-area .widget:last-child {
	border-bottom: none;
}

.sidebar .widget-title,
.widget-area .widget-title {
	font-family: 'Playfair Display', Georgia, serif;
	color: #C9A961;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.sidebar ul li,
.widget-area ul li {
	color: rgba(255, 255, 255, 0.8);
	padding: 10px 0;
	border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.sidebar ul li a,
.widget-area ul li a {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.sidebar ul li a:hover,
.widget-area ul li a:hover {
	color: #C9A961;
	padding-left: 8px;
}

/* Comments Section */
.comments-area {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
	padding: 40px;
	border-radius: 12px;
	border: 1px solid rgba(201, 169, 97, 0.2);
	margin-top: 40px;
}

.comments-title {
	font-family: 'Playfair Display', Georgia, serif;
	color: #C9A961;
	font-size: 28px;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.comment-list .comment {
	background: rgba(201, 169, 97, 0.05);
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 20px;
	border-left: 3px solid #C9A961;
}

.comment-author {
	color: #F4E4C1;
	font-weight: 600;
	margin-bottom: 10px;
}

.comment-content p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {

	.single-post .post-content,
	.single .entry-content {
		padding: 30px 20px;
	}

	.single-post .entry-title,
	.single .entry-title {
		font-size: 28px;
	}

	.single-post .entry-content h2,
	.single .entry-content h2 {
		font-size: 20px;
	}

	.single-post .entry-content h3,
	.single .entry-content h3 {
		font-size: 20px;
	}

	.single-post .entry-content p,
	.single .entry-content p {
		font-size: 15px;
	}

	.sidebar,
	.widget-area {
		padding: 20px;
	}

	.single .entry-content h2,
	.single .entry-content ul {
		margin: 0px;
	}

	.single .entry-content p {
		margin-bottom: 0px;
	}
}

.archive #main {
	background: #1a1a1a !important;
}

/* ============================================
   LUXURY SINGLE PRODUCT PAGE
   Đồng bộ với front-page-luxury.php
   Color Palette: Deep Charcoal (#1a1a1a), Matte Black (#0a0a0a), Champagne Gold (#C9A961)
   ============================================ */

/* Force Dark Background - Main Containers Only */
body.single-product,
body.single-product #main,
body.single-product .main-content,
body.single-product #content,
body.single-product .content-area,
body.single-product .page-wrapper {
	background-color: #1a1a1a !important;
	background-image: none !important;
}

.single-product .shop-container {
	padding: 0px;
}

.single-product .product-title {
	text-align: left !important;
}

/* Product Page Container */
.single-product .content-area {
	background: #1a1a1a !important;
	color: #ffffff !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Override white backgrounds for layout containers */
.single-product .row,
.single-product .large-12,
.single-product .col,
.single-product .product-main,
.single-product .large-6,
.single-product .large-7,
.single-product .large-5 {
	background: transparent !important;
}

/* Product Main Container */
.single-product .product-container,
.single-product .product-main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 40px;
	background: transparent !important;
}

/* Breadcrumbs - Single Product Page */
.single-product .breadcrumbs {
	padding: 15px 25px !important;
	font-size: 16px !important;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%) !important;
	border: 1px solid rgba(201, 169, 97, 0.3) !important;
	border-radius: 8px !important;
	backdrop-filter: blur(10px) !important;
	margin-bottom: 30px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
	position: relative !important;
	overflow: hidden !important;
}

.single-product .breadcrumbs::before {
	content: '' !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 4px !important;
	height: 100% !important;
	background: linear-gradient(180deg, #C9A961 0%, #F4E4C1 50%, #C9A961 100%) !important;
	box-shadow: 0 0 10px rgba(201, 169, 97, 0.6) !important;
}

.single-product .breadcrumbs a {
	color: #C9A961 !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.3) !important;
}

.single-product .breadcrumbs a:hover {
	color: #F4E4C1 !important;
	text-shadow: 0 0 15px rgba(201, 169, 97, 0.5) !important;
}

.single-product .breadcrumbs span {
	color: rgba(255, 255, 255, 0.6) !important;
}

/* ============================================
   PRODUCT IMAGES SECTION
   ============================================ */
.single-product .product-images,
.single-product .woocommerce-product-gallery {
	background: rgba(26, 26, 26, 0.5) !important;
	border: 2px solid rgba(201, 169, 97, 0.2) !important;
	border-radius: 12px !important;
	padding: 30px !important;
	backdrop-filter: blur(10px) !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.single-product .product-images:hover,
.single-product .woocommerce-product-gallery:hover {
	border-color: rgba(201, 169, 97, 0.6) !important;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(201, 169, 97, 0.2) !important;
}

/* Main Product Image */
.single-product .woocommerce-product-gallery__wrapper,
.single-product .product-gallery-slider {
	background: #f5f5f5 !important;
	border-radius: 8px !important;
	overflow: hidden !important;
}

.single-product .woocommerce-product-gallery__image img,
.single-product .product-gallery-slider img {
	width: 100% !important;
	height: auto !important;
	object-fit: contain;
	transition: none !important;
}

.single-product .woocommerce-product-gallery__image:hover img {
	transform: none !important;
}

/* Product Thumbnails */
.single-product .product-thumbnails {
	margin-top: 20px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.single-product .product-thumbnails a {
	border: 2px solid rgba(201, 169, 97, 0.3);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #f5f5f5;
}

.single-product .product-thumbnails a:hover,
.single-product .product-thumbnails a.active {
	border-color: #C9A961;
	box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
}

/* ============================================
   PRODUCT INFO SECTION
   ============================================ */
.single-product .product-info,
.single-product .product-summary,
.single-product .summary {
	padding: 30px !important;
	background: rgba(26, 26, 26, 0.5) !important;
	border: 2px solid rgba(201, 169, 97, 0.2) !important;
	border-radius: 12px !important;
	backdrop-filter: blur(10px) !important;
}

/* Force text colors for specific elements */
.single-product .product-info p,
.single-product .product-summary p,
.single-product .summary p,
.single-product .product-info li,
.single-product .product-summary li,
.single-product .summary li {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* Product Title */
.single-product .product_title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff !important;
	margin-top: 20px;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #ffffff 0%, #C9A961 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Product Price */
.single-product .product-summary .price {
	font-weight: 700;
	color: #C9A961 !important;
	margin-bottom: 25px;
	display: block;
}

.product-section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #ffffff 0%, #C9A961 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}

.product-section {
	border-top: 0px;
}

.single-product .related .price {
	font-size: 20px;
	font-weight: 700;
	color: #C9A961 !important;
	margin-bottom: 25px;
	display: block;
}


.single-product .price ins {
	color: #C9A961 !important;
	text-decoration: none !important;
	font-weight: 700;
}

.single-product .price del {
	color: rgba(255, 255, 255, 0.4) !important;
	font-size: 24px;
	margin-right: 15px;
}

.single-product .product-summary .price .amount {
	color: #C9A961 !important;
	font-size: 30px;
}

/* Product Short Description */
.single-product .woocommerce-product-details__short-description,
.single-product .product-short-description {
	font-size: 16px !important;
	line-height: 1.8 !important;
	color: rgba(255, 255, 255, 0.8) !important;
	border: 1px solid rgba(201, 169, 97, 0.15) !important;
	border-radius: 8px !important;
	padding: 10px;
}

.single-product .product-short-description ul,
.single-product .woocommerce-product-details__short-description ul {
	list-style: none !important;
	padding-left: 0 !important;
}

.single-product .product-short-description li,
.single-product .woocommerce-product-details__short-description li {
	position: relative !important;
	padding-left: 30px !important;
	margin-bottom: 12px !important;
	color: rgba(255, 255, 255, 0.8) !important;
}

.single-product .product-short-description li *,
.single-product .woocommerce-product-details__short-description li * {
	color: rgba(255, 255, 255, 0.8) !important;
}

.single-product .product-short-description li:before,
.single-product .woocommerce-product-details__short-description li:before {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 8px !important;
	width: 6px !important;
	height: 6px !important;
	background: #C9A961 !important;
	border-radius: 50% !important;
	box-shadow: 0 0 10px rgba(201, 169, 97, 0.6) !important;
}

/* Product Meta */
.single-product .product_meta {
	background: rgba(10, 10, 10, 0.6);
	border: 1px solid rgba(201, 169, 97, 0.2);
	border-radius: 8px;
	padding: 20px;
	margin-top: 25px;
}

.single-product .product_meta span {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.single-product .product_meta a {
	color: #C9A961 !important;
	text-decoration: none;
	transition: all 0.3s ease;
}

.single-product .product_meta a:hover {
	color: #F4E4C1 !important;
	text-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

/* ============================================
   ADD TO CART SECTION
   ============================================ */
.single-product .cart {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 25px;
}

.single-product .quantity {
	background: rgba(10, 10, 10, 0.8);
	border: 2px solid rgba(201, 169, 97, 0.3);
	border-radius: 6px;
	padding: 5px;
}

.single-product .quantity input {
	background: transparent;
	color: #ffffff;
	border: none;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

/* Add to Cart Button */
.single-product .single_add_to_cart_button {
	background: #C9A961 !important;
	color: #0a0a0a !important;
	border: 2px solid #C9A961 !important;
	padding: 16px 40px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 6px !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative;
	overflow: hidden;
}

.single-product .single_add_to_cart_button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.single-product .single_add_to_cart_button:hover::before {
	left: 100%;
}

.single-product .single_add_to_cart_button:hover {
	background: #F4E4C1 !important;
	border-color: #F4E4C1 !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

/* ============================================
   PRODUCT TABS
   ============================================ */
.single-product .woocommerce-tabs {
	background: rgba(26, 26, 26, 0.5);
	border: 2px solid rgba(201, 169, 97, 0.2);
	border-radius: 12px;
	padding: 15px;
	margin-top: 60px;
	backdrop-filter: blur(10px);
}

.single-product .woocommerce-tabs .tabs {
	display: none;
}

.single-product .woocommerce-tabs .tabs li {
	margin: 0;
	padding: 0;
}

.single-product .woocommerce-tabs .tabs li a {
	display: block;
	padding: 15px 25px;
	color: rgba(255, 255, 255, 0.7) !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.single-product .woocommerce-tabs .tabs li a:hover {
	color: #C9A961 !important;
}

.single-product .woocommerce-tabs .tabs li.active a {
	color: #C9A961 !important;
	border-bottom-color: #C9A961;
}

.single-product .woocommerce-tabs .panel {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.8;
	padding: 10px 10px 0 10px;
}

.single-product .woocommerce-tabs .panel h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 24px;
	color: #ffffff;
	margin-bottom: 20px;
}

.single-product .woocommerce-tabs .panel table {
	border: 1px solid rgba(201, 169, 97, 0.2);
	border-radius: 8px;
	overflow: hidden;
}

.single-product .woocommerce-tabs .panel table th {
	background: rgba(201, 169, 97, 0.1);
	color: #C9A961;
	font-weight: 600;
	padding: 15px;
	border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.single-product .woocommerce-tabs .panel table td {
	padding: 15px;
	color: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.single-product .related.products {
	margin-top: 80px;
	padding: 60px 0;
	background: rgba(26, 26, 26, 0.3);
	border-radius: 12px;
}

.single-product .related.products h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 20px;
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #C9A961 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.single-product .related.products h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #C9A961, transparent);
	box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.single-product .related.products .products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.single-product .related.products .product {
	background: rgba(26, 26, 26, 0.5);
	border: 2px solid rgba(201, 169, 97, 0.2);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-product .related.products .product:hover {
	border-color: rgba(201, 169, 97, 0.6);
	transform: translateY(-8px);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(201, 169, 97, 0.2);
}

.single-product .related.products .product img {
	width: 100%;
	height: auto;
	object-fit: contain;
	background: #f5f5f5;
	padding: 20px;
	transition: none !important;
}

.single-product .related.products .product:hover img {
	transform: none !important;
}

.single-product .related.products .product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff !important;
	padding: 15px 15px 10px;
	margin: 0;
	line-height: 1.4;
	min-height: 60px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.single-product .related.products .product .price {
	font-size: 15px;
	font-weight: 600;
	color: #C9A961 !important;
	padding: 0 15px 15px;
	margin: 0;
}

.single-product .related.products .product .price .amount {
	font-size: 15px !important;
	color: #C9A961 !important;
}

.single-product .related.products .product .price del {
	font-size: 13px !important;
	color: rgba(255, 255, 255, 0.4) !important;
	margin-right: 8px;
}

.single-product .related.products .product .price ins {
	text-decoration: none !important;
	font-weight: 700 !important;
}

/* ============================================
   BADGES & LABELS
   ============================================ */
.single-product .onsale {
	background: linear-gradient(135deg, #C9A961 0%, #F4E4C1 100%) !important;
	color: #0a0a0a !important;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet - 1200px */
@media (max-width: 1200px) {
	.single-product .related.products .products {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.single-product .product-container,
	.single-product .product-main {
		padding: 20px;
	}
}

/* Tablet Small - 992px */
@media (max-width: 992px) {
	.single-product .product_title {
		font-size: 30px;
	}

	.single-product .product-summary .price .amount {
		font-size: 32px;
	}

	.single-product .related.products .products {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile - 768px */
@media (max-width: 768px) {
	.header-main {
		height: 80px !important;
	}

	#logo img {
		max-height: 80px !important;
	}

	.product-small .box-image img {
		height: 190px;
	}

	.product-small .box-text {
		height: unset;
	}

	/* Container */
	.single-product .product-container,
	.single-product .product-main {
		padding: 0px;
	}

	/* Breadcrumbs */
	.single-product .breadcrumbs {
		padding: 12px 20px !important;
		font-size: 14px !important;
		margin-bottom: 20px !important;
	}

	.single-product .breadcrumbs::before {
		width: 3px !important;
	}

	/* Product Images */
	.single-product .product-images,
	.single-product .woocommerce-product-gallery {
		padding: 20px !important;
		margin-bottom: 20px;
	}

	/* Product Info */
	.single-product .product-info,
	.single-product .product-summary,
	.single-product .summary {
		padding: 20px !important;
	}

	/* Product Title */
	.single-product .product_title {
		font-size: 24px !important;
		margin-top: 15px !important;
		margin-bottom: 15px !important;
	}

	/* Product Price */
	.single-product .product-summary .price {
		margin-bottom: 20px;
	}

	.single-product .product-summary .price .amount {
		font-size: 28px !important;
	}

	.single-product .price del {
		font-size: 20px !important;
	}

	/* Short Description */
	.single-product .woocommerce-product-details__short-description,
	.single-product .product-short-description {
		font-size: 14px !important;
		padding: 15px !important;
	}

	.single-product .product-short-description li,
	.single-product .woocommerce-product-details__short-description li {
		padding-left: 25px !important;
		margin-bottom: 10px !important;
	}

	/* Add to Cart */
	.single-product .cart {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.single-product .quantity {
		width: 100%;
	}

	.single-product .single_add_to_cart_button {
		width: 100% !important;
		text-align: center;
		padding: 14px 30px !important;
		font-size: 14px !important;
	}

	/* Product Tabs */
	.single-product .woocommerce-tabs {
		padding: 25px 15px !important;
		margin-top: 40px !important;
	}

	.single-product .woocommerce-tabs .tabs {
		flex-direction: column;
		gap: 0;
	}

	.single-product .woocommerce-tabs .tabs li {
		width: 100%;
	}

	.single-product .woocommerce-tabs .tabs li a {
		padding: 12px 20px;
		border-bottom: 1px solid rgba(201, 169, 97, 0.2) !important;
		margin-bottom: 0;
	}

	.single-product .woocommerce-tabs .panel {
		font-size: 14px;
	}

	/* Related Products */
	.single-product .related.products {
		margin-top: 40px;
		padding: 40px 0;
	}

	.single-product .related.products h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.single-product .related.products .products {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.single-product .related.products .product .woocommerce-loop-product__title {
		font-size: 13px;
		min-height: 50px;
	}

	.single-product .related.products .product .price {
		font-size: 14px;
	}
}

/* Mobile Small - 480px */
@media (max-width: 480px) {

	/* Container */
	.single-product .product-container {
		padding: 10px;
	}

	.product-gallery {
		padding: 0px !important;
	}

	.product-footer .container {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}

	/* Breadcrumbs */
	.single-product .breadcrumbs {
		padding: 10px 15px !important;
		font-size: 12px !important;
	}

	/* Product Images */
	.single-product .product-images,
	.single-product .woocommerce-product-gallery {
		padding: 0px !important;
	}

	/* Product Info */
	.single-product .product-info,
	.single-product .product-summary,
	.single-product .summary {
		padding: 15px !important;
	}

	/* Product Title */
	.single-product .product_title {
		font-size: 20px !important;
	}

	/* Product Price */
	.single-product .product-summary .price .amount {
		font-size: 24px !important;
	}

	.single-product .price del {
		font-size: 18px !important;
	}

	/* Short Description */
	.single-product .woocommerce-product-details__short-description,
	.single-product .product-short-description {
		font-size: 13px !important;
		padding: 12px !important;
	}

	/* Add to Cart Button */
	.single-product .single_add_to_cart_button {
		padding: 12px 25px !important;
		font-size: 13px !important;
	}

	/* Product Tabs */
	.single-product .woocommerce-tabs {
		padding: 20px 10px !important;
	}

	.single-product .woocommerce-tabs .tabs li a {
		padding: 10px 15px;
		font-size: 13px;
	}

	.single-product .woocommerce-tabs .panel {
		font-size: 13px;
	}

	.single-product .woocommerce-tabs .panel h2 {
		font-size: 20px;
	}

	/* Related Products */
	.single-product .related.products {
		margin-top: 30px;
		padding: 30px 0;
	}

	.single-product .related.products h2 {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.single-product .related.products .products {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.single-product .related.products .product .woocommerce-loop-product__title {
		font-size: 14px;
		min-height: auto;
	}

	.single-product .related.products .product .price {
		font-size: 15px;
	}

	/* Product Meta */
	.single-product .product_meta {
		padding: 15px;
	}

	.single-product .product_meta span {
		font-size: 13px;
	}
}

/* Mobile Extra Small - 375px */
@media (max-width: 375px) {
	.single-product .product_title {
		font-size: 18px !important;
	}

	.single-product .product-summary .price .amount {
		font-size: 22px !important;
	}

	.single-product .related.products h2 {
		font-size: 20px;
	}
}