@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html{
	margin:0px;
	padding: 0px;
	overflow-x: hidden;
}
body{
	margin:0px;
	padding: 0px;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	color:#444;
	overflow-x: hidden;
}

img{
	max-width: 100%;
	height: auto;
}

a{
	text-decoration: none !important;
	color:#000;
}


.breadcrumb a,
.btn-link{
	color:#000 !important;
}

.btn-primary,
#content .btn-primary{
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: var(--primary-bg) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:focus,
.btn-primary:focus-visible {
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: var(--primary-bg) !important;
	opacity: 0.9;
}

.btn-secondary {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary:active:focus,
.btn-secondary:focus-visible {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
	opacity: 0.9;
}

.list-group-item.active {
    z-index: 2;
    color: var(--primary-color);
    background-color: var(--primary-bg);
    border-color: var(--primary-bg);
}

.list-group-item:hover{
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
}

label.input-group-addon{
	padding-right: 15px;
}

.alert{
	position: relative;
}

.close{
	position: absolute;
	right:15px;
	top:50%;
	transform: translateY(-50%);
	background: none;
	border:none;
	font-size: 24px;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: var(--primary-bg);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-bg);
    box-shadow: inset 0 calc(-1 * var(--primary-bg)) 0 var(--primary-bg);
}

h1{
	font-size: 26px;
}

h2{
	font-size: 22px;
}

h3{
	font-size: 20px;
}

h4,
h5,
h6{
	font-size: 18px;
}


/*#########################*/
/*#### HEADER */
/*#########################*/
header {
	position: relative;
	overflow: visible;
	background: #f8f9fa;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Header Bar - Social Media & Language/Currency */
header .header-top {
	/* 
	background: var(--header-bg, #1d252f);
	color: var(--header-color, #ffffff);
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px; 
	*/
	display: flex;
  	flex-direction: row;
  	justify-content: center;
}

header .header-top .header-social-media {
	gap: 8px;
}

header .header-top .social-icon {
	color: var(--header-color, #ffffff);
	font-size: 16px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
}

header .header-top .social-icon:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	color: var(--secondary-bg, #dac884);
}

header .header-top .header-top-selectors {
	gap: 8px;
}

header .header-top .header-top-selectors .dropdown-toggle {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--header-color, #ffffff);
	padding: 6px 12px;
	font-size: 13px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

header .header-top .header-top-selectors .dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

header .header-top .header-top-selectors .dropdown-menu {
	background: #ffffff;
	border: 1px solid #e9ecef;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	margin-top: 5px;
}

header .header-top .header-top-selectors .dropdown-item {
	color: #333;
	padding: 8px 16px;
	transition: all 0.2s ease;
}

header .header-top .header-top-selectors .dropdown-item:hover {
	background: var(--secondary-bg, #dac884);
	color: var(--secondary-color, #ffffff);
}

/* Support Badge in Top Bar Center */
header .header-top .header-top-center {
	flex: 1;
	justify-content: center;
}

header .header-top .header-support-badge {
	background: var(--secondary-bg, #dac884);
	color: var(--secondary-color, #ffffff);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

header .header-top .header-support-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

header .header-top .header-support-badge i {
	font-size: 14px;
}

header .header-top .header-support-badge .support-badge-text {
	font-size: 12px;
}

/* Mid Header Bar */
header .header-mid {
	/* 
	background: #f8f9fa;
	color: #333;
	padding: 12px 0;
	border-bottom: 1px solid #e9ecef; 
	*/
	display: flex;
  	flex-direction: row;
  	justify-content: center;
}

/* Responsive styles for top bar */
@media screen and (max-width: 767px) {
	header .header-top {
		padding: 6px 0;
		font-size: 12px;
	}
	
	header .header-top .header-top-center {
		order: 3;
		width: 100%;
		margin-top: 8px;
	}
	
	header .header-top .header-support-badge {
		padding: 5px 12px;
		font-size: 11px;
	}
	
	header .header-top .social-icon {
		width: 28px;
		height: 28px;
		font-size: 14px;
	}
	
	header .header-top .header-top-selectors .dropdown-toggle {
		padding: 4px 8px;
		font-size: 12px;
	}
	
	header .header-top .header-top-selectors .dropdown-toggle .d-none {
		display: none !important;
	}
}

header .btn-menu-toggle {
	background: #007bff;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .btn-menu-toggle:hover {
	background: #0056b3;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

header .header-logo {
	max-width: 200px;
}

header .header-logo img {
	max-height: 40px;
	width: auto;
}

header .header-logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

header .header-logo a {
	color: #333;
	text-decoration: none;
}

header .header-search-wrapper {
	max-width: 600px;
}

header .header-search-wrapper .form-control {
	border-radius: 25px 0 0 25px;
	border: 2px solid #e9ecef;
	padding: 10px 20px;
	font-size: 14px;
}

header .header-search-wrapper .form-control:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

header .header-search-wrapper .btn {
	/* 
	border-radius: 0 25px 25px 0;
	padding: 10px 20px;
	background: #007bff;
	border: 2px solid #007bff;
	border-left: none; 
	*/
}

header .header-search-wrapper .btn:hover {
	background: #0056b3;
	border-color: #0056b3;
}

header .header-support-info {
	padding: 8px 16px;
	border-radius: 8px;
	background: rgba(0, 123, 255, 0.05);
	transition: all 0.3s ease;
}

header .header-support-info:hover {
	background: rgba(0, 123, 255, 0.1);
}

header .header-support-info .support-label {
	font-size: 11px;
	color: #6c757d;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

header .header-support-info .support-value {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

header .header-support-info .support-value a {
	color: #333;
	text-decoration: none;
}

header .header-support-info .support-value a:hover {
	color: #007bff;
}

header .header-shipping-info {
	padding: 8px 16px;
	border-radius: 8px;
	background: rgba(40, 167, 69, 0.05);
	font-size: 14px;
	font-weight: 500;
	color: #333;
	transition: all 0.3s ease;
}

header .header-shipping-info:hover {
	background: rgba(40, 167, 69, 0.1);
}

header .header-shipping-info i {
	color: #28a745;
}

/* Main Navigation Bar */
header .header-main-nav {
	/* 
	background: #fff;
	padding: 12px 0;
	border-bottom: 1px solid #e9ecef;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease; 
	*/
	display: flex;
  	flex-direction: row;
  	justify-content: center;
}

/* Sticky Navigation */
header .header-main-nav.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1040;
	background: var(--header-nav-bg) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding: 10px 0;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Wrapper for sticky navigation */
.header-main-nav-wrapper {
	position: relative;
}

/* Add spacer to prevent content jump when nav becomes sticky */
.header-main-nav-spacer {
	height: 0;
	transition: height 0.3s ease;
	display: block;
}

body.nav-sticky .header-main-nav-spacer {
	height: 60px; /* Adjust based on nav height */
}

header .btn-all-categories {
	background: var(--all-categories-bg, #667eea) !important;
	color: var(--all-categories-color, #ffffff) !important;
	border: var(--all-categories-border, none) !important;
	border-radius: var(--all-categories-border-radius, 6px) !important;
	padding: var(--all-categories-padding-y, 10px) var(--all-categories-padding-x, 15px) !important;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

header .btn-all-categories:hover {
	background: var(--all-categories-hover-bg, #764ba2) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header .btn-all-categories i,
header .btn-all-categories span {
	color: var(--all-categories-color, #ffffff) !important;
}

header .header-nav-links .nav-link {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
}

header .header-nav-links .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: #007bff;
	transition: width 0.3s ease;
}

header .header-nav-links .nav-link:hover {
	color: #007bff;
	background: rgba(0, 123, 255, 0.05);
}

header .header-nav-links .nav-link:hover::after {
	width: 80%;
}

header .header-selectors .dropdown-toggle {
	background: transparent;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 14px;
	color: #333;
	transition: all 0.3s ease;
}

header .header-selectors .dropdown-toggle:hover {
	background: #f8f9fa;
	border-color: #007bff;
	color: #007bff;
}

header .btn-header-icon {
	background: transparent;
	border: none;
	color: #333;
	font-size: 20px;
	padding: 10px 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
}

header .btn-header-icon:hover {
	background: rgba(0, 123, 255, 0.1);
	color: #007bff;
	transform: translateY(-2px);
}

header .badge-count,
header .cart-count-badge {
	position: absolute;
	top: 5px;
	right: 5px;
	background: #dc3545;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 10px;
	min-width: 18px;
	text-align: center;
	line-height: 1.4;
	box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

header .cart-total {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-left: 8px;
}

header .header-top::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(218, 200, 132, 0.5), 
		transparent);
}

header .header-top .btn.btn-outline-secondary{
	color:var(--header-color);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-weight: 400;
	border-radius: 8px;
	padding: 8px 15px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	position: relative;
	overflow: hidden;
}

header .header-top .btn.btn-outline-secondary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(218, 200, 132, 0.3) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
	border-radius: 50%;
}

header .header-top .btn.btn-outline-secondary:hover {
	background: linear-gradient(135deg, var(--secondary-bg), rgba(218, 200, 132, 0.8));
	color:var(--secondary-color);
	border-color: var(--secondary-bg);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(218, 200, 132, 0.4), 
		0 0 20px rgba(218, 200, 132, 0.3);
}

header .header-top .btn.btn-outline-secondary:hover::before {
	width: 300px;
	height: 300px;
}

header .header-container{
	background: linear-gradient(180deg, 
		rgba(0, 0, 0, 0.85) 0%, 
		var(--header-bg) 50%, 
		rgba(0, 0, 0, 0.9) 100%);
	color:var(--header-color);
	padding-top: 25px;
	padding-bottom: 25px;
	position: relative;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

header .header-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(218, 200, 132, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(218, 200, 132, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

header .header-container > .container {
	position: relative;
	z-index: 1;
}

header a{
	color:var(--header-color);
	transition: all 0.3s ease;
	text-decoration: none;
}

header a:hover {
	color: var(--secondary-bg);
	text-shadow: 0 0 10px rgba(218, 200, 132, 0.5);
}

header .header-contact-icon{
	margin-right: 15px;
	filter: drop-shadow(0 2px 8px rgba(218, 200, 132, 0.3));
	transition: all 0.3s ease;
}

header .header-contact:hover .header-contact-icon {
	filter: drop-shadow(0 4px 12px rgba(218, 200, 132, 0.6));
	transform: scale(1.1);
}

header .header-contact-mobile{
	display:none;
}

header .header-interface{
	border-radius: 15px;
	background: linear-gradient(135deg, 
		var(--secondary-bg) 0%, 
		rgba(218, 200, 132, 0.9) 50%, 
		var(--secondary-bg) 100%);
	color: var(--secondary-color);
	padding: 12px 20px;
	box-shadow: 
		0 8px 32px rgba(218, 200, 132, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 2px 10px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

header .header-interface::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, 
		transparent 30%, 
		rgba(255, 255, 255, 0.2) 50%, 
		transparent 70%);
	transform: rotate(45deg);
	animation: shimmer 3s infinite;
	pointer-events: none;
}

header .header-interface:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 12px 40px rgba(218, 200, 132, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 4px 15px rgba(0, 0, 0, 0.3);
	animation: glow 2s ease-in-out infinite;
}

header .header-interface-list{
	list-style: none;
	padding: 0px;
	margin:0px;
	position: relative;
	z-index: 1;
}

header .header-logo{
	max-width: 250px;
	margin-right: 15px;
	position: relative;
	transition: all 0.3s ease;
	filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

header .header-logo:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 6px 20px rgba(218, 200, 132, 0.4));
}

header .header-logo img {
	transition: all 0.3s ease;
	border-radius: 8px;
}

header .header-logo:hover img {
	box-shadow: 0 0 20px rgba(218, 200, 132, 0.3);
}

header .btn-header{
	border:none;
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 12px;
	position: relative;
	color:var(--secondary-color);
	font-size: 20px;
	border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	overflow: hidden;
}

header .btn-header::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.5s, height 0.5s;
	border-radius: 50%;
}

header .btn-header:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--secondary-color);
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3),
		0 0 15px rgba(218, 200, 132, 0.4);
}

header .btn-header:hover::before {
	width: 200px;
	height: 200px;
}

header .btn-header i {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

header .btn-header:hover i {
	transform: scale(1.2);
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

header .header-interface-list > li:not(:first-child) {
    margin-left: 15px;
}

header .header-contact-mobile a{
	color:#000;
}

/* Enhanced Dropdown Menus */
header .dropdown-menu {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(218, 200, 132, 0.2);
	border-radius: 12px;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	padding: 8px;
	margin-top: 10px;
	animation: float 0.3s ease-out;
}

header .dropdown-item {
	border-radius: 8px;
	padding: 10px 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

header .dropdown-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(218, 200, 132, 0.2), transparent);
	transition: left 0.4s;
}

header .dropdown-item:hover {
	background: linear-gradient(135deg, var(--secondary-bg), rgba(218, 200, 132, 0.8));
	color: var(--secondary-color);
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(218, 200, 132, 0.3);
}

header .dropdown-item:hover::before {
	left: 100%;
}

/* Currency and Language Selectors */
header .header-top .dropdown-toggle {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 6px 12px;
	transition: all 0.3s ease;
	color: var(--header-color);
}

header .header-top .dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(218, 200, 132, 0.4);
	box-shadow: 0 4px 15px rgba(218, 200, 132, 0.2);
}

header .header-top .dropdown-menu {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(218, 200, 132, 0.2);
	border-radius: 12px;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	min-width: 180px;
}

/* Language dropdown specific styles */
header .header-top #form-language .dropdown-item img {
	width: 20px;
	height: 15px;
	object-fit: cover;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

header .header-top #form-language .dropdown-toggle img {
	width: 20px;
	height: 15px;
	object-fit: cover;
	border-radius: 2px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

header .header-top #form-language .dropdown-item:hover img {
	border-color: rgba(255, 255, 255, 0.3);
}

header .header-contact {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 12px 18px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

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

header .header-contact:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
		0 0 15px rgba(218, 200, 132, 0.2);
	border-color: rgba(218, 200, 132, 0.3);
}

header .header-contact:hover::before {
	left: 100%;
}

header .header-contact-content {
	position: relative;
	z-index: 1;
}

header .header-contact-label {
	font-size: 11px;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

header .header-contact-value a {
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

header .header-contact-value a:hover {
	color: var(--secondary-bg);
	text-shadow: 0 0 10px rgba(218, 200, 132, 0.5);
}

#menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: linear-gradient(180deg, 
		rgba(0, 0, 0, 0.95) 0%, 
		var(--header-bg) 100%);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5),
		0 2px 10px rgba(0,0,0,0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-top: 0px;
	padding-left: 15px;
	padding-right: 15px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(218, 200, 132, 0.2);
}

#menu.fixed  .navbar-nav{
	margin: 0 auto;
}

.header-top,
.header-main-content {
    transition: all 0.3s ease;
}

header.compact .header-top,
header.compact .header-main-content {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-page-title{
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
	overflow: hidden;
}

.header-page-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 50%, rgba(218, 200, 132, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 50%, rgba(218, 200, 132, 0.15) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.header-page-title::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	animation: shimmer 4s infinite;
	pointer-events: none;
	z-index: 1;
}

.header-page-title h1{
	font-size: 48px;
	color:var(--title-color);
	text-align: center;
	position: relative;
	z-index: 2;
	text-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(218, 200, 132, 0.3),
		0 2px 10px rgba(0, 0, 0, 0.3);
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, 
		var(--title-color) 0%, 
		rgba(255, 255, 255, 0.9) 50%, 
		var(--title-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: float 3s ease-in-out infinite;
}

.header-page-title .subtitle{
	font-size: 24px;
	color:var(--title-color);
	text-align: center;
	position: relative;
	z-index: 2;
	text-shadow: 
		0 2px 15px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(218, 200, 132, 0.2);
	font-weight: 400;
	opacity: 0.95;
	letter-spacing: 0.5px;
}

@media screen and (max-width: 1050px) {
	.header-contact{
		display:none !important;
	}

	.header-contact-mobile{
		display: block !important;
	}

	.header-contact-mobile .header-contact-content{
		padding: 15px;
	}
}

/* Responsive Header Styles */
@media screen and (max-width: 991px) {
	/* Hide desktop search, show mobile search button */
	header .header-search-wrapper {
		display: none;
	}

	header .header-support-info,
	header .header-shipping-info {
		display: none;
	}

	header .header-nav-links {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	header .header-top .container,
	header .header-main-nav .container {
		padding: 0 15px;
	}

	header .btn-all-categories span {
		display: none;
	}

	header .btn-all-categories i {
		margin-right: 0px !important;
	}

	header .cart-total {
		display: none !important;
	}

	.header-page-title h1 {
		font-size: 32px;
	}

	.header-page-title .subtitle {
		font-size: 18px;
	}
}

/*#########################*/
/*#### HEADER SEARCH */
/*#########################*/
.search-panel {
  position: fixed;
  top: 0;
  top: -100%;
  width: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}


/*#########################*/
/*#### MENU PANEL - SLEEK & THIN */
/*#########################*/
.menu-panel {
  position: fixed;
  top: 0;
  left: -360px;
  max-width: 90%;
  width: 360px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
  z-index: 1060;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu-panel.open {
  left: 0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
}

.menu-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1055;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-panel-header {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu-panel-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #111827;
  letter-spacing: -0.01em;
}

.menu-panel-content {
  padding: 0;
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
}

.menu-panel-content::-webkit-scrollbar {
  width: 6px;
}

.menu-panel-content::-webkit-scrollbar-track {
  background: transparent;
}

.menu-panel-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.menu-panel-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Menu Search Wrapper - Sleek Style */
.menu-panel-search-wrapper {
  background: #ffffff;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.menu-panel-search-wrapper .input-group {
  border-radius: 6px;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.menu-panel-search-wrapper .input-group:focus-within {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.menu-panel-search-wrapper .input-group-text {
  background: transparent;
  border: none;
  color: #6b7280;
  padding: 8px 10px;
  font-size: 14px;
}

.menu-panel-search-wrapper .form-control {
  border: none;
  padding: 8px 10px;
  font-size: 13px;
  background: transparent;
  color: #111827;
  transition: all 0.2s ease;
}

.menu-panel-search-wrapper .form-control::placeholder {
  color: #9ca3af;
}

.menu-panel-search-wrapper .form-control:focus {
  box-shadow: none;
  background: transparent;
}

.menu-panel-search-wrapper .btn-outline-secondary {
  border: none;
  padding: 8px 10px;
  background: transparent;
  color: #9ca3af;
  transition: all 0.2s ease;
  border-radius: 0;
  font-size: 12px;
}

.menu-panel-search-wrapper .btn-outline-secondary:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Menu Categories List - Sleek & Thin */
.menu-categories-list {
  list-style: none;
  padding: 8px 12px;
  margin: 0;
}

.menu-category-item {
  margin-bottom: 4px;
  position: relative;
}

.menu-category-item:last-child {
  margin-bottom: 0;
}

.menu-category-item > a.menu-category-link {
  /* display: block; */
}

.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
}

.menu-category-link {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  flex-grow: 1;
  transition: all 0.15s ease;
  cursor: pointer;
  width: 100%;
  position: relative;
  background: transparent;
  border-radius: 6px;
  border: none;
}

.menu-category-link:hover {
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
}

.menu-category-link:active {
  background: #e5e7eb;
}

.menu-category-link i {
  color: #6b7280;
  width: 18px;
  text-align: center;
  font-size: 15px;
  margin-right: 10px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-category-link:hover i {
  color: #3b82f6;
}

.menu-category-toggle {
  background: transparent;
  border: none;
  padding: 10px 8px;
  cursor: pointer;
  color: #9ca3af;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  margin-left: 4px;
  flex-shrink: 0;
}

.menu-category-toggle:hover {
  background: #f3f4f6;
  color: #3b82f6;
}

.menu-category-toggle.active {
  background: #eff6ff;
  color: #3b82f6;
}

.menu-category-toggle i {
  transition: transform 0.25s ease;
  font-size: 12px;
}

.menu-category-toggle.active i {
  transform: rotate(90deg);
}

.menu-subcategories {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding-left: 12px;
}

.menu-subcategories.active {
  max-height: 2000px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #daefff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.menu-subcategory-item {
  margin-bottom: 2px;
  position: relative;
}

.menu-subcategory-item:last-child {
  margin-bottom: 0;
}

.menu-subcategory-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.15s ease;
  cursor: pointer;
  width: 100%;
  position: relative;
  background: transparent;
  border-radius: 4px;
  margin-left: 12px;
}

.menu-subcategory-link:hover {
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
}

.menu-subcategory-link i {
  color: #9ca3af;
  font-size: 13px;
  width: 16px;
  text-align: center;
  margin-right: 8px;
  transition: all 0.15s ease;
}

.menu-subcategory-link:hover i {
  color: #3b82f6;
}

.menu-view-all {
  margin-top: 8px;
  padding: 0 12px;
}

.menu-view-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.15s ease;
  /* background: #eff6ff; */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.menu-view-all-link:hover {
  background: #dbeafe;
  color: #2563eb;
  text-decoration: none;
}

.menu-view-all-link i {
  color: #3b82f6;
  margin-right: 6px;
  font-size: 12px;
  transition: all 0.15s ease;
}

.menu-view-all-link:hover i {
  transform: translateX(2px);
}

.menu-empty {
  padding: 40px 20px;
  text-align: center;
  color: #6b7280;
}

.menu-empty p {
  font-size: 13px;
  margin: 0;
  color: #9ca3af;
}

/* Enhanced Close Button */
.menu-panel-header .btn-close {
  background: transparent;
  border-radius: 4px;
  padding: 4px;
  transition: all 0.15s ease;
  opacity: 0.7;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-panel-header .btn-close:hover {
  background: #f3f4f6;
  opacity: 1;
  transform: rotate(90deg);
}

/* Loading and No Results States */
.menu-panel-content .text-center {
  padding: 40px 20px;
}

.menu-panel-content .fa-spinner {
  color: #3b82f6;
  font-size: 18px;
  margin-bottom: 12px;
}

.menu-panel-content .text-muted {
  color: #6b7280;
  font-size: 13px;
}

.menu-panel-content .text-danger {
  color: #ef4444;
}

/* Active State for Category Items */
.menu-category-item.active .menu-category-link {
  background: #eff6ff;
  color: #1e40af;
}

.menu-category-item.active .menu-category-link i {
  color: #3b82f6;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
  .menu-panel {
    left: -100%;
    width: 100%;
  }
  
  .menu-panel-header {
    padding: 12px 14px;
  }
  
  .menu-panel-search-wrapper {
    padding: 10px 14px;
  }
  
  .menu-categories-list {
    padding: 6px 10px;
  }
  
  .menu-category-link {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .menu-subcategory-link {
    padding: 6px 10px;
    font-size: 12px;
    margin-left: 10px;
  }
}

/*#########################*/
/*#### HEADER CART */
/*#########################*/
.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 95%;
  height: 100%;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-panel.open {
  right: 0;
}

.cart-panel-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.cart-panel-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: shimmer 8s infinite linear;
  pointer-events: none;
}

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

.cart-panel-title {
  color: var(--primary-color, #ffffff);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.cart-panel-title::before {
  content: '\f07a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 16px;
  opacity: 0.9;
}

.cart-panel-header .btn-close {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.cart-panel-header .btn-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.cart-panel-content {
  padding: 0;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-panel-content::-webkit-scrollbar {
  width: 6px;
}

.cart-panel-content::-webkit-scrollbar-track {
  background: transparent;
}

.cart-panel-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.cart-panel-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Cart Container */
#cart {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* Cart Loader */
.cart-loader {
    display: none;
	position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.cart-loader-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cart-loader-spinner i {
  font-size: 36px;
  color: var(--primary-bg, #1a1a2e);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Cart Items Container */
.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
	position: relative;
}

.cart-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

/* Cart Item Image */
.cart-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
}

.cart-item-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

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

.cart-item:hover .cart-item-image img {
  transform: scale(1.05);
}

.cart-item-no-image,
.cart-item-voucher-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 24px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.cart-item-voucher-icon {
  background: linear-gradient(135deg, var(--secondary-bg, #dac884) 0%, #f0e6c8 100%);
  color: #ffffff;
}

/* Cart Item Details */
.cart-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.cart-item-name:hover {
  color: var(--primary-bg, #1a1a2e);
}

/* Remove Button */
.btn-cart-remove {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #9ca3af;
  font-size: 11px;
}

.btn-cart-remove:hover {
  background: #fee2e2;
  color: #dc2626;
  transform: scale(1.1);
}

/* Cart Item Options */
.cart-item-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cart-item-option {
  font-size: 11px;
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 6px;
  color: #6b7280;
}

.cart-item-option .option-name {
  font-weight: 500;
  color: #4b5563;
}

/* Cart Item Recurring */
.cart-item-recurring {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-item-recurring i {
  color: var(--secondary-bg, #dac884);
}

/* Cart Item Footer */
.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

/* Quantity Control */
.quantity-control,
.quantity-group {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2px;
  gap: 0;
  border: 1px solid #e5e7eb;
}

.qty-btn,
.btn-qty {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.qty-btn:hover,
.btn-qty:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.qty-btn:active,
.btn-qty:active {
  transform: scale(0.95);
}

.qty-input {
  width: 38px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  padding: 4px 0;
}

.qty-input:focus {
  outline: none;
}

/* Voucher Quantity */
.voucher-qty {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 8px;
}

/* Cart Item Price */
.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-bg, #1a1a2e);
  white-space: nowrap;
}

/* Cart Summary */
.cart-summary {
  flex-shrink: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

/* Cart Totals */
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

.cart-total-label {
  font-weight: 500;
}

.cart-total-value {
  font-weight: 600;
  color: #374151;
}

.cart-total-final {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px dashed #e5e7eb;
  font-size: 16px;
}

.cart-total-final .cart-total-label {
  font-weight: 700;
  color: #1f2937;
  font-size: 16px;
}

.cart-total-final .cart-total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-bg, #1a1a2e);
}

/* Cart Actions */
.cart-actions {
  display: flex;
  gap: 12px;
}

.btn-cart-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-view-cart {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.btn-view-cart:hover {
  background: #e5e7eb;
  color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-checkout {
  background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
  color: var(--primary-color, #ffffff);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary-color, #ffffff);
}

.btn-checkout i {
  transition: transform 0.3s ease;
}

.btn-checkout:hover i {
  transform: translateX(4px);
}

/* Empty Cart State */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
}

.cart-empty-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.cart-empty-icon::before {
  content: '';
	position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed #d1d5db;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cart-empty-icon i {
  font-size: 36px;
  color: #9ca3af;
}

.cart-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.cart-empty-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
  line-height: 1.5;
  max-width: 240px;
}

.btn-start-shopping {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
  color: var(--primary-color, #ffffff);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-start-shopping:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary-color, #ffffff);
}

/* Legacy Classes Support */
.btn-remove {
  background: none;
  border: none;
  padding: 0;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-remove:hover {
  color: #dc2626;
}

.row-cart {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px #ccc solid;
}

.cart-count-badge-container {
  position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: linear-gradient(135deg, #dc3545, #ff4757);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    line-height: 1;
    display: inline-block;
    min-width: 20px;
    text-align: center;
    box-shadow: 
		0 4px 15px rgba(220, 53, 69, 0.5),
		0 0 10px rgba(220, 53, 69, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
	.cart-panel {
	  right: -100%;
	  width: 100%;
    max-width: 95%;
  }
  
  .cart-panel-header {
    padding: 16px 20px;
  }
  
  .cart-items-container {
    padding: 12px;
    gap: 10px;
  }
  
  .cart-item {
    padding: 12px;
    gap: 12px;
  }
  
  .cart-item-image {
    width: 70px;
    height: 70px;
  }
  
  .cart-item-name {
    font-size: 13px;
  }
  
  .cart-summary {
    padding: 16px;
  }
  
  .cart-actions {
	  flex-direction: column;
    gap: 10px;
  }
  
  .btn-cart-action {
    padding: 12px 16px;
  }
  
  .cart-empty {
    padding: 40px 20px;
  }
  
  .cart-empty-icon {
    width: 80px;
    height: 80px;
  }
  
  .cart-empty-icon i {
    font-size: 28px;
	}
}

/*#########################*/
/*#### HEADER MENU */
/*#########################*/
#menu{
	position: relative;
}

#menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(218, 200, 132, 0.5), 
		transparent);
}

/* Default menu styles - only apply if not using enhanced menu */
/*
#menu a.nav-link:not(.enhanced-nav-link){
	color:var(--secondary-bg);
	background: none;
	font-size: 18px;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	white-space: nowrap;
	padding: 10px 20px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

#menu a.nav-link:not(.enhanced-nav-link)::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(218, 200, 132, 0.2), transparent);
	transition: left 0.5s;
}

#menu a.nav-link:not(.enhanced-nav-link):hover::before {
	left: 100%;
}

#menu .dropdown-menu a.nav-link:not(.enhanced-dropdown-item){
	font-size: 14px;
	color:#000;
	font-weight: 400;
	padding: 8px 16px;
	border-radius: 6px;
}

#menu a.nav-link:not(.enhanced-nav-link):hover{
	background: linear-gradient(135deg, var(--secondary-bg), rgba(218, 200, 132, 0.9));
	color:var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(218, 200, 132, 0.4),
		0 0 15px rgba(218, 200, 132, 0.3);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
*/


/* Enhanced menu styles are defined inline in menu.twig with !important flags */

#menu .header-menu-title{
	color:var(--secondary-bg);
	font-weight: 700;
	font-size: 18px;
}

#menu button.navbar-toggler,
#menu button.navbar-toggler .navbar-toggler-icon{
	color:var(--secondary-bg) !important;
}

/*#########################*/
/*#### HEADER SHIPPING */
/*#########################*/
.header-shipping-info{
	font-size: 14px;
	font-weight: 700;
	background: linear-gradient(135deg, rgba(218, 200, 132, 0.2), rgba(218, 200, 132, 0.1));
	padding: 8px 20px;
	border-radius: 25px;
	border: 1px solid rgba(218, 200, 132, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.header-shipping-info::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, 
		transparent 30%, 
		rgba(255, 255, 255, 0.1) 50%, 
		transparent 70%);
	transform: rotate(45deg);
	animation: shimmer 4s infinite;
	pointer-events: none;
}

.header-shipping-info:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(218, 200, 132, 0.4),
		0 0 20px rgba(218, 200, 132, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-color: rgba(218, 200, 132, 0.5);
}

.header-shipping-info i{
	font-size: 26px;
	margin-right: 15px;
	filter: drop-shadow(0 2px 8px rgba(218, 200, 132, 0.4));
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.header-shipping-info:hover i {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 4px 12px rgba(218, 200, 132, 0.6));
}

@media screen and (max-width: 767px) {
	.header-shipping-info{
		display:none !important;
	}
}

/*#########################*/
/*#### PRODUCT MODULES */
/*#########################*/
.module-products{
	margin-bottom: 50px;
}
.module-products h3{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 2.2rem;
}
.btn-listing{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-bg);
	color:var(--primary-color);
	transition: all 0.3s ease-in-out;
	border:1px solid var(--primary-bg);
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	padding: 0px;
}

.btn-listing:hover{
	background: var(--secondary-bg);
	color:var(--secondary-color);
	border-color: var(--secondary-bg);
}

.module-products .product-thumb{
	text-align: center;
}

.module-products .product-thumb h4{
	font-size: calc(1rem + .3vw) !important;
	text-align: center;
}

.price{
	font-size: 16px;
	font-weight: 700;
}

.price-new{
	color:#dc3545;
}

.price-old{
	color:#888;
	text-decoration: line-through;
	font-weight: 400;
}

.price-tax{
	font-weight: 400;

}

.product-thumb{
	transition: all 0.3s ease-in-out;
	padding: 15px;
	margin-bottom: 15px;
}

.product-thumb:hover{
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
}

/*#########################*/
/*#### MODULAR CSS IMPORTS */
/*#########################*/
/* Product Card styles: See product-card.css */
/* Category Overview styles: See category-overview.css */
/* Category Grid styles: See category-grid.css */

.swiper-viewport {
    margin: 0 0 60px;
    background: #fff;
    z-index: 1;
    border: 4px solid #fff;
    border-radius: 4px;
    box-shadow:none;
    width: 100%;
    position: relative;
    overflow: visible;
}

.carousel.swiper-viewport{
	margin-bottom: 50px;
}

.swiper-container{
	padding-top: 15px;
	padding-left: 40px;
	padding-right: 40px;
}

.product-carousel .owl-stage{
	padding-top: 15px;
}

.product-carousel,
.carousel-module .owl-carousel.owl-theme{
	position: relative;
	padding-left: 50px;
	padding-right: 50px;
}

.owl-stage-outer{
	padding-left: 15px;
	padding-right: 15px;
}

#content .owl-carousel .owl-next,
#content .owl-carousel .owl-prev{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-bg);
	color:var(--primary-color);
	transition: all 0.3s ease-in-out;
	border:1px solid var(--primary-bg);
	padding: 0px;
	width:50px;
	height: 50px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	border-radius: 50%;
}

#content .owl-carousel .owl-next:hover,
#content .owl-carousel .owl-prev:hover{
	background: var(--secondary-bg);
	color:var(--secondary-color);
	border-color: var(--secondary-bg);
}

#content .owl-carousel .owl-next{
	right: 0px;
}

#content .owl-carousel .owl-prev{
	left: 0px;
}

/*#########################*/
/*#### BREADCRUMBS */
/*#########################*/
ul.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 15px 0 15px 0;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    border-radius: 7px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

ul.breadcrumb li {
    display: flex;
    align-items: center;
}

ul.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.6rem;
    color: #6c757d;
    font-weight: bold;
}

ul.breadcrumb li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

ul.breadcrumb li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

ul.breadcrumb li:last-child a {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/*#########################*/
/*#### CONTENTS */
/*#########################*/
.listing-inerface{
	border-top: 2px solid #dee2e6;
	border-bottom: 2px solid #dee2e6;
	padding: 15px 0 15px 0;
	margin-bottom: 15px;
	margin-top: 15px;
}

.refine-search{
	border-top: 2px solid #dee2e6;
	padding-top: 15px;
	margin-top: 15px;
}

.refine-search ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.refine-search ul li{
	display: block;
	margin: 0px;
	padding: 0px;
}

.refine-search ul li a{
	display: block;
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	 transition: all 0.3s ease-in-out;
	 padding: 5px 7px 5px 7px;
	 margin-top: 5px;
	 border-radius:7px;
}

.refine-search ul li a:hover{
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
}

.pagination-interface{
	margin: 15px 0;
}

.page-search-panel{
	background: #f8f9fb;
	padding: 15px;
	border-radius: 15px;
	margin-bottom: 25px;
}

.page-header{
	margin-top: 25px;
}

.nav-tabs .nav-link {
  border-radius: 0.5rem 0.5rem 0 0;
  margin-right: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background-color: #e9ecef;
  color: var(--primary-color);
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-bg) !important;
  color: var(--primary-color) !important;
  border-color: #dee2e6 #dee2e6 #fff;
}

.tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background-color: #fff;
}

.tempus-dominus-widget {
  border-radius: 0.5rem;
  z-index: 9999 !important;
}

.related-products{
	margin-top: 25px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.listing-inerface .input-group {
		flex-wrap: nowrap;
	}

	.listing-inerface .input-group > .input-group-text,
	.listing-inerface .input-group > .form-select {
		flex: 0 0 auto;
		width: auto;
	}
}

@media (max-width: 767.98px) {
  #button-cart {
    margin-top: 0.5rem;
  }

  .listing-inerface  .input-group {
		margin-bottom: 0.75rem; /* lub ile chcesz */
	}
}
/*#########################*/
/*#### PODUCT GALLERY */
/*#########################*/
#product-gallery {
  max-width: 100%;
}

#product-gallery .owl-nav{
  display: block !important;
}

#main-image {
  border-radius: 0.5rem;
  max-height: 600px;
  object-fit: contain;
}
.gallery-thumb {
  cursor: pointer;
  transition: border-color 0.3s;
}
.gallery-thumb:hover {
  border-color: var(--primary-color);
}
.owl-carousel .item {
  padding: 0 4px;
}

.thumbnail-container{
	padding-left: 60px;
	padding-right: 60px;
	position: relative;
	margin-bottom: 25px;
}

#content .thumbnail-container .owl-carousel .owl-prev{
	left: -60px;
}

#content .thumbnail-container .owl-carousel .owl-next{
	right: -60px;
}

/*#########################*/
/*#### RELATED PRODUCTS */
/*#########################*/

.related-products h3{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 2.2rem;
}

/*#########################*/
/*#### BLOG */
/*#########################*/
.module-blog h3{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 2.2rem;
}

.module-blog h4{
	text-align: center;
	margin-bottom: 15px;
	margin-top: 20px;
}

.module-blog .description p{
	text-align: justify;
}


/*#########################*/
/*#### FOOTER */
/*#########################*/
footer {
	background: #f8f9fa;
	color: #333;
	margin-top: 50px;
}

/* Newsletter Section */
footer .footer-newsletter {
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	color: #fff;
	padding: 40px 0;
	border-top: 1px solid #e9ecef;
}

footer .newsletter-content {
	color: #fff;
}

footer .newsletter-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #fff;
	display: flex;
	align-items: center;
}

footer .newsletter-subtitle {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

footer .newsletter-form .form-control {
	border-radius: 25px 0 0 25px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 12px 20px;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.95);
}

footer .newsletter-form .form-control:focus {
	border-color: rgba(255, 255, 255, 0.6);
	background: #fff;
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

footer .newsletter-form .btn {
	border-radius: 0 25px 25px 0;
	padding: 12px 30px;
	background: #fff;
	color: #007bff;
	border: 2px solid #fff;
	font-weight: 600;
	transition: all 0.3s ease;
}

footer .newsletter-form .btn:hover {
	background: #f8f9fa;
	border-color: #f8f9fa;
	transform: translateX(-2px);
}

/* Main Footer */
footer .footer-main {
	background: #fff;
	padding: 60px 0 40px;
	border-top: 1px solid #e9ecef;
}

footer .footer-widget {
	margin-bottom: 30px;
}

footer .footer-logo img {
	max-height: 50px;
	width: auto;
	margin-bottom: 15px;
}

footer .footer-logo h4 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

footer .footer-logo a {
	color: #333;
	text-decoration: none;
}

footer .footer-description {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 20px;
}

footer .footer-contact-info {
	margin-bottom: 20px;
}

footer .contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 14px;
}

footer .contact-item i {
	color: #007bff;
	margin-right: 10px;
	width: 20px;
	text-align: center;
}

footer .contact-item a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer .contact-item a:hover {
	color: #007bff;
}

footer .social-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

footer .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f8f9fa;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 16px;
}

footer .social-link:hover {
	background: #007bff;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

footer .footer-widget-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

footer .footer-widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: #007bff;
	border-radius: 2px;
}

footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .footer-links li {
	margin-bottom: 10px;
}

footer .footer-links a {
	color: #6c757d;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 0;
}

footer .footer-links a::before {
	content: '→';
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: all 0.3s ease;
	color: #007bff;
}

footer .footer-links a:hover {
	color: #007bff;
	padding-left: 15px;
	transform: translateX(5px);
}

footer .footer-links a:hover::before {
	opacity: 1;
	left: 0;
}

/* Footer Bottom */
footer .footer-bottom {
	background: #fff;
	border-top: 1px solid #e9ecef;
	padding: 25px 0;
}

footer .copyright-text {
	font-size: 14px;
	color: #6c757d;
	margin: 0;
}

footer .copyright-text a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer .copyright-text a:hover {
	color: #0056b3;
	text-decoration: underline;
}

footer .payment-methods {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

footer .payment-label {
	font-size: 14px;
	color: #6c757d;
	font-weight: 500;
}

footer .payment-icon {
	font-size: 32px;
	color: #6c757d;
	transition: all 0.3s ease;
	margin: 0 5px;
}

footer .payment-icon:hover {
	color: #007bff;
	transform: scale(1.1);
}

footer a[target="_blank"] {
	opacity: 0.8;
}

footer a[target="_blank"]:hover {
	opacity: 1;
}

/* Responsive Footer */
@media screen and (max-width: 991px) {
	footer .footer-newsletter .row {
		text-align: center;
	}

	footer .newsletter-content {
		margin-bottom: 20px;
	}

	footer .newsletter-form {
		max-width: 500px;
		margin: 0 auto;
	}

	footer .footer-main {
		padding: 40px 0 30px;
	}

	footer .payment-methods {
		justify-content: center;
		margin-top: 15px;
	}
}

@media screen and (max-width: 767px) {
	footer .footer-newsletter {
		padding: 30px 0;
	}

	footer .newsletter-title {
		font-size: 1.25rem;
	}

	footer .newsletter-subtitle {
		font-size: 0.875rem;
	}

	footer .newsletter-form .input-group {
		flex-direction: column;
	}

	footer .newsletter-form .form-control {
		border-radius: 25px;
		margin-bottom: 10px;
	}

	footer .newsletter-form .btn {
		border-radius: 25px;
		width: 100%;
	}

	footer .footer-main {
		padding: 30px 0 20px;
	}

	footer .footer-bottom {
		text-align: center;
		padding: 20px 0;
	}

	footer .copyright-text {
		margin-bottom: 15px;
	}

	footer .payment-methods {
		justify-content: center;
	}
}

/* ============================================
   Category Sidebar Menu (Minimized with Icons)
   ============================================ */
.category-sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    width: 60px;
    overflow: hidden;
}

.category-sidebar-menu.expanded {
    width: 280px;
}

.category-sidebar-toggle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--primary-bg, #007bff);
    color: var(--primary-color, #ffffff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease;
}

.category-sidebar-toggle:hover {
    background: var(--primary-bg, #007bff);
    opacity: 0.9;
}

.category-sidebar-toggle i {
    font-size: 20px;
}

.category-sidebar-content {
    height: calc(100vh - 60px);
    overflow-y: auto;
    overflow-x: hidden;
}

.category-sidebar-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
    min-width: 220px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-sidebar-menu.expanded .category-sidebar-header {
    opacity: 1;
    pointer-events: auto;
}

.category-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.category-sidebar-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.category-sidebar-close:hover {
    color: #000;
}

.category-sidebar-list {
    padding: 10px 0;
}

.category-sidebar-item {
    position: relative;
    margin-bottom: 5px;
}

.category-sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    min-width: 220px;
}

.category-sidebar-link:hover {
    background: #f8f9fa;
    border-left-color: var(--primary-bg, #007bff);
    color: var(--primary-bg, #007bff);
}

.category-sidebar-link i {
    font-size: 20px;
    width: 30px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.category-sidebar-label {
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

.category-sidebar-menu.expanded .category-sidebar-label {
    opacity: 1;
    pointer-events: auto;
}

.category-sidebar-toggle-children {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.category-sidebar-menu.expanded .category-sidebar-toggle-children {
    opacity: 1;
    pointer-events: auto;
}

.category-sidebar-item:hover .category-sidebar-toggle-children,
.category-sidebar-item.active .category-sidebar-toggle-children {
    opacity: 1;
    pointer-events: auto;
}

.category-sidebar-toggle-children.active {
    transform: translateY(-50%) rotate(90deg);
}

.category-sidebar-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    opacity: 0;
    pointer-events: none;
}

.category-sidebar-menu.expanded .category-sidebar-children {
    opacity: 1;
    pointer-events: auto;
}

.category-sidebar-children.active {
    max-height: 1000px;
    opacity: 1;
}

.category-sidebar-children .category-sidebar-item {
    margin-left: 45px;
    margin-bottom: 3px;
}

.category-sidebar-children .category-sidebar-link {
    padding: 8px 15px;
    font-size: 13px;
}

.category-sidebar-children .category-sidebar-link i {
    font-size: 16px;
    width: 20px;
    margin-right: 10px;
}

.category-sidebar-empty {
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-sidebar-menu.expanded .category-sidebar-empty {
    opacity: 1;
    pointer-events: auto;
}

/* Scrollbar styling for sidebar */
.category-sidebar-content::-webkit-scrollbar {
    width: 4px;
}

.category-sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-sidebar-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.category-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-sidebar-menu {
        width: 0;
    }
    
    .category-sidebar-menu.expanded {
        width: 280px;
    }
    
    .category-sidebar-toggle {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1001;
    }
}
