/* ============================================
   COMPLETE UNIFIED MOBILE-RESPONSIVE NAVBAR STYLES
   Replace ALL existing header styles with this
   ============================================ */

:root {
	--brand-color: #8a7a3f;
	--brand-dark: #6f6134;
	--brand-light: #a89d67;
	--brand-muted: #b8aa6a;
	--brand-bg-light: #f5f0df;
	--brand-bg-lighter: #faf6ed;
	--brand-border: #e5d9c3;
	--success-color: #10b981;
	--success-dark: #059669;
}

/* Modal açılanda body-ni fix et */
body.modal-open {
	position: fixed !important;
	width: 100% !important;
	overflow-y: scroll !important;
}

.modal-backdrop {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.modal {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto !important;
}

/* Navbar Search Input Override */
.nav-search .search-field {
	padding: 8px 12px !important;
	border: none !important;
	background: transparent !important;
	color: #1f2937 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

.nav-search .search-field::placeholder {
	color: #999 !important;
}

.nav-search {
	border: 2px solid var(--brand-border) !important;
	border-radius: 10px !important;
	transition: all 0.3s ease !important;
}

.nav-search:hover {
	border-color: #b8aa6a !important;
	box-shadow: 0 2px 8px rgba(138, 122, 63, 0.1) !important;
}

.nav-search:focus-within {
	border-color: var(--brand-color) !important;
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.15) !important;
}

/* ============================================
   BASE HEADER STYLES
   ============================================ */
.wolmart-header,
.header-sticky {
	background: #fff !important;
	border-bottom: 2px solid var(--brand-border) !important;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wolmart-header .container-fluid,
.header-sticky .container-fluid {
	padding-left: 15px;
	padding-right: 15px;
}

/* ============================================
   TOP NAVIGATION (Logo, Search, Icons)
   ============================================ */
   
.wolmart-header .nav-top,
.header-sticky .nav-top {
	display: flex;
	align-items: center;
	padding: 12px 0;
	gap: 15px;
}

/* LOGO */
.wolmart-header .brand,
.header-sticky .brand {
	flex-shrink: 0;
}

.wolmart-header .brand img,
.header-sticky .brand img {
	width: auto;
	height: 50px;
	display: block;
}

/* MOBILE TOGGLE BUTTON */
.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 2px solid var(--brand-border);
	border-radius: 10px;
	background: white;
	color: var(--brand-dark);
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	padding: 0;
}

.nav-toggle:hover {
	border-color: var(--brand-color);
	background: var(--brand-bg-lighter);
}

.nav-toggle .nav-toggle-bar {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	position: relative;
	transition: all 0.3s ease;
}

.nav-toggle .nav-toggle-bar::before,
.nav-toggle .nav-toggle-bar::after {
	content: '';
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle .nav-toggle-bar::before {
	top: -6px;
}

.nav-toggle .nav-toggle-bar::after {
	top: 6px;
}

.nav-toggle.is-open .nav-toggle-bar {
	background: transparent;
}

.nav-toggle.is-open .nav-toggle-bar::before {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* SEARCH BAR */
.wolmart-header .nav-search,
.header-sticky .nav-search {
	flex: 1;
	display: flex;
	align-items: center;
	border: 2px solid var(--brand-border);
	border-radius: 10px;
	background: #fff;
	padding: 6px 10px;
	gap: 8px;
	transition: all 0.3s ease;
}

.wolmart-header .nav-search:focus-within,
.header-sticky .nav-search:focus-within {
	border-color: var(--brand-color);
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.1);
}

.wolmart-header .search-select,
.header-sticky .search-select {
	position: relative;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding-right: 8px;
	border-right: 1px solid var(--brand-border);
}

.wolmart-header .search-select select,
.header-sticky .search-select select {
	border: none;
	outline: none;
	background: transparent;
	color: var(--brand-dark);
	font-weight: 500;
	font-size: 14px;
	padding-right: 20px;
	appearance: none;
	cursor: pointer;
}

.wolmart-header .search-caret,
.header-sticky .search-caret {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--brand-color);
	pointer-events: none;
}

.wolmart-header .search-field,
.header-sticky .search-field {
	flex: 1;
	border: none;
	outline: none;
	padding: 6px 8px;
	font-size: 14px;
	color: var(--brand-dark);
	min-width: 0;
}

.wolmart-header .search-field::placeholder,
.header-sticky .search-field::placeholder {
	color: #999;
}

.wolmart-header .search-submit,
.header-sticky .search-submit {
	border: none;
	background: var(--brand-color) !important;
	color: white !important;
	padding: 8px 14px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	font-size: 16px;
}

.wolmart-header .search-submit:hover,
.header-sticky .search-submit:hover {
	background: var(--brand-dark) !important;
}

/* NAVIGATION ICONS (Account, Wishlist, Cart) */
.header-tools {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	margin-left: auto;
	position: relative;
	z-index: 10002;
}

.header-account .icon-btn {
	background: #fff;
	padding: 0;
	cursor: pointer;
}

.header-account .icon-btn i {
	pointer-events: none;
}

.wolmart-header .nav-icons,
.header-sticky .nav-icons,
.nav-icons-pill {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	margin-left: 12px;
}

.wolmart-header .iconpart,
.header-sticky .iconpart,
.account-manager,
.wishlist {
	position: relative;
}

.wolmart-header .icon-btn,
.header-sticky .icon-btn {
	width: 52px;
	height: 52px;
	border: 2px solid var(--brand-border);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-color);
	background: #fff;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
}

.wolmart-header .icon-btn:hover,
.header-sticky .icon-btn:hover {
	border-color: var(--brand-color);
	color: var(--brand-dark);
	background: var(--brand-bg-lighter);
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.15);
}

.wolmart-header .icon-btn i,
.header-sticky .icon-btn i {
	font-size: 18px;
}

.wolmart-header .icon-btn .total,
.header-sticky .icon-btn .total {
	position: absolute;
	top: -2px;
	right: -2px;
	background: var(--brand-color) !important;
	color: white !important;
	border-radius: 50%;
	min-width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: bold;
	border: 2px solid white;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Account Dropdown */
.account-droapdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	background: white;
	border: 2px solid var(--brand-border);
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	min-width: 220px;
	display: none;
	z-index: 1000;
	overflow: hidden;
}

/* Show dropdown when account-open class is added via click */
.account-manager.account-open .account-droapdown {
	display: block;
}

.account-droapdown .navbar-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.account-droapdown .nav-link {
	display: block;
	padding: 12px 16px !important;
	color: var(--brand-dark) !important;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--brand-bg-light);
}

.account-droapdown .nav-item:last-child .nav-link {
	border-bottom: none;
}

.account-droapdown .nav-link:hover {
	background: var(--brand-bg-lighter);
	color: var(--brand-color) !important;
	padding-left: 20px !important;
}

/* CART BUTTON */
.cart-button-container {
	position: relative;
}

.cart-button {
	background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
	color: white;
	border: none;
	border-radius: 14px;
	padding: 0 20px;
	height: 52px;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.2);
	text-decoration: none !important;
	white-space: nowrap;
}

.cart-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(138, 122, 63, 0.3);
	color: white;
}

.cart-icon {
	position: relative;
	font-size: 18px;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--success-color);
	color: white;
	border-radius: 50%;
	min-width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: bold;
	border: 2px solid white;
}

.cart-text,
.cart-price {
	color: white;
}

.cart-price {
	font-size: 13px;
	opacity: 0.95;
}

/* Cart Dropdown */
.cart-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 320px;
	background: transparent;
	z-index: 1000;
	display: none;
	padding-top: 10px;
}

/* Invisible bridge to connect button and dropdown */
.cart-dropdown::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 15px;
	background: transparent;
}

.cart-dropdown-content {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid var(--brand-border);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cart-button-container:hover .cart-dropdown {
	display: block;
}

.cart-dropdown-header {
	padding: 16px;
	background: var(--brand-bg-lighter);
	border-bottom: 1px solid var(--brand-border);
}

.cart-dropdown-header h4 {
	color: var(--brand-dark);
	font-weight: 600;
	margin: 0;
	font-size: 16px;
}

.cart-dropdown-items {
	max-height: 300px;
	overflow-y: auto;
}

.cart-dropdown-item {
	display: flex;
	padding: 12px 16px;
	border-bottom: 1px solid var(--brand-bg-light);
	gap: 12px;
}

.cart-item-image {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid var(--brand-border);
}

.cart-item-details {
	flex: 1;
}

.cart-item-name {
	font-size: 14px;
	color: var(--brand-dark);
	font-weight: 500;
	margin-bottom: 4px;
}

.cart-item-price {
	font-size: 13px;
	color: var(--brand-color);
	font-weight: 600;
}

.cart-dropdown-footer {
	padding: 16px;
	background: var(--brand-bg-lighter);
}

.cart-total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.cart-total-amount {
	color: var(--brand-color);
	font-weight: 700;
	font-size: 18px;
}

.cart-dropdown-buttons {
	display: flex;
	gap: 10px;
}

.cart-btn-view,
.cart-btn-checkout {
	flex: 1;
	padding: 10px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cart-btn-view {
	background: white;
	color: var(--brand-color);
	border: 2px solid var(--brand-color);
}

.cart-btn-view:hover {
	background: var(--brand-bg-light);
}

.cart-btn-checkout {
	background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
	color: white;
	border: none;
}

.cart-btn-checkout:hover {
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.3);
}

.empty-cart-message {
	padding: 40px 20px;
	text-align: center;
	color: #666;
}

/* ============================================
   BOTTOM NAVIGATION (Departments & Links)
   ============================================ */
.wolmart-header .nav-bottom,
.header-sticky .nav-bottom {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 12px 0;
	border-top: 1px solid var(--brand-bg-light);
}

/* Departments */
.wolmart-header .departments,
.header-sticky .departments {
	position: relative;
}

.wolmart-header .departments-toggle,
.header-sticky .departments-toggle {
	background: var(--brand-color) !important;
	color: white !important;
	border: none !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	padding: 10px 18px !important;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.3s ease !important;
}

.wolmart-header .departments-toggle:hover,
.header-sticky .departments-toggle:hover {
	background: var(--brand-dark) !important;
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.2);
}

.wolmart-header .departments-toggle .hamburger,
.header-sticky .departments-toggle .hamburger {
	font-size: 18px;
}

/* Departments Menu */
.wolmart-header .departments-menu,
.header-sticky .departments-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 0;
	padding-top: 8px;
	background: white;
	border: 2px solid var(--brand-border);
	border-left: 3px solid var(--brand-color);
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	min-width: 280px;
	max-height: 450px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}

/* Add invisible bridge between button and menu */
.wolmart-header .departments::after,
.header-sticky .departments::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 15px;
	background: transparent;
}

.wolmart-header .departments:hover .departments-menu,
.header-sticky .departments:hover .departments-menu {
	display: block;
}

.wolmart-header .departments-menu ul,
.header-sticky .departments-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wolmart-header .departments-menu > ul > li,
.header-sticky .departments-menu > ul > li {
	border-bottom: 1px solid var(--brand-bg-light);
}

.wolmart-header .departments-menu > ul > li:last-child,
.header-sticky .departments-menu > ul > li:last-child {
	border-bottom: none;
}

.wolmart-header .departments-menu ul li a,
.header-sticky .departments-menu ul li a {
	display: block;
	padding: 12px 16px;
	color: var(--brand-dark);
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: left;
}

.wolmart-header .departments-menu ul li a:hover,
.header-sticky .departments-menu ul li a:hover {
	background: var(--brand-bg-lighter);
	color: var(--brand-color);
	padding-left: 20px;
}

.wolmart-header .departments-menu .sub,
.header-sticky .departments-menu .sub {
	background: var(--brand-bg-lighter);
	border-left: 3px solid var(--brand-light);
}

.wolmart-header .departments-menu .sub li a,
.header-sticky .departments-menu .sub li a {
	padding: 10px 24px;
	font-size: 14px;
	color: #666;
}

.wolmart-header .departments-menu .sub li a:hover,
.header-sticky .departments-menu .sub li a:hover {
	background: white;
	padding-left: 28px;
}

/* Navigation Links */
.wolmart-header .nav-links,
.header-sticky .nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
	flex: 1;
}

.wolmart-header .nav-links li a,
.header-sticky .nav-links li a {
	color: var(--brand-dark) !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	text-decoration: none !important;
	transition: all 0.3s ease;
	position: relative;
}

/* Hide SVG arrows on desktop */
.wolmart-header .nav-links li a .nav-arrow,
.header-sticky .nav-links li a .nav-arrow {
	display: none;
}

.wolmart-header .nav-links li a::after,
.header-sticky .nav-links li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--brand-color);
	transition: width 0.3s ease;
}

.wolmart-header .nav-links li a:hover::after,
.header-sticky .nav-links li a:hover::after {
	width: 100%;
}

/* ============================================
   MOBILE USER ACTIONS (Hidden on Desktop)
   ============================================ */
.mobile-user-actions {
	display: none;
}

/* ============================================
   TABLET RESPONSIVE (768px - 991px)
   ============================================ */
@media (max-width: 991px) {
	/* Fixed navbar on mobile */
	.wolmart-header,
	.header-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 1000;
	}

	/* Add margin to body to account for fixed navbar */
	body {
		margin-top: 130px;
	}

	.nav-top {
		padding-left: 10px;
	}
	/* Show mobile toggle */
	.nav-toggle {
		display: inline-flex;
		margin-left: 0;
		order: unset;
	}

	.header-tools {
		order: 2;
		margin-left: auto;
		gap: 8px;
	}

	.header-tools .header-tool-btn {
		width: 42px;
		height: 42px;
		min-width: 42px;
		min-height: 42px;
		padding: 0;
		border: 2px solid var(--brand-border);
		border-radius: 10px;
		background: #fff;
		color: var(--brand-color);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		flex-shrink: 0;
		line-height: 1;
		text-decoration: none;
		cursor: pointer;
		position: relative;
		transition: all 0.3s ease;
		-webkit-tap-highlight-color: transparent;
	}

	.header-tools .header-tool-btn:hover,
	.header-tools .header-tool-btn:focus {
		border-color: var(--brand-color);
		background: var(--brand-bg-lighter);
		color: var(--brand-dark);
		outline: none;
	}

	.header-tools .header-tool-btn i {
		font-size: 18px;
		line-height: 1;
		pointer-events: none;
	}

	.header-account .account-droapdown {
		right: 0;
		left: auto;
		transform: none;
		min-width: 220px;
	}

	/* Fullscreen mobile menu overlay - starts below header */
	.nav-bottom {
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		height: calc(100vh - 130px);
		background: white;
		z-index: 999;
		overflow-y: auto;
		padding-top: 0;
	}

	.wolmart-header .nav-top,
	.header-sticky .nav-top {
		flex-wrap: wrap;
		padding: 12px 0 8px;
		row-gap: 10px;
	}

	/* Top row: Logo + Toggle */
	.wolmart-header .brand,
	.header-sticky .brand {
		order: 1;
		flex: 0 0 auto;
	}

	.wolmart-header .brand img,
	.header-sticky .brand img {
		height: 40px;
	}

	.nav-toggle {
		order: unset;
		margin-left: 0;
		position: relative;
		z-index: 10000;
	}

	/* Header stays on top when menu is open */
	.wolmart-header.nav-open,
	.header-sticky.nav-open {
		position: relative;
		z-index: 10001;
	}

	/* Second row: Icons */
	.wolmart-header .nav-icons,
	.header-sticky .nav-icons,
	.nav-icons-pill {
		order: 3;
		flex: 1 1 100%;
		margin-left: 0;
		justify-content: space-between;
	}

	.wolmart-header .nav-icons.nav-icons-pill,
	.header-sticky .nav-icons.nav-icons-pill {
		display: none !important;
	}

	/* Third row: Search */
	.wolmart-header .nav-search,
	.header-sticky .nav-search {
		order: 4;
		flex: 1 1 100%;
		margin: 2px 0 6px;
		padding: 6px 8px;
	}

	.wolmart-header .search-select select,
	.header-sticky .search-select select {
		font-size: 12px;
		max-width: 120px;
	}

	/* Bottom navigation - hidden by default (fullscreen overlay below header) */
	.wolmart-header .nav-bottom,
	.header-sticky .nav-bottom {
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 0;
		gap: 0;
		background: white;
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		height: calc(100vh - 130px);
		z-index: 999;
		overflow-y: auto;
		border-top: 2px solid var(--brand-border);
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	}

	/* Show nav-bottom when nav is open */
	body.nav-js .header-sticky.nav-open .nav-bottom,
	body.nav-js .wolmart-header.nav-open .nav-bottom {
		display: flex;
	}

	/* Departments button with gradient and icon */
	.wolmart-header .departments-toggle,
	.header-sticky .departments-toggle {
		background: linear-gradient(135deg, #8a7a3f 0%, #6f6134 100%) !important;
		width: 100%;
		padding: 16px 20px !important;
		justify-content: flex-start;
		border-radius: 0 !important;
		margin: 0 !important;
		font-size: 16px !important;
	}

	/* Departments menu static on mobile */
	.wolmart-header .departments-menu,
	.header-sticky .departments-menu {
		position: static;
		width: 100%;
		max-height: 350px;
		margin: 0;
		border-radius: 0;
		border: none;
		border-top: 2px solid var(--brand-border);
		display: none;
	}

	/* Show departments menu when open */
	body.nav-js .departments.departments-open .departments-menu {
		display: block;
	}

	/* Navigation links vertical with left align and right arrows */
	.wolmart-header .nav-links,
	.header-sticky .nav-links {
		flex-direction: column;
		gap: 0;
		width: 100%;
		background: white;
	}

	.wolmart-header .nav-links li,
	.header-sticky .nav-links li {
		width: 100%;
	}

	.wolmart-header .nav-links li a,
	.header-sticky .nav-links li a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 20px !important;
		text-align: left;
		border-bottom: 1px solid #f5f0df;
		font-size: 15px !important;
	}

	.wolmart-header .nav-links li:last-child a,
	.header-sticky .nav-links li:last-child a {
		border-bottom: none;
	}

	/* Remove bottom line, hide ::after on mobile */
	.wolmart-header .nav-links li a::after,
	.header-sticky .nav-links li a::after {
		display: none;
	}

	/* SVG Arrow styling */
	.wolmart-header .nav-links li a .nav-arrow,
	.header-sticky .nav-links li a .nav-arrow {
		display: inline-flex;
		color: #8a7a3f;
		transition: transform 0.3s ease;
		flex-shrink: 0;
	}

	.wolmart-header .nav-links li a:hover,
	.header-sticky .nav-links li a:hover {
		background: var(--brand-bg-lighter);
		padding-left: 24px !important;
	}

	.wolmart-header .nav-links li a:hover .nav-arrow,
	.header-sticky .nav-links li a:hover .nav-arrow {
		transform: translateX(4px);
	}

	/* Mobile User Actions Section */
	.mobile-user-actions {
		display: block;
		padding: 20px;
		background: #faf6ed;
		border-top: 2px solid #e5d9c3;
	}

	.mobile-user-actions-title {
		font-size: 13px;
		font-weight: 600;
		color: #8a7a3f;
		text-transform: uppercase;
		margin-bottom: 12px;
		letter-spacing: 0.5px;
	}

	.mobile-action-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.mobile-action-card {
		background: white;
		border: 2px solid #e5d9c3;
		border-radius: 12px;
		padding: 14px 10px;
		text-align: center;
		text-decoration: none;
		color: #2f2f2f;
		transition: all 0.3s ease;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.mobile-action-card:hover,
	.mobile-action-card:active {
		background: #8a7a3f;
		color: white !important;
		border-color: #8a7a3f;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(138, 122, 63, 0.2);
	}

	.mobile-action-icon {
		font-size: 24px;
		margin-bottom: 8px;
		display: block;
	}

	.mobile-action-label {
		font-size: 12px;
		font-weight: 600;
		display: block;
	}

	.mobile-action-price {
		font-size: 11px;
		font-weight: 600;
		color: #8a7a3f;
		margin-top: 6px;
	}

	.mobile-action-badge {
		position: absolute;
		top: 8px;
		right: 8px;
		background: #8a7a3f;
		color: white;
		border-radius: 50%;
		min-width: 20px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 11px;
		font-weight: bold;
		border: 2px solid white;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	}

	.mobile-action-card:hover .mobile-action-badge,
	.mobile-action-card:active .mobile-action-badge {
		background: white;
		color: #8a7a3f;
		border-color: #8a7a3f;
	}

	/* Cart button compact */
	.cart-button {
		padding: 0 16px;
	}

	.cart-text,
	.cart-price {
		display: inline-block;
	}

	/* Account dropdown */
	.account-droapdown {
		right: 0;
		left: auto;
		min-width: 200px;
	}
}

/* ============================================
   MOBILE RESPONSIVE (576px and below)
   ============================================ */
@media (max-width: 576px) {
	.wolmart-header .container-fluid,
	.header-sticky .container-fluid {
		padding-left: 10px;
		padding-right: 10px;
	}

	.wolmart-header .brand img,
	.header-sticky .brand img {
		height: 36px;
	}

	.nav-toggle {
		width: 38px;
		height: 38px;
	}

	.header-account .icon-btn,
	.mobile-cart,
	.nav-toggle {
		width: 38px;
		height: 38px;
		min-width: 38px;
		min-height: 38px;
	}

	.nav-toggle .nav-toggle-bar,
	.nav-toggle .nav-toggle-bar::before,
	.nav-toggle .nav-toggle-bar::after {
		width: 16px;
	}

	.wolmart-header .nav-search,
	.header-sticky .nav-search {
		padding: 4px 6px;
	}

	.wolmart-header .search-select select,
	.header-sticky .search-select select {
		font-size: 11px;
		max-width: 90px;
	}

	.wolmart-header .search-field,
	.header-sticky .search-field {
		font-size: 13px;
	}

	.wolmart-header .search-submit,
	.header-sticky .search-submit {
		padding: 6px 10px;
		font-size: 14px;
	}

	.wolmart-header .nav-icons,
	.header-sticky .nav-icons,
	.nav-icons-pill {
		gap: 8px;
	}

	.wolmart-header .icon-btn,
	.header-sticky .icon-btn {
		width: 46px;
		height: 46px;
	}

	.header-tools .header-tool-btn {
		width: 38px;
		height: 38px;
		min-width: 38px;
		min-height: 38px;
		border-radius: 10px;
	}

	.wolmart-header .icon-btn i,
	.header-sticky .icon-btn i {
		font-size: 16px;
	}

	.wolmart-header .icon-btn .total,
	.header-sticky .icon-btn .total {
		min-width: 18px;
		height: 18px;
		font-size: 10px;
	}

	.cart-button {
		padding: 0 12px;
		height: 46px;
		border-radius: 12px;
	}

	.cart-icon {
		font-size: 16px;
	}

	.cart-count {
		min-width: 18px;
		height: 18px;
		font-size: 10px;
		top: -6px;
		right: -6px;
	}

	.wolmart-header .departments-toggle,
	.header-sticky .departments-toggle {
		font-size: 14px !important;
		padding: 14px 18px !important;
	}

	.wolmart-header .departments-menu ul li a,
	.header-sticky .departments-menu ul li a {
		padding: 10px 12px;
		font-size: 14px;
	}

	.wolmart-header .departments-menu .sub li a,
	.header-sticky .departments-menu .sub li a {
		padding: 8px 16px;
		font-size: 13px;
	}

	.wolmart-header .nav-links li a,
	.header-sticky .nav-links li a {
		padding: 14px 16px !important;
		font-size: 14px !important;
	}

	.account-droapdown {
		min-width: 180px;
	}

	.account-droapdown .nav-link {
		padding: 10px 14px !important;
		font-size: 14px;
	}

	/* Mobile cart dropdown */
	.cart-dropdown {
		position: fixed;
		top: auto !important;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-height: 80vh;
		border-radius: 16px 16px 0 0;
		margin: 0;
	}

	/* Mobile user actions */
	.mobile-user-actions {
		padding: 16px;
	}

	.mobile-action-grid {
		gap: 8px;
	}

	.mobile-action-card {
		padding: 12px 8px;
	}

	.mobile-action-icon {
		font-size: 22px;
		margin-bottom: 6px;
	}

	.mobile-action-label {
		font-size: 11px;
	}

	.mobile-action-badge {
		min-width: 18px;
		height: 18px;
		font-size: 10px;
		top: 6px;
		right: 6px;
	}
}

/* ============================================
   EXTRA SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
	.wolmart-header .brand img,
	.header-sticky .brand img {
		height: 32px;
	}

	.header-tools .header-tool-btn,
	.nav-toggle,
	.wolmart-header .icon-btn,
	.header-sticky .icon-btn {
		width: 38px;
		height: 38px;
		min-width: 38px;
		min-height: 38px;
		border-radius: 10px;
	}

	.cart-button {
		height: 42px;
		padding: 0 10px;
	}

	.wolmart-header .search-select select,
	.header-sticky .search-select select {
		max-width: 70px;
		font-size: 10px;
	}

	.wolmart-header .search-submit,
	.header-sticky .search-submit {
		padding: 5px 8px;
		font-size: 13px;
	}

	.wolmart-header .departments-toggle,
	.header-sticky .departments-toggle {
		font-size: 13px !important;
		padding: 12px 16px !important;
	}

	.wolmart-header .nav-links li a,
	.header-sticky .nav-links li a {
		padding: 12px 14px !important;
		font-size: 13px !important;
	}

	.mobile-action-card {
		padding: 10px 6px;
	}

	.mobile-action-icon {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.mobile-action-label {
		font-size: 10px;
	}
}

/* Desktop-da gizlət */
.mobile-cart {
	display: none;
}

@media (max-width: 992px) {
	.nav-top {
		position: relative;
	}

	.mobile-cart {
		display: inline-flex !important;
	}

	.header-tools .mobile-cart .cart-count {
		position: absolute;
		top: -6px;
		right: -6px;
		background: var(--brand-color);
		color: #fff;
		border-radius: 50%;
		font-size: 10px;
		min-width: 18px;
		height: 18px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		border: 2px solid #fff;
		line-height: 1;
	}

	.header-tools .nav-toggle .nav-toggle-bar,
	.header-tools .nav-toggle .nav-toggle-bar::before,
	.header-tools .nav-toggle .nav-toggle-bar::after {
		background: currentColor;
	}
}

/* ============================================
		   FOOTER REDESIGN STYLES
		   ============================================ */
		.footer-redesign {
			font-family: 'Noto Sans', sans-serif;
		}
		
		/* Top Bar */
		.footer-top-bar {
			background: #1e2a3a;
			padding: 30px 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		}
		
		.footer-top-content {
			display: flex;
			align-items: center;
			justify-content: space-between;
			flex-wrap: wrap;
			gap: 30px;
		}
		
		.footer-logo-section {
			display: flex;
			align-items: center;
			gap: 20px;
		}
		
		.footer-logo {
			width: 120px;
			height: auto;
		}
		
		.footer-tagline {
			display: flex;
			align-items: center;
			gap: 12px;
			color: white;
			font-size: 16px;
			font-weight: 500;
		}
		
		.tagline-icon {
			width: 40px;
			height: 40px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 8px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #8a7a3f;
			font-size: 20px;
		}
		
		.footer-contact-boxes {
			display: flex;
			gap: 40px;
			flex-wrap: wrap;
		}
		
		.contact-box {
			display: flex;
			align-items: flex-start;
			gap: 10px;
		}
		
		.contact-box-icon {
			color: rgba(255, 255, 255, 0.6);
			font-size: 18px;
			margin-top: 2px;
		}
		
		.contact-box-content {
			display: flex;
			flex-direction: column;
			gap: 2px;
		}
		.contact-box-content span {
			text-align: left;
		}
		
		.contact-box-label {
			color: rgba(255, 255, 255, 0.6);
			font-size: 12px;
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}
		
		.contact-box-value {
			color: white;
			font-size: 14px;
			font-weight: 500;
			text-decoration: none;
			transition: color 0.3s ease;
		}
		
		.contact-box-value:hover {
			color: #8a7a3f;
		}
		
		/* Main Footer */
		.footer-main {
			background: #1e2a3a;
			padding: 50px 0;
		}
		
		/* Mobile Logo (hidden by default, shown on mobile) */
		.footer-mobile-logo {
			display: none;
			margin-bottom: 30px;
		}
		
		.footer-mobile-logo img {
			width: 140px;
			height: auto;
		}
		
		.footer-columns {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 40px;
		}
		
		.footer-column {
			text-align: left;
		}
		
		.footer-column-title {
			color: white;
			font-size: 16px;
			font-weight: 600;
			margin-bottom: 20px;
			padding-bottom: 10px;
			border-bottom: 2px solid #8a7a3f;
			display: inline-block;
		}
		
		.footer-links {
			list-style: none;
			padding: 0;
			margin: 0;
			text-align: left;
		}
		
		.footer-links li {
			margin-bottom: 12px;
			text-align: left;
		}
		
		.footer-links li a {
			color: rgba(255, 255, 255, 0.7);
			text-decoration: none;
			font-size: 14px;
			transition: all 0.3s ease;
		}
		
		.footer-links li a:hover {
			color: white;
			padding-left: 5px;
		}
		
		/* Social Column */
		.footer-social-column {
			text-align: left;
		}
		
		.footer-social-icons {
			display: flex;
			gap: 12px;
			margin-bottom: 15px;
			justify-content: flex-start;
		}
		
		.social-icon {
			width: 40px;
			height: 40px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 8px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}
		
		.social-icon:hover {
			background: #8a7a3f;
			transform: translateY(-3px);
		}
		
		.social-icon img {
			width: 20px;
			height: 20px;
			filter: invert(1);
		}
		
		.footer-social-handle {
			color: rgba(255, 255, 255, 0.7);
			font-size: 14px;
			margin: 0;
		}
		
		/* Bottom Copyright */
		.footer-bottom {
			background: #1e2a3a;
			padding: 20px 0;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
		}
		
		.footer-bottom p {
			color: rgba(255, 255, 255, 0.6);
			font-size: 13px;
			margin: 0;
			text-align: center;
		}
		
		/* Responsive */
		@media (max-width: 991px) {
			.footer-top-content {
				flex-direction: column;
				align-items: flex-start;
			}
			
			.footer-contact-boxes {
				flex-direction: column;
				gap: 20px;
			}
			
			.footer-columns {
				grid-template-columns: repeat(2, 1fr);
			}
		}
		
		@media (max-width: 576px) {
			/* Reorder footer sections on mobile */
			.footer-redesign {
				display: flex;
				flex-direction: column;
			}
			
			/* Show mobile logo */
			.footer-mobile-logo {
				display: block;
				text-align: left;
				margin-bottom: 25px;
				padding-bottom: 20px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			}
			
			.footer-main {
				order: 1;
				padding: 30px 0;
			}
			
			.footer-top-bar {
				order: 2;
				padding: 20px 0;
				border-bottom: none;
				border-top: 1px solid rgba(255, 255, 255, 0.1);
			}
			
			.footer-bottom {
				order: 3;
			}
			
			/* Footer columns - 2 columns for first two, then full width */
			.footer-columns {
				grid-template-columns: repeat(2, 1fr);
				gap: 25px 20px;
			}
			
			/* Əlaqə column - full width */
			.footer-column:nth-child(3) {
				grid-column: span 2;
			}
			
			/* Social column - full width */
			.footer-social-column {
				grid-column: span 2;
			}
			
			/* Contact boxes layout for mobile */
			.footer-top-content {
				gap: 20px;
			}
			
			.footer-logo-section {
				display: none;
			}
			
			.footer-contact-boxes {
				width: 100%;
				display: grid;
				grid-template-columns: 1fr;
				gap: 15px;
			}
			
			/* First contact box (Ünvan) - full width */
			.contact-box:first-child {
				grid-column: 1;
				padding-bottom: 15px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			}
			
			/* Email and Phone side by side */
			.footer-contact-boxes {
				display: flex;
				flex-wrap: wrap;
			}
			
			.contact-box:first-child {
				width: 100%;
				flex: 0 0 100%;
			}
			
			.contact-box:nth-child(2),
			.contact-box:nth-child(3) {
				flex: 1;
				min-width: 140px;
			}
		}