
/* Product Card - Scoped to category page only */
#product-category.product-category-page .product-card {
	background: #ffffff;
	border: 1px solid #e8ecf1;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#product-category.product-category-page .product-card:hover {
	border-color: #0c4d72;
	box-shadow: 0 4px 12px rgba(12, 77, 114, 0.1);
	transform: translateY(-2px);
}

/* Product Image */
#product-category.product-category-page .product-image {
	position: relative;
	height: 240px;
	overflow: hidden;
	background: #f5f7fa;
	flex-shrink: 0;
}

#product-category.product-category-page .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#product-category.product-category-page .product-card:hover .product-image img {
	transform: scale(1.05);
}

/* Product Info */
#product-category.product-category-page .product-info {
	padding: 12px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

#product-category.product-category-page .product-title {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 8px 0;
	line-height: 1.4;
	min-height: 2.8em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

#product-category.product-category-page .product-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s;
}

#product-category.product-category-page .product-title a:hover {
	color: #0c4d72;
}

/* Product Price */
#product-category.product-category-page .product-pricing {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 6px 0;
}

#product-category.product-category-page .price-current {
	font-size: 15px;
	font-weight: 700;
	color: #e74c3c;
}

#product-category.product-category-page .price-original {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
}

/* Product Details */
#product-category.product-category-page .product-details {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #666;
	margin: 6px 0;
}

#product-category.product-category-page .min-qty {
	display: flex;
	align-items: center;
	gap: 4px;
}

#product-category.product-category-page .min-qty strong {
	color: #0c4d72;
	font-weight: 600;
}

/* Product Footer */
#product-category.product-category-page .product-footer {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px 12px 12px;
	border-top: 1px solid #f0f0f0;
	margin-top: auto;
}

/* Add to Cart Button */
#product-category.product-category-page .btn-add-cart {
	width: 100%;
	padding: 10px;
	background: linear-gradient(135deg, #0c4d72 0%, #093a52 100%);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

#product-category.product-category-page .btn-add-cart:hover {
	background: linear-gradient(135deg, #093a52 0%, #062530 100%);
	transform: none;
	box-shadow: 0 4px 8px rgba(12, 77, 114, 0.2);
}

#product-category.product-category-page .btn-add-cart.out-of-stock-btn {
	background: #cccccc;
	cursor: not-allowed;
}

#product-category.product-category-page .btn-add-cart.out-of-stock-btn:hover {
	background: #bbbbbb;
	transform: none;
	box-shadow: none;
}

/* Quantity Selector - Improved */
#product-category.product-category-page .quantity-selector {
	display: flex;
	align-items: center;
	gap: 4px;
	background: #f8f9fa;
	padding: 6px;
	border-radius: 6px;
}

#product-category.product-category-page .qty-btn {
	width: 32px;
	height: 32px;
	padding: 0;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	color: #0c4d72;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

#product-category.product-category-page .qty-btn:hover {
	background: #0c4d72;
	color: #ffffff;
	border-color: #0c4d72;
}

#product-category.product-category-page .qty-input {
	width: 100%;
	height: 32px;
	border: none;
	background: transparent;
	text-align: center;
	font-weight: 600;
	color: #1a1a1a;
	font-size: 13px;
}

#product-category.product-category-page .qty-input:focus {
	outline: none;
}

/* Main Content Wrapper */
.main-content {
	background: #ffffff;
	padding: 0;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
	border-bottom: 1px solid #e8ecf1;
	padding: 20px 0;
	margin-bottom: 30px;
}

.page-header h1 {
	font-size: 28px;
	color: #1a1a1a;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.page-header .breadcrumb {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	list-style: none;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.page-header .breadcrumb li {
	font-size: 13px;
	color: #666;
}

.page-header .breadcrumb li a {
	color: #0c4d72;
	text-decoration: none;
	transition: color 0.2s;
}

.page-header .breadcrumb li a:hover {
	color: #094061;
	text-decoration: underline;
}

.page-header .breadcrumb li:not(:last-child)::after {
	content: ' / ';
	margin: 0 5px;
	color: #ccc;
}

/* Category Page Container */
.category-page {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

/* Products Section */
.products-section {
	flex: 1;
	min-width: 0;
}

.products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding: 12px 16px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e8ecf1;
}

.products-count {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 14px;
}

/* Products Grid - responsive (default: auto-fit) */
#product-category.product-category-page .products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	margin: 0;
}

/* For very large screens show 5 columns */
@media (min-width: 1500px) {
	.product-category-page, #product-category.product-category-page.container-fluid {
		max-width: 1600px !important;
	}
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 18px;
	}
	#product-category.product-category-page .product-image {
		height: 260px;
	}
}

@media (max-width: 1400px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 14px;
	}
}

@media (max-width: 1200px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
}

@media (max-width: 768px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

@media (max-width: 480px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: 1fr;
	}
}
body {
	font-family: 'Cairo', Tahoma, Geneva, sans-serif;
	font-weight: 400;
	color: #666;
	font-size: 13px;
	line-height: 20px;
	width: 100%;
}

.container {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 1600px) {
	.container {
		width: 1600px;
	}
}

h1, h2, h3, h4, h5, h6 {
	color: #444;
}
/* default font size */
.fa {
	font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 33px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 13px;
}
h6 {
	font-size: 10.2px;
}
a {
	color: #23a1d1;
}
a:hover {
	text-decoration: none;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 13px;
	font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 13px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 13px;
}
.input-group .input-group-addon {
	font-size: 13px;
	height: 25px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
	text-decoration: none;
	color: #ffffff;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
}
/* top */
#top {
	background-color: #EEEEEE;
	border-bottom: 1px solid #e2e2e2;
	padding: 4px 0px 3px 0;
	margin: 0 0 20px 0;
	min-height: 40px;
}
#top .container {
	padding: 0 20px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
	text-align: right;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
	text-shadow: none;
	color: #ffffff;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
}
#top .btn-link, #top-links li, #top-links a {
	color: #888;
	text-shadow: 0 1px 0 #FFF;
	text-decoration: none;
}
#top .btn-link:hover, #top-links a:hover {
	color: #444;
}
#top-links .dropdown-menu a {
	text-shadow: none;
}
#top-links .dropdown-menu a:hover {
	color: #FFF;
}
#top .btn-link strong {
	font-size: 14px;
	line-height: 14px;
}
#top-links {
	padding-top: 6px;
}
#top-links a + a {
	margin-right: 15px;
}
/* logo */
#logo {
	margin: 0 0 10px 0;
}
/* search */
#search {
	margin-bottom: 10px;
}
#search .input-lg {
	height: 40px;
	line-height: 20px;
	padding: 0 10px;
}
#search .btn-lg {
	font-size: 15px;
	line-height: 18px;
	padding: 10px 35px;
	text-shadow: 0 1px 0 #FFF;
}
/* cart */
#cart {
	margin-bottom: 10px;
}
#cart > .btn {
	font-size: 13px;
	line-height: 18px;
	color: #FFF;
}
#cart.open > .btn {
	background-image: none;
	background-color: #FFFFFF;
	border: 1px solid #E6E6E6;
	color: #666;
	box-shadow: none;
	text-shadow: none;
}
#cart.open > .btn:hover {
	color: #444;
}
#cart .dropdown-menu {
	background: #eee;
	z-index: 1001;
}
#cart .dropdown-menu {
	min-width: 100%;
	overflow-y: auto;
	max-height: 800px;
	scrollbar-width: thin;
	overflow-x: hidden;
}
@media (max-width: 478px) {
		#cart .dropdown-menu {
			width: 100%;
		}
	}

.main-header {
	background: #fff;
	padding: 16px 0 12px;
	position: relative;
	z-index: 15;
	box-shadow: 0 10px 30px rgba(12,77,114,0.08);
}
.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0;
}
.logo {
	max-width: 230px;
}
.logo img {
	max-height: 62px;
	width: auto;
}
.header-search {
	flex: 1;
	min-width: 280px;
}
.header-search #search {
	width: 100%;
	border-radius: 50px;
	border: 1px solid #dce6ef;
	background: #f9fbff;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.header-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,0.14);
	color: #ffffff;
	font-size: 16px;
	transition: background .25s ease, transform .25s ease;
	border: 1px solid rgba(255,255,255,0.12);
}
.header-actions a:hover {
	background: rgba(255,255,255,0.24);
	transform: translateY(-2px);
}
.cart-link {
	position: relative;
}
.cart-link .cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 18px;
	height: 18px;
	font-size: 11px;
	line-height: 18px;
	border-radius: 50%;
	background: #ff4c2e;
	color: #fff;
	text-align: center;
	padding: 0 5px;
}
.logo-text {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-transform: uppercase;
}
.menu-wrapper {
	/* User request: make menu-wrapper background a light panel like reference */
	.menu-wrapper {
		background: rgb(252, 251, 244) !important;
		background-image: none !important;
	}
	background: #0c4d72;
	padding: 18px 0 16px;
}

/* Enhanced header/menu visuals to match reference */
.main-header {
	padding: 20px 0 14px;
	background: linear-gradient(90deg, #0b2a5a 0%, #0d3b80 30%, #0e5aa8 60%, #1e88e5 100%) !important;
	box-shadow: 0 8px 30px rgba(12,77,114,0.12) !important;
}
.header-top {
	gap: 28px;
	align-items: center;
}
.logo img, .logo .logo-text {
	max-height: 72px;
	display: inline-block;
}
.header-search #search {
	max-width: 720px;
	border-radius: 26px;
	 /* padding-left: 18px; */
	/* padding-right: 18px; */ 
	background: linear-gradient(180deg,#fff,#f5fbff);
	box-shadow: 0 6px 20px rgba(13,71,121,0.08);
}

.menu-wrapper {
	background: linear-gradient(90deg, rgba(18,35,71,0.98) 0%, rgba(41,30,75,0.98) 100%);
	padding: 12px 0 16px;
	box-shadow: inset 0 -6px 20px rgba(0,0,0,0.12);
}
.desktop-nav-list {
	justify-content: center;
	gap: 14px;
}
.desktop-nav-list .nav-item a,
.desktop-nav-list .nav-item .category-name {
	background: linear-gradient(180deg, #58a6ff 0%, #1f8ed6 100%);
	color: #fff !important;
	padding: 9px 20px;
	border-radius: 20px;
	box-shadow: 0 8px 22px rgba(11,60,110,0.10);
	font-weight: 700;
	transition: transform .18s ease, box-shadow .18s ease;
	border: 1px solid rgba(255,255,255,0.06);
}
.desktop-nav-list .nav-item a:hover,
.desktop-nav-list .nav-item .category-name:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(11,60,110,0.16);
}

/* subtle stripe overlay on header to match reference feel */
.main-header::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 60px;
	background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 6px, rgba(255,255,255,0) 6px 12px);
	pointer-events: none;
	z-index: 0;
}

/* tighten menu pills spacing */
.desktop-nav-list { padding: 6px 10px; }

/* refine search look */
.header-search #search input[type="text"] { padding: 10px 16px; }

/* Footer tweaks */
.footer-site {
	background: #fafafa;
	padding: 34px 0 22px;
	border-top: 1px solid #eee;
}
.footer-site .footer-top .footer-block h5 {
	color: #0d3553;
}

/* Small screens: compact menu pills */
@media (max-width: 991px) {
	.desktop-nav-list .nav-item a { padding: 8px 14px; font-size: 13px; }
	.header-search #search { max-width: 100%; }
}

/* Mobile: hide desktop pills, show compact mobile nav and adjust header */
@media (max-width: 991px) {
	.desktop-nav { display: none !important; }
	.menu-wrapper { padding: 8px 0 !important; }
	.mobile-bottom-nav { display: flex !important; }
	.desktop-nav-list { padding: 6px 6px !important; }
	.desktop-nav-list .nav-item a,
	.desktop-nav-list .nav-item .category-name { padding: 7px 10px !important; border-radius: 12px !important; font-size: 13px !important; }
	.header-search #search { max-width: calc(100% - 40px) !important; }
	.header-actions a { width: 40px !important; height: 40px !important; }
	.logo img, .logo .logo-text { max-height: 48px !important; }
	.page-header h1 { text-align: right !important; font-size: 20px !important; padding-right: 8px !important; }
	.page-header .breadcrumb { position: static !important; transform: none !important; justify-content: flex-end !important; margin-top: 8px !important; }
}

@media (max-width: 480px) {
	.header-search #search { display: none !important; }
	.mobile-bottom-nav a span { display: none !important; }
	.page-header h1 { font-size: 18px !important; }
}

/* Final header refinements */
.main-header {
	position: relative;
	z-index: 50;
}
.header-top { padding: 6px 0 6px; }
.header-actions a { background: rgba(255,255,255,0.06); color: #fff; }
.header-actions a:hover { background: rgba(255,255,255,0.14); color: #fff; transform: translateY(-2px); }
.header-search #search { border: none; box-shadow: 0 8px 28px rgba(13,71,121,0.08); }

/* Make menu feel fuller and slightly curved */
.menu-wrapper { padding-top: 18px; padding-bottom: 18px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.desktop-nav-list .nav-item a { text-shadow: none; }

/* Footer visual improvements */
.footer-site {
background: linear-gradient(180deg, #071427 0%, #0b2540 100%);
color: #eee;
padding: 48px 0 28px;
}
.footer-top-links {
border-bottom: 1px solid rgba(255,255,255,0.1);
padding-bottom: 20px;
margin-bottom: 25px;
}
.footer-links-horizontal {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
.footer-links-horizontal a {
color: rgba(255,255,255,0.85);
text-decoration: none;
font-size: 13px;
padding-bottom: 3px;
border-bottom: 2px solid transparent;
transition: all 0.3s ease;
}
.footer-links-horizontal a:hover {
color: #fff;
border-bottom-color: #fff;
}

.footer-middle {
border-bottom: 1px solid rgba(255,255,255,0.1);
padding: 25px 0;
margin-bottom: 25px;
}
.footer-contact {
display: flex;
flex-direction: column;
gap: 15px;
}
.contact-email,
.contact-phone {
display: flex;
flex-direction: column;
align-items: center;
}
.contact-email .label,
.contact-phone .label {
font-size: 12px;
color: rgba(255,255,255,0.7);
margin-bottom: 4px;
font-weight: 600;
}
.contact-email a,
.contact-phone a {
color: rgba(255,255,255,0.85);
text-decoration: none;
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
transition: color 0.3s ease;
}
.contact-email a:hover,
.contact-phone a:hover { color: #fff; }
.contact-email i, .contact-phone i { font-size: 16px; }

.footer-center-links {
display: flex;
align-items: center;
justify-content: center;
}
.links-group {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.links-group a {
color: rgba(255,255,255,0.85);
text-decoration: none;
font-size: 13px;
padding: 0 10px;
border-right: 1px solid rgba(255,255,255,0.2);
transition: color 0.3s ease;
}
.links-group a:first-child { border-left: 1px solid rgba(255,255,255,0.2); padding-left: 0; }
.links-group a:last-child { border-right: none; padding-right: 0; }
.links-group a:hover { color: #fff; }

.footer-social-top {
display: flex;
justify-content: center;
gap: 15px;
}
.footer-social-top a {
display: inline-flex;
width: 38px;
height: 38px;
border-radius: 50%;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.1);
color: #fff;
transition: all 0.3s ease;
text-decoration: none;
}
.footer-social-top a:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.12);
padding-top: 18px;
text-align: center;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.75); font-size: 12px; }

.copyright { margin-bottom: 6px; }
.developed-by { font-size: 11px; color: rgba(255,255,255,0.6); }

/* Responsive tweaks */
@media (max-width: 767px) {
.footer-top-links { margin-bottom: 15px; padding-bottom: 15px; }
.footer-links-horizontal { gap: 8px; }
.footer-links-horizontal a { font-size: 12px; }
.footer-middle { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 15px 0; margin-bottom: 15px; }
.footer-contact, .footer-center-links, .footer-social-top { text-align: center; }
.links-group { gap: 12px; }
.links-group a { font-size: 12px; padding: 0 8px; }
.contact-email a, .contact-phone a { font-size: 12px; }
.footer-social-top a { width: 34px; height: 34px; font-size: 14px; }
}





.footer-site {
	background: linear-gradient(180deg, #071427 0%, #0b2540 100%);
	color: #eee;
	padding: 48px 0 28px;
}
.footer-site .footer-top {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-site .footer-block {
	min-width: 180px;
}
.footer-site .footer-block h5 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 12px;
}
.footer-site ul li a { color: rgba(255,255,255,0.85); }
.footer-site ul li a:hover { color: #cfe9ff; }
.footer-site .footer-contact { background: transparent; padding-bottom: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 20px; margin-top: 22px; color: rgba(255,255,255,0.65); }
.footer-social a { display: inline-flex; width: 38px; height: 38px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); color: #fff; margin-left: 8px; transition: transform .18s ease, background .18s ease; }
.footer-social a:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }

@media (max-width: 767px) {
	.footer-site .footer-top { flex-direction: column; gap: 16px; }
	.footer-site .footer-block { min-width: auto; }
}

/* Centered search and header refinements to match reference */
.header-top { position: relative; padding: 18px 0; }
.header-search { position: absolute; left: 50%; top: 12px; transform: translateX(-50%); width: 560px; max-width: 70%; }
.header-search .form-control { border-radius: 28px; padding: 14px 18px; box-shadow: 0 8px 30px rgba(6,30,70,0.12); border: none; }
.header-search .input-group-append .btn { border-radius: 20px; margin-left: 8px; }
.header-top .logo { max-height: 64px; display: flex; align-items: center; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-actions a { color: #fff; background: rgba(255,255,255,0.06); width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.header-actions a:hover { background: rgba(255,255,255,0.12); }

/* Nav pills styling */
.desktop-nav-list { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 14px 0; }
.desktop-nav-list .nav-item a { background: linear-gradient(180deg,#4ea8f6,#2186ea); color: #fff; padding: 8px 18px; border-radius: 20px; box-shadow: 0 6px 18px rgba(8,60,120,0.15); border: 1px solid rgba(255,255,255,0.06); }
.desktop-nav-list .nav-item a:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(8,60,120,0.18); }

/* Header banner strip */
.header-banner { background: #0b3b74; padding: 0; }
.header-banner .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.header-banner .banner-inner {
    height: 84px;
    border-radius: 0 !important;
    box-shadow: inset 0 -10px 40px rgba(0,0,0,0.18);
        overflow: hidden;
}
.header-banner .banner-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cart container spacing */
.container > .row { gap: 22px; }
.cart-table, .cart-summary-card { border-radius: 14px; box-shadow: 0 14px 40px rgba(18,38,63,0.08); padding: 28px; background: #fff; }
.cart-table .product-row { padding: 20px 14px; border-bottom: 1px solid #eef2f6; }

@media (max-width: 991px) {
	.header-search { width: 420px; max-width: 80%; }
}

@media (max-width: 767px) {
	.header-search { position: static; transform: none; width: 100%; margin: 8px 0; }
	.desktop-nav-list { display: none; }
}
.desktop-nav {
	padding: 0;
	display: block !important;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px;
	background: rgb(252, 251, 244);
	border-bottom: 1px solid rgb(235, 235, 235);
}
.desktop-nav .container {
	max-width: 1240px;
}
 .desktop-nav-list {
	display: grid !important;
	grid-template-columns: repeat(7, minmax(0, auto)) !important;
	justify-content: center !important;
	gap: 12px !important;
	list-style: none;
	margin: 0;
	padding: 14px 0;
}
.desktop-nav-list .nav-item {
	position: relative;
}
.desktop-nav-list .nav-item a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 700;
	padding: 12px 22px;
	text-decoration: none;
	background: linear-gradient(135deg, #0d597e 0%, #0a4c7a 100%);
	border-radius: 50px;
	box-shadow: 0 14px 30px rgba(0,0,0,0.08);
	transition: transform .24s ease, background .24s ease;
}
@media (min-width: 1200px) {
	.desktop-nav-list {
		display: grid !important;
		grid-template-columns: repeat(7, auto) !important;
		justify-content: center !important;
		gap: 12px !important;
	}
}
.desktop-nav-list .nav-item a:hover,
.desktop-nav-list .nav-item a:focus {
	background: linear-gradient(135deg, #0d6b97 0%, #0b5d87 100%);
	transform: translateY(-1px);
}
.desktop-nav-list .nav-item.has-mega > .category-name {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.category-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
}
.mega-menu {
	position: absolute;
	top: calc(100% + 0px);
	right: 0;
	left: auto;
	min-width: 100%;
	max-width: calc(100vw - 30px);
	display: none;
	background: rgb(252, 251, 244) !important;
	background-image: none !important;
	padding: 18px;
	border-radius: 22px;
	box-shadow: none !important;
	z-index: 999;
}
.nav-item.has-mega:hover > .mega-menu,
.nav-item.has-mega.active > .mega-menu {
	display: block !important;
}
.nav-wrapper { position: relative; }
.nav-item.has-mega { position: static !important; }
.nav-item.has-mega > .mega-menu { left: 0 !important; right: 0 !important; }

/* Category name styling (highlight + hover) */
.nav-item .category-name {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 10px;
	background: transparent;
	color: var(--nav-text-color, #24323a);
	font-weight: 700;
	transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.nav-item .category-name .category-arrow { margin-inline-start: 8px; }
.nav-item.has-mega .category-name {
	background: rgba(6,86,117,0.06);
	color: var(--primary-color, #0c4d72);
}
.nav-item .category-name:hover,
.nav-item.has-mega.active .category-name {
	 /* background: var(--primary-color, #0c4d72); */
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(12,77,114,0.12);
}
.mega-inner {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.mega-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}
.mega-item {
	width: auto;
}
.mega-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 14px;
	color: #0c4d72;
	text-decoration: none;
	font-weight: 600;
	border-radius: 20px;
	border: 1px solid #e6eef7;
	background: #f8fbff;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.mega-item a:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(12,77,114,0.08);
	border-color: #d5e6f5;
	background: #eef7ff;
}
.mega-item-image {
	width: 100%;
	margin-bottom: 12px;
}
.mega-item-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	object-fit: cover;
	display: block;
}
.mega-item-title {
	display: block;
	font-size: 14px;
	color: #0c4d72;
	font-weight: 700;
	margin-top: 4px;
}
.mobile-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #ececec;
	z-index: 9999;
}
.mobile-bottom-nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-bottom-nav li {
	flex: 1;
}
.mobile-bottom-nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 0;
	color: #0c4d72;
	font-size: 12px;
	text-decoration: none;
}
.mobile-bottom-nav a .fas {
	font-size: 18px;
}
.mobile-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 320px;
	height: 100vh;
	background: #fff;
	box-shadow: -4px 0 24px rgba(0,0,0,.14);
	z-index: 10000;
	transition: right .3s ease;
	overflow-y: auto;
}
.mobile-sidebar.open {
	right: 0;
}
.mobile-sidebar .sidebar-header {
	padding: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
}
.mobile-sidebar .sidebar-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-sidebar .sidebar-menu li {
	border-bottom: 1px solid #f1f1f1;
}
.mobile-sidebar .sidebar-menu li a {
	display: block;
	padding: 14px 18px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
}
.mobile-sidebar .sidebar-menu li a .fas {
	margin-left: 10px;
}
.sidebar-divider {
	height: 1px;
	background: #eee;
	margin: 12px 0;
}
#cart .dropdown-menu table {
	margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
	min-width: 427px;
	padding: 0 10px;
}
@media (max-width: 478px) {
		#cart .dropdown-menu li > div {
			min-width: 100%;
		}
	}
#cart .dropdown-menu li p {
	margin: 20px 0;
}
/* menu */
#menu {
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
	border-color: #1f90bb #1f90bb #145e7a;
	min-height: 40px;
}
#menu .nav > li > a {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	padding: 10px 15px 10px 15px;
	min-height: 15px;
	background-color: transparent;
}
#menu .nav > li > a:hover, #menu .nav > li.open > a {
	background-color: rgba(0, 0, 0, 0.1);
}
#menu .dropdown-menu {
	padding-bottom: 0;
}
#menu .dropdown-inner {
	display: table;
}
#menu .dropdown-inner ul {
	display: table-cell;
}
#menu .dropdown-inner a {
	min-width: 160px;
	display: block;
	padding: 3px 20px;
	clear: both;
	line-height: 20px;
	color: #333333;
	font-size: 13px;
}
#menu .dropdown-inner li a:hover {
	color: #FFFFFF;
}
#menu .see-all {
	display: block;
	margin-top: 0.5em;
	border-top: 1px solid #DDD;
	padding: 3px 20px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 3px 3px;
	font-size: 13px;
}
#menu .see-all:hover, #menu .see-all:focus {
	text-decoration: none;
	color: #ffffff;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
}
#menu #category {
	float: right;
	padding-right: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .btn-navbar {
	font-size: 15px;
	font-stretch: expanded;
	color: #FFF;
	padding: 2px 18px;
	float: left;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
	border-color: #1f90bb #1f90bb #145e7a;
}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
	color: #ffffff;
	background-color: #229ac8;
}
@media (min-width: 768px) {
	#menu .dropdown:hover .dropdown-menu {
		display: block;
	}
}
@media (max-width: 767px) {
	#menu {
		border-radius: 4px;
	}
	#menu div.dropdown-inner > ul.list-unstyled {
		display: block;
	}
	#menu div.dropdown-menu {
		margin-right: 0 !important;
		padding-bottom: 10px;
		background-color: rgba(0, 0, 0, 0.1);
	}
	#menu .dropdown-inner {
		display: block;
	}
	#menu .dropdown-inner a {
		width: 100%;
		color: #fff;
	}
	#menu .dropdown-menu a:hover,
	#menu .dropdown-menu ul li a:hover {
		background: rgba(0, 0, 0, 0.1);
	}
	#menu .see-all {
		margin-top: 0;
		border: none;
		border-radius: 0;
		color: #fff;
	}
}
/* content */
#content {
	min-height: 600px;
}
#product-category #content, #product-product #tab-description, #information-information #content {
	font-size: 13px;
}
/* footer */
footer {
	margin-top: 30px;
	padding-top: 30px;
	background-color: #303030;
	border-top: 1px solid #ddd;
	color: #e2e2e2;
}
footer hr {
	border-top: none;
	border-bottom: 1px solid #666;
}
footer a {
	color: #ccc;
}
footer a:hover {
	color: #fff;
}
footer h5 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
}
/* alert */
.alert {
	padding: 8px 14px 8px 14px;
}
.alert > .close {
	position: relative;
	top: -2px;
	right: 0px;
	color: inherit;
}
/* breadcrumb */
.breadcrumb {
	margin: 0 0 20px 0;
	padding: 8px 0;
	border: 1px solid #ddd;
}
.breadcrumb i {
	font-size: 15px;
}
.breadcrumb > li {
	text-shadow: 0 1px 0 #FFF;
	padding: 0 20px;
	position: relative;
	white-space: nowrap;
}
.breadcrumb > li + li:before {
	content: '';
	padding: 0;
}
.breadcrumb > li:after {
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: -5px;
	width: 26px;
	height: 26px;
	border-left: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.pagination {
	margin: 0;
}
/* buttons */
.buttons {
	margin: 1em 0;
}
.btn {
	padding: 7.5px 12px;
	font-size: 13px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn-xs {
	font-size: 9px;
}
.btn-sm {
	font-size: 10.2px;
}
.btn-lg {
	padding: 10px 16px;
	font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 13px;
}
.btn-group > .btn-xs {
	font-size: 9px;
}
.btn-group > .btn-sm {
	font-size: 10.2px;
}
.btn-group > .btn-lg {
	font-size: 15px;
}
.btn-default {
	color: #777;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #e7e7e7;
	background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
	background-repeat: repeat-x;
	border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}
.btn-primary {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
	border-color: #1f90bb #1f90bb #145e7a;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
	background-color: #1f90bb;
	background-position: 0 -15px;
}
.btn-warning {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #faa732;
	background-image: linear-gradient(to bottom, #fbb450, #f89406);
	background-repeat: repeat-x;
	border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #da4f49;
	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #5bb75b;
	background-image: linear-gradient(to bottom, #62c462, #51a351);
	background-repeat: repeat-x;
	border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #df5c39;
	background-image: linear-gradient(to bottom, #e06342, #dc512c);
	background-repeat: repeat-x;
	border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
	background-image: none;
	background-color: #df5c39;
}
.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #23A1D1;
	border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
}
.btn-inverse {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border-color: #222222 #222222 #000000;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: #222222;
	background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
	border: 1px solid #DDDDDD;
	color: #888888;
	padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
	color: #444444;
	background: #eeeeee;
	border: 1px solid #DDDDDD;
	text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}
/* product list */
.product-thumb {
	border: 1px solid #ddd;
	margin-bottom: 20px;
	overflow: auto;
}
.product-thumb .image {
	text-align: center;
}
.product-thumb .image a {
	display: block;
}
.product-thumb .image a:hover {
	opacity: 0.8;
}
.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
}
.product-grid .product-thumb .image {
	float: none;
}
@media (min-width: 767px) {
.product-list .product-thumb .image {
	float: right;
	padding: 0 15px;
}
}
.product-thumb h4 {
	font-weight: bold;
}
.product-thumb .caption {
	padding: 0 20px;
	min-height: 180px;
}
.product-list .product-thumb .caption {
	margin-right: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
	min-height: 210px;
	padding: 0 10px;
}
}
@media (max-width: 767px) {
.product-list .product-thumb .caption {
	min-height: 0;
	margin-right: 0;
	padding: 0 10px;
}
.product-grid .product-thumb .caption {
	min-height: 0;
}
}

.product-thumb .rating {
	padding-bottom: 10px;
}
.rating .fa-stack {
	font-size: 8px;
}
.rating .fa-star-o {
	color: #999;
	font-size: 15px;
}
.rating .fa-star {
	color: #FC0;
	font-size: 15px;
}
.rating .fa-star + .fa-star-o {
	color: #E69500;
}
h2.price {
	margin: 0;
}
.product-thumb .price {
	color: #444;
}
.product-thumb .price-new {
	font-weight: 600;
}
.product-thumb .price-old {
	color: #999;
	text-decoration: line-through;
	margin-right: 10px;
}
.product-thumb .price-tax {
	color: #999;
	font-size: 13px;
	display: block;
}
.product-thumb .button-group {
	border-top: 1px solid #ddd;
	background-color: #eee;
	overflow: auto;
}
.product-list .product-thumb .button-group {
	border-right: 1px solid #ddd;
}

@media (max-width: 768px) {
.product-list .product-thumb .button-group {
	border-right: none;
}
}
.product-thumb .button-group button {
	width: 60%;
	border: none;
	display: inline-block;
	float: right;
	background-color: #eee;
	color: #888;
	line-height: 38px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}
.product-thumb .button-group button + button {
	width: 20%;
	border-right: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
	color: #444;
	background-color: #ddd;
	text-decoration: none;
	cursor: pointer;
}
@media (max-width: 1200px) {
.product-thumb .button-group button, .product-thumb .button-group button + button {
	width: 33.33%;
}
}
@media (max-width: 767px) {
.product-thumb .button-group button, .product-thumb .button-group button + button {
	width: 33.33%;
}
}




.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thumbnails > li {
	margin-right: 20px;
}
.thumbnails {
	margin-right: -20px;
}
.thumbnails > img {
	width: 100%;
}
.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd;
}
.image-additional {
	max-width: 78px;
}
.thumbnails .image-additional {
	float: right;
	margin-right: 20px;
}

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:right;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:right;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:right;
	}
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3{
       width: 100%;
    }
    #column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }
    #column-left + #content + #column-right .product-layout .col-md-3{
       width: 100%;
    }
    #content + #column-right .product-layout .col-md-3{
       width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

/* ledatak theme customizations */
body {
	background: #f6f6f6;
}
.topbar {
	background: #0c4d72;
	padding: 10px 0;
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar-left,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 15px;
}
.topbar-right .top-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 15px;
}
.header-main {
	background: #fff;
	padding: 18px 0;
	border-bottom: 1px solid rgba(12,77,114,.14);
	box-shadow: 0 10px 35px rgba(12,77,114,.08);
}
.header-main .header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.header-main .logo-wrap {
	padding-top: 6px;
}
.header-main .logo-wrap img {
	max-height: 58px;
	width: auto;
}
.header-main .search-wrap {
	padding-top: 8px;
}
.header-main .cart-wrap {
	padding-top: 8px;
	text-align: right;
}
.cart-actions-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	justify-content: flex-end;
}
.action-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0c4d72;
	font-weight: 700;
	text-decoration: none;
}
.action-item i {
	font-size: 16px;
}
#search {
	margin-bottom: 10px;
}
#search .form-control {
	border-radius: 50px;
	border: 1px solid rgba(12,77,114,.18);
	height: 44px;
	padding: 0 20px;
}
#search .input-group-btn .btn {
	border-radius: 50px;
	padding: 10px 20px;
	background: #0c4d72;
	color: #fff;
	border: 1px solid #0c4d72;
}
#search .input-group-btn .btn:hover,
#search .input-group-btn .btn:focus {
	background: #095271;
	border-color: #095271;
}
#menu .navbar-toggle {
	border-color: rgba(255,255,255,0.35);
}
#menu .navbar-toggle .icon-bar {
	background-color: #fff;
}
#category {
	color: #fff;
	font-weight: 700;
	font-weight: 700;
}
.mobile-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.open {
	opacity: 1;
	visibility: visible;
}
.mobile-sidebar .sidebar-menu li a i {
	margin-inline-start: 10px;
	color: #0c4d72;
}

.mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	border-top: 1px solid #ddd;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.mobile-bottom-nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-bottom-nav li {
	flex: 1;
}
.mobile-bottom-nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	color: #0c4d72;
	font-weight: 700;
	text-decoration: none;
}
.mobile-bottom-nav a i {
	font-size: 18px;
	margin-bottom: 4px;
}
.mobile-bottom-nav a span {
	display: block;
	font-size: 11px;
}

@media (max-width: 768px) {
	body {
		padding-bottom: 120px !important;
	}

	.mobile-product-actions {
		bottom: 62px;
	}

	.offer-countdown--sticky {
		bottom: 175px !important;
	}

	.floating-contact-buttons {
		bottom: 190px !important;
	}
}

.mobile-product-actions {
	position: fixed;
	bottom: 70px;
	left: 0;
	right: 0;
	background: #fff;
	padding: 10px 12px;
	display: flex;
	gap: 8px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 998;
	align-items: center;
}

@media (min-width: 993px) {
	.mobile-product-actions {
		display: none;
	}
}

.mobile-product-actions .qty-display {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 0 8px;
	background: #f8f9f9;
	border-radius: 6px;
	font-weight: 600;
	font-size: 12px;
	flex-shrink: 0;
	height: 40px;
}

.mobile-product-actions .qty-display button {
	width: 28px;
	height: 28px;
	border: none;
	background: #fff;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-product-actions .qty-display span {
	min-width: 20px;
	text-align: center;
}

.mobile-product-actions .btn {
	flex: 1;
	padding: 10px 8px;
	font-size: 13px;
	white-space: nowrap;
}

.mobile-product-actions .btn i {
	margin-left: 4px;
}

.mobile-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	width: 84%;
	max-width: 320px;
	background: #fff;
	box-shadow: -4px 0 20px rgba(0,0,0,0.12);
	z-index: 10000;
	transition: right 0.3s ease;
	overflow-y: auto;
}
.mobile-sidebar.open {
	right: 0;
}
.mobile-sidebar .sidebar-header {
	padding: 18px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mobile-sidebar .sidebar-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}
.mobile-sidebar .sidebar-header .close-sidebar {
	border: none;
	background: transparent;
	font-size: 18px;
	color: #0c4d72;
}
.mobile-sidebar .sidebar-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-sidebar .sidebar-menu li {
	border-bottom: 1px solid #f4f4f4;
}
.mobile-sidebar .sidebar-menu li a {
	display: block;
	padding: 15px 18px;
	color: #333;
	text-decoration: none;
}
.mobile-sidebar .sidebar-menu li a i {
	margin-left: 8px;
	color: #0c4d72;
}
.mobile-sidebar .sidebar-menu li.has-children {
	position: relative;
}
.mobile-sidebar .sidebar-menu .sidebar-submenu-toggle {
	position: absolute;
	inset-inline-end: 16px;
	inset-inline-start: auto;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: transparent;
	color: #707070;
	font-size: 16px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	z-index: 5;
}
.mobile-sidebar .sidebar-menu li.has-children > a {
	padding-inline-end: 54px;
	padding-inline-start: 18px;
	position: relative;
	z-index: 1;
}
.mobile-sidebar .sidebar-menu .sidebar-submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 16px;
	display: none !important;
}
.mobile-sidebar .sidebar-menu li.open > .sidebar-submenu {
	display: block !important;
}
.mobile-sidebar .sidebar-menu .sidebar-submenu li a {
	padding: 12px 18px;
	font-weight: 500;
	color: #555;
}
.mobile-sidebar .sidebar-menu .sidebar-submenu li a:hover {
	color: #0c4d72;
}
.mobile-sidebar .sidebar-menu .sidebar-submenu-toggle i {
	transition: transform 0.2s ease;
}
.mobile-sidebar .sidebar-menu .sidebar-submenu-toggle i.rotated {
	transform: rotate(90deg);
}
.mobile-sidebar .sidebar-menu li.sidebar-divider {
	padding: 10px 18px;
	font-size: 12px;
	color: #999;
}
.mobile-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.open {
	opacity: 1;
	visibility: visible;
}
body.mobile-sidebar-open {
	overflow: hidden;
}

@media (min-width: 992px) {
	.mobile-bottom-nav,
	.mobile-sidebar,
	.mobile-sidebar-overlay {
		display: none;
	}
}

@media (max-width: 991px) {
	#menu,
	.menu-wrapper {
		display: none;
	}
	.header-main .header-top {
		flex-direction: column;
		align-items: stretch;
	}
	.header-main .cart-actions-wrap,
	.header-main .search-wrap {
		width: 100%;
	}
}
.topbar-right .top-links a {
	color: #fff;
	font-weight: 600;
}
.topbar-right .top-links a:hover {
	color: #f3f3f3;
}
.header-main {
	background: #fff;
	padding: 18px 0;
	border-bottom: 1px solid rgba(12,77,114,.14);
	box-shadow: 0 10px 35px rgba(12,77,114,.08);
}
.header-main .logo-wrap {
	padding-top: 6px;
}
.header-main .logo-wrap img {
	max-height: 58px;
	width: auto;
}
.header-main .search-wrap {
	padding-top: 8px;
}
.header-main .cart-wrap {
	padding-top: 8px;
	text-align: right;
}
.cart-actions-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	justify-content: flex-end;
}
.action-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0c4d72;
	font-weight: 700;
	text-decoration: none;
}
.action-item i {
	font-size: 16px;
}
#search {
	margin-bottom: 10px;
}
#search .form-control {
	border-radius: 50px;
	border: 1px solid rgba(12,77,114,.18);
	height: 44px;
	padding: 0 20px;
}
#search .input-group-btn .btn {
	border-radius: 50px;
	padding: 10px 20px;
	background: #0c4d72;
	color: #fff;
	border: 1px solid #0c4d72;
}
#search .input-group-btn .btn:hover,
#search .input-group-btn .btn:focus {
	background: #095271;
	border-color: #095271;
}
#menu .navbar-toggle {
	border-color: rgba(255,255,255,0.35);
}
#menu .navbar-toggle .icon-bar {
	background-color: #fff;
}
#category {
	color: #fff;
	font-weight: 700;
}
.topbar-links {
	display: flex;
	gap: 18px;
	align-items: center;
}
.topbar-links a {
	color: #fff;
	font-weight: 600;
}
.topbar-switchers {
	display: flex;
	gap: 12px;
	align-items: center;
}
.hero-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 22px;
}
.btn-secondary.hero-secondary {
	background: rgba(255,255,255,.16);
	color: #fff;
	border: 1px solid rgba(255,255,255,.28);
}
.btn-secondary.hero-secondary:hover {
	background: rgba(255,255,255,.25);
}
.home-page {
	margin-top: 20px;
}
.home-hero {
	background: linear-gradient(135deg, #0c4d72 0%, #17a2b8 100%);
	color: #fff;
	padding: 80px 0 60px;
}
.home-hero .container {
	position: relative;
}
.hero-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}
.hero-copy {
	max-width: 720px;
	text-align: center;
}
.hero-label {
	display: inline-block;
	padding: 10px 18px;
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50px;
	font-size: 14px;
	margin-bottom: 20px;
	color: #fff;
}
.home-hero h1 {
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.1;
}
.home-hero p {
	font-size: 18px;
	color: rgba(255,255,255,.92);
	max-width: 640px;
	margin: 0 auto 30px;
}
.hero-cta {
	display: inline-block;
	padding: 14px 34px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 60px;
	background: #fff;
	color: #0c4d72;
	border: none;
}
.hero-cta:hover {
	background: rgba(255,255,255,.95);
}
.home-banner {
	padding-bottom: 24px;
}
.home-categories {
	padding: 24px 0 56px;
}
.home-offers,
.home-featured {
	padding: 40px 0 80px;
}
.categories-grid,
.home-offers .promo-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.category-card,
.home-offers .promo-card {
	flex: 1 1 calc(25% - 20px);
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-radius: 18px;

/* Cart page improvements: unified background and card-like cart/table (RTL) */
#checkout-cart {
	background: #f6f8fb;
	padding: 30px 0 60px;
}
#checkout-cart .container {
	max-width: 1200px;
}
#checkout-cart #content {
	display: flex;
	gap: 30px;
}
#checkout-cart #content > form {
	flex: 1 1 auto;
	min-width: 0;
}
#checkout-cart #content > form .table-responsive {
	flex: 1 1 auto;
}
#checkout-cart .col-sm-4.col-sm-offset-8 {
	flex: 0 0 320px;
	max-width: 320px;
}
#checkout-cart .table-responsive {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	padding: 20px;
}
#checkout-cart .table.table-bordered {
	border: none;
}
#checkout-cart .table.table-bordered thead td {
	border-bottom: 1px solid #eee;
	background: transparent;
	font-weight: 700;
}
#checkout-cart .table.table-bordered td {
	vertical-align: middle;
	border: none;
	padding: 18px 12px;
}
#checkout-cart .input-group {
	max-width: 180px;
}
#checkout-cart .panel-group {
	margin-top: 20px;
}
#checkout-cart .col-sm-4.col-sm-offset-8 {
	padding-right: 0;
}
#checkout-cart .table.table-bordered + .panel-group {
	margin-top: 18px;
}

/* Order summary box style */
#checkout-cart .col-sm-4.col-sm-offset-8 .table {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	padding: 18px;
}

@media (max-width: 991px) {
	#checkout-cart #content {
		display: block;
	}
	#checkout-cart .col-sm-4.col-sm-offset-8 {
		margin-top: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Final overrides to match sample cart.html (RTL) */
:root {
	--primary-color: #0d47a1;
	--text-color: #333333;
	--bg-color: #f5f5f5;
}
body {
	background: var(--bg-color) !important;
}
.main-header {
	background: linear-gradient(120deg, #0c1445 0%, #0e2a6e 28%, #1565c0 52%, #1e88e5 72%, #42a5f5 88%, #64b5f6 100%) !important;
	box-shadow: none !important;
	border-bottom: 1px solid rgba(255,255,255,0.18) !important;
}

#checkout-cart {
	background: var(--bg-color) !important;
}


/* page-header - removed old duplicate, using new rules below */

/* Buttons & inputs for cart page (RTL) */
.btn-primary {
	background: var(--primary-color) !important;
	border-color: var(--primary-color) !important;
	color: #fff !important;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 700;
}
.btn-default {
	background: transparent;
	border: 2px solid rgba(0,0,0,0.06);
	color: var(--text-color);
	padding: 10px 16px;
	border-radius: 10px;
}
.input-group .form-control {
	height: 42px;
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid #e9ecef;
}
.table.table-bordered td .btn {
	padding: 6px 10px;
}
	overflow: hidden;
	position: relative;
	min-height: 220px;
	transition: transform .25s ease, box-shadow .25s ease;
}
.category-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background-size: cover;
	background-position: center;
}
.category-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}
.category-card-info {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 20px;
	z-index: 2;
	text-align: right;
}
.category-card span {
	display: block;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 8px;
}
.category-card strong {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
}
.category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}
/* Adjust category card spacing and layout to avoid sticking to below products */
.category-card {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	/*min-height: 220px;*/
	margin-bottom: 20px;
}
.home-offers .promo-card {
	flex: 1 1 calc(33.333% - 20px);
	padding: 30px 24px;
	text-align: right;
}
.home-offers .promo-card strong {
	display: block;
	font-size: 24px;
	margin-bottom: 12px;
}
.home-offers .promo-card p {
	font-size: 15px;
	color: #505050;
	font-weight: 600;
}
.home-banner {
	padding-top: 0;
}
.section-products > * {
	margin-top: 30px;
}
.row.products-grid.home-featured,
.home-featured.products-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -14px;
}
.row.products-grid.home-featured,
.home-featured.products-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -14px 0 -14px;
}
.row.products-grid.home-featured > .product-card,
.home-featured.products-grid > .product-card {
	padding: 0 14px 28px;
	width: 16.6666667%;
	flex: 0 0 16.6667%;
	max-width: 16.6667%;
	box-sizing: border-box;
}
@media (max-width: 992px) {
	.row.products-grid.home-featured > .product-card,
	.home-featured.products-grid > .product-card {
		width: 33.3333333%;
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
}
@media (max-width: 768px) {
	.row.products-grid.home-featured > .product-card,
	.home-featured.products-grid > .product-card {
		width: 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media (max-width: 576px) {
	.row.products-grid.home-featured > .product-card,
	.home-featured.products-grid > .product-card {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
.home-featured .featured-card {
	min-height: 100%;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 45px rgba(11, 32, 70, 0.08);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
}
.home-featured .featured-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 60px rgba(11, 32, 70, 0.14);
}
.home-featured .featured-card .product-image {
	min-height: 260px;
	background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 18px 16px 0;
}
.home-featured .featured-card .product-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform .3s ease;
}
.home-featured .featured-card:hover .product-image img {
	transform: scale(1.02);
}
.home-featured .featured-card .product-offer-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	z-index: 5;
}
.home-featured .featured-card .product-offer-badge .offer-discount {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	color: #fff;
	padding: 6px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.28);
}
.home-featured .featured-card .quick-view-btn {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%) translateY(14px);
	opacity: 0;
	visibility: hidden;
	z-index: 5;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(8px);
	border: none;
	border-radius: 25px;
	padding: 8px 18px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #111;
	white-space: nowrap;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: all 0.25s ease;
}
.home-featured .featured-card .quick-view-btn i {
	font-size: 14px;
	color: #0051ba;
}
.home-featured .featured-card:hover .quick-view-btn,
.home-featured .featured-card .product-image:hover .quick-view-btn {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.home-featured .featured-card .quick-view-btn:hover {
	background: #0051ba;
	color: #fff;
}
.home-featured .featured-card .quick-view-btn:hover i {
	color: #fff;
}
.home-featured .featured-card .product-info h3,
.home-featured .featured-card .product-info h3 a {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #0f1e2e;
	text-decoration: none;
}
.home-featured .featured-card .product-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin-top: 8px;
}
.home-featured .featured-card .product-price .current-price {
	font-size: 18px;
	font-weight: 800;
	color: #1b9a4b;
}
.home-featured .featured-card .product-price .old-price {
	font-size: 13px;
	color: #8a8a8a;
	text-decoration: line-through;
}
.home-featured .featured-card .moq-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 8px;
	margin-top: 10px;
}
.home-featured .featured-card .moq-badge i {
	font-size: 11px;
}
.home-featured .featured-card .product-add-to-cart {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid rgba(15, 30, 46, 0.08);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.home-featured .featured-card .add-to-cart-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: #0051ba;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
}
.home-featured .featured-card .add-to-cart-btn:hover {
	background: #003a86;
}
.home-featured .featured-card .quantity-selector {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	padding: 8px;
}
.home-featured .featured-card .qty-btn {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: transparent;
	color: #0f1e2e;
	border: none;
}
.home-featured .featured-card .qty-btn:hover {
	background: rgba(0, 81, 186, 0.08);
}
.home-featured .featured-card .qty-input {
	width: 60px;
	height: 42px;
	border: none;
	background: #f9fafb;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #0f1e2e;
}
.home-featured .featured-card .qty-input:focus {
	outline: none;
}
.home-featured .featured-card .product-info {
	padding: 20px 18px 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.home-featured .featured-card h5.product-title {
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
	font-weight: 700;
}
.home-featured .featured-card h5.product-title a {
	color: #0f1e2e;
	text-decoration: none;
}
.home-featured .featured-card .product-pricing {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
}
.home-featured .featured-card .price-current {
	font-size: 18px;
	font-weight: 800;
	color: #1b9a4b;
}
.home-featured .featured-card .price-original {
	font-size: 13px;
	color: #8a8a8a;
	text-decoration: line-through;
}
.home-featured .featured-card .moq-badge {
	margin: 0;
	padding: 10px 14px;
	background: #eef9f0;
	border: 1px solid #dff2e8;
	color: #2f7a45;
	border-radius: 14px;
	font-size: 13px;
}
.home-featured .featured-card .moq-badge i {
	color: #2f7a45;
}
.home-featured .featured-card .product-footer {
	padding: 18px;
	display: grid;
	grid-gap: 12px;
}
.home-featured .featured-card .btn-add-cart {
	background: #0051ba;
	border-color: #0051ba;
	color: #fff;
}
.home-featured .featured-card .btn-add-cart:hover {
	background: #003a86;
	border-color: #003a86;
}
.home-featured .featured-card .quantity-selector {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f4fbf5;
	border: 1px solid #e3ece2;
	border-radius: 14px;
	padding: 8px;
}
.home-featured .featured-card .qty-btn {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: transparent;
	color: #1b9a4b;
	border: none;
}
.home-featured .featured-card .qty-btn:hover {
	background: rgba(35, 161, 92, 0.1);
}
.home-featured .featured-card .qty-input {
	width: 62px;
	height: 44px;
	border: none;
	background: transparent;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #0f1e2e;
}
.home-featured .featured-card .qty-input:focus {
	outline: none;
}
@media (max-width: 991px) {
	.category-card,
	.home-offers .promo-card {
		flex: 1 1 calc(50% - 20px);
	}
	.category-card-slider {
		flex: 0 0 180px;
		min-width: 180px;
	}
}
@media (max-width: 767px) {
	.category-card,
	.home-offers .promo-card {
		flex: 1 1 100%;
	}
	.home-categories .categories-slider-wrapper {
		gap: 8px;
	}
	.category-card-slider {
		flex: 0 0 152px;
		min-width: 152px;
		padding: 14px;
		min-height: 250px;
	}
	.category-card-icon {
		width: 100px;
		height: 100px;
	}
	.category-card-slider h3 {
		font-size: 14px;
	}
}
.home-categories .categories-carousel {
	display: block;
	position: relative;
	padding: 0 0;
	overflow: visible;
}
.home-categories .categories-carousel .swiper-container {
	overflow: hidden;
	padding: 12px 0 24px;
}
.home-categories .categories-carousel .swiper-wrapper {
	display: flex;
	align-items: flex-start;
}
.home-categories .categories-carousel .swiper-slide {
	width: auto;
	flex: 0 0 auto;
}
.home-categories .categories-carousel .category-card-slider {
	flex: 0 0 190px;
	width: 190px;
	min-width: 190px;
	max-width: 190px;
	min-height: 210px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-radius: 24px;
	padding: 22px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 18px;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.home-categories .categories-carousel .swiper-slide {
		width: calc((100% - 28px) / 2.5) !important;
		flex: 0 0 calc((100% - 28px) / 2.5) !important;
	}
	.home-categories .categories-carousel .category-card-slider {
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		padding: 15px 10px 12px !important;
		min-height: 154px !important;
		margin: 0 14px 14px 0 !important;
		border-radius: 16px !important;
		box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
	}
	.home-categories .categories-carousel .category-card-icon {
		width: 75px !important;
		height: 75px !important;
		padding: 14px !important;
		background: rgb(245, 243, 255) !important;
	}
	.home-categories .categories-carousel .category-card-icon img {
		width: 47px !important;
		height: 47px !important;
	}
}
.home-categories .categories-carousel .swiper-pagination.categoriesCarousel {
	position: absolute;
	bottom: -8px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 3;
	display: none !important;
}
.home-categories .categories-carousel .swiper-pagination-bullet {
	display: none !important;
}
.home-categories .categories-carousel .swiper-pager {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 50;
}
.home-categories .categories-carousel .swiper-button-next,
.home-categories .categories-carousel .swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	pointer-events: auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 10px 25px rgba(0,0,0,0.12);
	color: #0c4d72;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
	font-size: 18px;
	font-weight: 700;
}
.home-categories .categories-carousel .swiper-button-next::before,
.home-categories .categories-carousel .swiper-button-prev::before {
	content: none !important;
	display: none !important;
}
.home-categories .categories-carousel .swiper-button-next::after,
.home-categories .categories-carousel .swiper-button-prev::after {
	font-family: Arial, sans-serif;
	font-size: 20px;
	line-height: 1;
	color: #0c4d72;
	position: relative;
	z-index: 2;
}
.home-categories .categories-carousel .swiper-button-next::after {
	content: "›";
}
.home-categories .categories-carousel .swiper-button-prev::after {
	content: "‹";
}
.home-categories .categories-carousel .swiper-button-next,
.home-categories .categories-carousel .swiper-button-prev {
	opacity: 1 !important;
	background-image: none !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 0 !important;
}
body.rtl .home-categories .categories-carousel .swiper-button-next::after {
	content: "‹";
}

body.rtl .home-categories .categories-carousel .swiper-button-prev::after {
	content: "›";
}
.home-categories .categories-carousel .swiper-button-next:hover,
.home-categories .categories-carousel .swiper-button-prev:hover {
	background: #f1f7fb;
}
.home-categories .categories-carousel .swiper-button-next:focus,
.home-categories .categories-carousel .swiper-button-prev:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(12,77,114,0.14);
}
.home-categories .categories-carousel .swiper-button-next {
	right: 8px;
	left: auto;
}
.home-categories .categories-carousel .swiper-button-prev {
	left: 8px;
	right: auto;
}

/* Slideshow main slider controls */
.slideshow .swiper-button-next,
.slideshow .swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255,255,255,0.98);
	box-shadow: 0 14px 36px rgba(0,0,0,0.18);
	border: none;
	color: #0c4d72;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
	z-index: 20;
	background-image: none !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 0 !important;
}

.slideshow .swiper-button-next {
	right: 20px;
	left: auto;
}

.slideshow .swiper-button-prev {
	left: 20px;
	right: auto;
}

body.rtl .slideshow .swiper-button-next {
	right: 20px;
	left: auto;
}

body.rtl .slideshow .swiper-button-prev {
	left: 20px;
	right: auto;
}

body.rtl .slideshow .swiper-button-next::after {
	content: "‹";
}

body.rtl .slideshow .swiper-button-prev::after {
	content: "›";
}

.slideshow .swiper-button-next::before,
.slideshow .swiper-button-prev::before {
	content: none !important;
	display: none !important;
}

.slideshow .swiper-button-next::after,
.slideshow .swiper-button-prev::after {
	font-family: Arial, sans-serif;
	font-size: 20px;
	line-height: 1;
	color: #0c4d72;
}

.slideshow .swiper-button-next::after {
	content: "›";
}

.slideshow .swiper-button-prev::after {
	content: "‹";
}

.slideshow .swiper-button-next:hover,
.slideshow .swiper-button-prev:hover {
	background: #f4f8fc;
}

.slideshow .swiper-pagination {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 20;
}

.slideshow .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.75);
	opacity: 1;
	margin: 0 6px;
	transition: all .2s ease;
}

.slideshow .swiper-pagination-bullet-active {
	width: 14px;
	height: 14px;
	background: #0c4d72;
}

.category-card-slider h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #0c4d72;
	line-height: 1.3;
	word-wrap: break-word;
	min-height: 40px;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.category-card-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(224,236,255,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 16px;
	box-sizing: border-box;
	transition: transform 0.3s ease, background 0.3s ease;
}
.category-card-icon img {
	width: 250px;
	height: 250px;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.home-categories .categories-carousel .category-card-slider:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(12,77,114,0.12);
}
.home-categories .categories-carousel .category-card-slider:hover .category-card-icon {
	background: rgba(12,77,114,0.12);
	transform: scale(1.05);
}
.home-categories .categories-carousel .category-card-slider:hover .category-card-icon img {
	transform: scale(1.08);
}
#top .container {
	position: relative;
}
#top .top-info {
	font-size: 13px;
	color: #f5f5f5;
}
#top .top-info span {
	display: inline-block;
	margin-right: 20px;
}
#top-links .list-inline > li > a {
	color: #bbb;
	padding: 5px 8px;
}
#top-links .list-inline > li > a:hover {
	color: #fff;
}

/* Final ledatak menu/header overrides */
.menu-wrapper {
	background: linear-gradient(180deg, #2b84d1 0%, #1a73c2 100%) !important;
	padding: 12px 0 14px !important;
	border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}
.desktop-nav {
	padding: 0 !important;
	display: block !important;
	position: relative !important;
	box-shadow: none !important;
	background: transparent !important;
	border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}
.desktop-nav .container {
	max-width: 1240px;
	position: relative;
	padding: 10px 0 18px 0;
}
.desktop-nav .container::before {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	top: 6px;
	bottom: 6px;
	background: rgb(252,251,244);
	border-radius: 34px;
	box-shadow: inset 0 -12px 40px rgba(0,0,0,0.03), 0 4px 18px rgba(0,0,0,0.04);
	z-index: 0;
}
.desktop-nav-list {
	position: relative;
	z-index: 1;
	display: grid !important;
	grid-auto-flow: row;
	grid-template-columns: repeat(7, minmax(0, auto)) !important;
	justify-content: center !important;
	gap: 12px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 18px 24px !important;
}
.desktop-nav-list .nav-item {
	position: relative;
}
.desktop-nav-list .nav-item a,
.desktop-nav-list .nav-item .category-name {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	color: #fff !important;
	font-weight: 700 !important;
	padding: 12px 26px !important;
	text-decoration: none !important;
	background: linear-gradient(180deg, #61b3ff 0%, #1f83de 100%) !important;
	border-radius: 32px !important;
	min-height: 48px !important;
	border: 1px solid rgba(255,255,255,0.22) !important;
	box-shadow: 0 14px 34px rgba(1,44,84,0.20) !important;
	transition: transform .18s ease, background .18s ease, color .18s ease !important;
}
@media (min-width: 1200px) {
	.desktop-nav-list {
		display: grid !important;
		grid-template-columns: repeat(7, minmax(0, auto)) !important;
		justify-content: center !important;
		gap: 12px !important;
	}
}
.desktop-nav-list .nav-item a:hover,
.desktop-nav-list .nav-item a:focus,
.desktop-nav-list .nav-item .category-name:hover,
.desktop-nav-list .nav-item .category-name:focus {
	transform: translateY(-2px) !important;
}
.desktop-nav-list .nav-item a.active,
.desktop-nav-list .nav-item a.active:hover {
	background: linear-gradient(180deg, #8cc9ff 0%, #4a97ec 100%) !important;
	color: #fff !important;
	box-shadow: 0 18px 40px rgba(47,143,228,0.18) !important;
}
.desktop-nav-list .nav-item.has-mega > .category-name {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
}
.category-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255,255,255,0.22);
	color: #fff;
}
.mega-menu {
	position: absolute !important;
	top: calc(100% + 0px) !important;
	right: 0 !important;
	left: auto !important;
	min-width: 100%;
	max-width: 85vw !important;
	display: none !important;
	background: #ffffff !important;
	padding: 20px !important;
	border-radius: 24px !important;
	box-shadow: 0 28px 60px rgba(0,0,0,0.18) !important;
	z-index: 999 !important;
	backdrop-filter: blur(10px) !important;
}
.nav-item.has-mega:hover > .mega-menu,
.nav-item.has-mega.active > .mega-menu {
	display: block !important;
	animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.mega-inner {
	margin: 0 !important;
	padding: 0 !important;
}
.mega-list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 18px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.mega-card {
	width: auto !important;
	flex: 0 0 180px !important;
	list-style: none !important;
}
.mega-card .card-link {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s ease !important;
}
.mega-card .card-link:hover {
	transform: translateY(-4px) !important;
}
.mega-card .card-image-wrapper {
	width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: linear-gradient(135deg, #f5f9ff 0%, #eef7ff 100%) !important;
	border-radius: 18px !important;
	margin-bottom: 12px !important;
	overflow: hidden !important;
	border: 2px solid #e6eef7 !important;
	box-shadow: 0 4px 15px rgba(12,77,114,0.06) !important;
	transition: all 0.25s ease !important;
}
.mega-card .card-link:hover .card-image-wrapper {
	border-color: #d5e6f5 !important;
	box-shadow: 0 8px 28px rgba(12,77,114,0.12) !important;
}
.mega-card .card-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}
.mega-card .card-image-placeholder {
	font-size: 40px !important;
	color: #0c4d72 !important;
}

/* Final overriding header and category menu background rules */
.main-header {
	background: linear-gradient(110deg, #0f2c64 0%, #144e8f 35%, #1a73c2 65%, #42a5f5 100%) !important;
	padding: 24px 0 18px !important;
	box-shadow: 0 20px 60px rgba(0,0,0,0.20) !important;
	position: relative !important;
	z-index: 99 !important;
}
.main-header::before {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 58%) !important;
	pointer-events: none !important;
}
.menu-wrapper {
	background: linear-gradient(90deg, #0f3d7e 0%, #1d6ebd 45%, #3697ec 100%) !important;
	box-shadow: inset 0 -8px 20px rgba(0,0,0,0.18) !important;
	border-bottom: 1px solid rgba(255,255,255,0.18) !important;
	padding: 22px 0 20px !important;
	position: relative !important;
}
.menu-wrapper::before {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 35%) !important;
	pointer-events: none !important;
	opacity: 0.4 !important;
	border-radius: 22px !important;
}
.menu-wrapper .desktop-nav-list {
	position: relative !important;
	background: rgba(255,255,255,0.08) !important;
	border-radius: 70px !important;
	padding: 18px 28px !important;
	justify-content: center !important;
	gap: 16px !important;
	/* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 26px 56px rgba(0, 0, 0, 0.20) !important; */ 
	max-width: calc(100% - 40px) !important;
	margin: 0 auto !important;
}

.header-top {
	position: relative !important;
	padding: 22px 0 !important;
}
.header-top .logo {
	max-height: 72px !important;
	display: flex !important;
	align-items: center !important;
}
.logo-text {
	font-size: 32px !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: #fff !important;
}
.header-top .header-search {
	position: absolute !important;
	left: 50% !important;
	top: 22px !important;
	transform: translateX(-50%) !important;
	width: 560px !important;
	max-width: 70% !important;
}
.header-top .header-actions a {
	width: 44px !important;
	height: 44px !important;
}

@media (max-width: 991px) {
	.header-top {
		padding: 16px 0 !important;
	}
	.header-top .header-search {
		position: static !important;
		transform: none !important;
		width: 100% !important;
		margin: 12px 0 !important;
	}
	.menu-wrapper {
		padding: 14px 0 16px !important;
	}
	.menu-wrapper .desktop-nav-list {
		padding: 12px 16px !important;
		gap: 12px !important;
	}
	.header-actions a {
		width: 42px !important;
		height: 42px !important;
	}
}

@media (min-width: 1200px) {
    .menu-wrapper .desktop-nav-list {
        display: grid !important;
        grid-template-columns: repeat(7, minmax(0, auto)) !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
.menu-wrapper .desktop-nav-list .nav-item a,
.menu-wrapper .desktop-nav-list .nav-item .category-name {
	padding: 12px 26px !important;
	border-radius: 32px !important;
	font-size: 14px !important;
	min-height: 48px !important;
	background: linear-gradient(180deg, #61b3ff 0%, #1f83de 100%) !important;
	border: 1px solid rgba(255,255,255,0.28) !important;
	box-shadow: 0 18px 40px rgba(1,44,84,0.28) !important;
}
.menu-wrapper .desktop-nav-list .nav-item a:hover,
.menu-wrapper .desktop-nav-list .nav-item .category-name:hover {
	background: linear-gradient(180deg, #9fd6ff 0%, #5aa6f0 100%) !important;
}
.menu-wrapper .nav-item.has-mega .category-name {
	/* background: linear-gradient(180deg, #61b3ff 0%, #1f83de 100%) !important; */
	color: #fff !important;
}
.menu-wrapper .nav-item.has-mega .category-name:hover {
	/* background: linear-gradient(180deg, #9fd6ff 0%, #5aa6f0 100%) !important;*/
}
.menu-wrapper .nav-item.has-mega.active .category-name {
	/* box-shadow: 0 18px 40px rgba(1, 44, 84, 0.32) !important; */ 
}
.menu-wrapper .category-arrow {
	background: rgba(255,255,255,0.24) !important;
	color: #fff !important;
}
.header-banner {
	background: linear-gradient(90deg, #767b7e 0%, #7b8387 45%, #898f94 100%) !important;
	padding: 10px 0 14px !important;
}
.header-banner .banner-inner {
	height: 66px !important;
	border-radius: 18px !important;
	box-shadow: inset 0 -10px 30px rgba(0,0,0,0.18) !important;
}
.page-header {
	background: #fff !important;
	padding: 28px 0 22px !important;
	border-bottom: 1px solid #e8edf3 !important;
	margin-bottom: 28px !important;
	box-shadow: none !important;
}
.page-header .container {
	min-height: auto !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	align-items: flex-start !important;
	position: relative !important;
}
.page-header h1 {
	margin: 0 !important;
	margin-bottom: 12px !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	color: #111 !important;
	text-align: left !important;
	position: relative !important;
	z-index: 1 !important;
	padding-right: 0 !important;
}
.page-header .breadcrumb {
	position: static !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 13px !important;
	list-style: none !important;
	display: flex !important;
	gap: 8px !important;
	align-items: center !important;
	color: #6d7280 !important;
	flex-direction: row !important;
	justify-content: flex-start !important;
	align-self: flex-start !important;
}
.page-header .breadcrumb li + li:before {
	content: '/' !important;
	color: #c0c4cc !important;
	margin: 0 6px !important;
}
.page-header .breadcrumb li a {
	color: #2563eb !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	padding: 4px 6px !important;
	border-radius: 8px !important;
}
.page-header .breadcrumb li:last-child {
	color: #111 !important;
	font-weight: 700 !important;
}
.footer-site {
	background: linear-gradient(180deg, #071c3d 0%, #0f356f 45%, #194f8d 100%) !important;
	color: rgba(255,255,255,0.92) !important;
	border-top: 1px solid rgba(255,255,255,0.12) !important;
	padding: 38px 0 22px !important;
}
.footer-site .footer-top {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 32px !important;
	padding-bottom: 22px !important;
	border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}
.category-empty-state,
.empty-state {
	max-width: 700px;
	margin: 0 auto;
	padding: 55px 35px;
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 24px 60px rgba(4, 47, 110, 0.08);
	text-align: center;
}
.category-empty-state .empty-state-icon,
.empty-state-icon {
	width: 96px;
	height: 96px;
	margin: 0 auto 24px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(49, 130, 206, 0.12);
}
.category-empty-state .empty-state-icon i,
.empty-state-icon i {
	color: #1d4ed8;
	font-size: 40px;
}
.category-empty-state h2,
.empty-state h2 {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 800;
	color: #111827;
}
.category-empty-state p,
.empty-state p {
	margin-bottom: 28px;
	font-size: 16px;
	color: #6b7280;
	line-height: 1.85;
}
.category-empty-state .btn-primary,
.empty-state .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	background: #1d4ed8;
	color: #ffffff;
	border: 1px solid transparent;
	transition: transform 0.2s ease, background-color 0.2s ease;
}
.category-empty-state .btn-primary:hover,
.empty-state .btn-primary:hover {
	background: #2563eb;
	transform: translateY(-1px);
}
@media (max-width: 991px) {
	.category-empty-state,
	.empty-state {
		padding: 42px 22px;
	}
}
@media (max-width: 767px) {
	.cart-page {
		padding: 22px 0 50px;
	}
	.category-empty-state,
	.empty-state {
		border-radius: 22px;
		padding: 30px 20px;
	}
	.category-empty-state h2,
	.empty-state h2 {
		font-size: 26px;
	}
}

/* Compact category page layout matching sample category.html */
.product-category-page, #product-category.product-category-page.container-fluid {
	max-width: 1600px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 15px !important;
	padding-right: 15px !important;
	box-sizing: border-box;
}

#product-category.product-category-page .breadcrumb {
	margin-bottom: 18px;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 12px 16px;
	border: 1px solid #e8ecf1;
}

#product-category.product-category-page .breadcrumb li {
	font-size: 13px;
	color: #666;
}

#product-category.product-category-page .breadcrumb li a {
	color: #0c4d72;
	text-decoration: none;
}

#product-category.product-category-page .breadcrumb li a:hover {
	text-decoration: underline;
}

#product-category.product-category-page .category-header {
	margin-bottom: 16px;
}

#product-category.product-category-page .category-count {
	font-size: 14px;
	color: #4b5563;
	padding: 10px 0;
}

#product-category.product-category-page .products-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

#product-category.product-category-page .products-grid.row {
	margin-left: 0;
	margin-right: 0;
}

#product-category.product-category-page .products-grid > .product-layout {
	width: auto !important;
	float: none !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
}

#product-category.product-category-page .products-grid > .product-layout.product-grid {
	width: auto !important;
}

#product-category.product-category-page .row > [class*="col-"] {
	padding-left: 8px !important;
	padding-right: 8px !important;
}

#product-category.product-category-page .product-card {
	margin: 0 !important;
	height: 100%;
}

#product-category.product-category-page .product-card .product-image {
	height: 240px;
}

#product-category.product-category-page .product-info {
	padding: 10px;
}

#product-category.product-category-page .product-footer {
	padding: 10px 12px;
	gap: 10px;
}

#product-category.product-category-page .product-card h5.product-title {
	font-size: 14px;
	line-height: 1.3;
}

#product-category.product-category-page .product-card .price-current {
	font-size: 15px;
}

#product-category.product-category-page .product-card .price-original {
	font-size: 12px;
}

#product-category.product-category-page .product-card .stars i {
	font-size: 11px;
}

#product-category.product-category-page .product-card .min-qty {
	font-size: 12px;
}

#product-category.product-category-page .product-card .btn-add-cart {
	padding: 10px 12px;
	font-size: 13px;
}

#product-category.product-category-page .product-card .quantity-selector {
	padding: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

#product-category.product-category-page .product-card .qty-btn {
	width: 36px !important;
	height: 36px !important;
	font-size: 20px !important;
	min-width: 36px !important;
	border-radius: 8px !important;
	background: #f1f5f7 !important;
	border: 1px solid #e6edf2 !important;
	color: #0c4d72 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	cursor: pointer;
	transition: background 0.2s;
	position: relative;
	font-weight: bold;
	line-height: 1;
}

#product-category.product-category-page .product-card .qty-btn:hover {
	background: #e8f0f5 !important;
}

#product-category.product-category-page .product-card .qty-minus {
	font-weight: bold;
}

#product-category.product-category-page .product-card .qty-minus i {
	display: none;
}

#product-category.product-category-page .product-card .qty-minus::before {
	content: '−';
	color: #0c4d72;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
}

#product-category.product-category-page .product-card .qty-plus i {
	display: none;
}

#product-category.product-category-page .product-card .qty-plus::before {
	content: '+';
	color: #0c4d72;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
}

#product-category.product-category-page .product-card .qty-btn i {
	color: #0c4d72 !important;
	font-size: 14px !important;
	display: none !important;
}

#product-category.product-category-page .product-card .qty-btn .fa,
#product-category.product-category-page .product-card .qty-btn .fas {
	color: #0c4d72 !important;
	font-size: 14px !important;
	display: none;
}

#product-category.product-category-page .product-card .qty-input {
	width: 56px !important;
	height: 36px !important;
	text-align: center !important;
	border: 1px solid #e6edf2 !important;
	background: #ffffff !important;
	border-radius: 6px !important;
}

/* Ensure quantity selector buttons and icons are fully visible */
#product-category.product-category-page .quantity-selector .qty-btn,
#product-category.product-category-page .quantity-selector button {
	position: relative;
	z-index: 2;
}

#product-category.product-category-page .qty-btn i::before {
	display: inline !important;
	font-weight: 900 !important;
	font-family: "Font Awesome 6 Free" !important;
}


#product-category.product-category-page .category-card-list {
	gap: 14px;
}

#product-category.product-category-page .category-card {
	padding: 12px;
}

/* Strong overrides to neutralize bootstrap col-* widths and make cards flow in the grid */
#product-category.product-category-page .products-grid .product-layout.product-grid,
#product-category.product-category-page .products-grid .product-layout.col-lg-3,
#product-category.product-category-page .products-grid .product-layout.col-md-4,
#product-category.product-category-page .products-grid .product-layout.col-sm-6,
#product-category.product-category-page .products-grid .product-layout.col-xs-12 {
	width: auto !important;
	max-width: none !important;
	flex: 0 0 auto !important;
	box-sizing: border-box !important;
	padding-left: 8px !important;
	padding-right: 8px !important;
}

/* Remove negative row gutters coming from theme's flex layout */
#product-category.product-category-page .products-grid {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* If other rules set .product-category-page as wide, force it to center inside viewport */
.product-category-page, #product-category.product-category-page.container-fluid {
	max-width: 1200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

/* Ensure the sidebar is compact on desktop and does not push content away */
#product-category.product-category-page > .row > #column-left {
	flex: 0 0 260px !important;
	max-width: 260px !important;
	width: 260px !important;
}

#product-category.product-category-page > .row > #content {
	flex: 1 1 calc(100% - 260px) !important;
	max-width: calc(100% - 260px) !important;
}

/* Disable bootstrap ::before/::after clearfix only inside product-category to avoid layout gaps */
#product-category.product-category-page ::before,
#product-category.product-category-page ::after {
	display: none !important;
	content: none !important;
}

/* More targeted: remove row pseudo elements that cause the empty block before first product */
#product-category.product-category-page .row::before,
#product-category.product-category-page .row::after {
	display: none !important;
	content: none !important;
}

/* Remove any clearfix/clear rules coming from bootstrap that create empty gaps */
#product-category.product-category-page .product-layout,
#product-category.product-category-page .product-layout[class*="col-"] {
	clear: none !important;
}

/* Responsive grid column counts to match the sample: 5 on large desktops */
@media (min-width: 1200px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 767px) {
	#product-category.product-category-page .products-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* Sidebar/content width overrides for compact category layout */
#product-category.product-category-page > .row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

#product-category.product-category-page > .row > #column-left {
	flex: 0 0 260px !important;
	max-width: 260px !important;
	width: 260px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#product-category.product-category-page > .row > #content {
	flex: 1 1 auto !important;
	max-width: calc(100% - 260px) !important;
	width: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#product-category.product-category-page .product-layout.product-grid {
	width: auto !important;
	flex: 1 1 auto !important;
	max-width: 100% !important;
	padding: 0 8px !important;
}

.footer-site .footer-block {
	min-width: 210px !important;
}
.footer-site .footer-block h5 {
	color: #eff7ff !important;
	margin-bottom: 16px !important;
	font-size: 16px !important;
}

/* === Final exact header + menu overrides (match elbnastore.com) === */
.main-header {
	background: linear-gradient(120deg, #0c1445 0%, #0e2a6e 28%, #1565c0 52%, #1e88e5 72%, #42a5f5 88%, #64b5f6 100%) !important;
	box-shadow: 0 4px 24px rgba(6,25,75,0.35) !important;
	position: relative !important;
	z-index: 100 !important;
}
.header-top .header-search {
	position: absolute !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 560px !important;
	max-width: 70% !important;
}
.menu-wrapper {
	background: linear-gradient(180deg, #2b84d1 0%, #1a73c2 100%) !important;
	padding: 12px 0 14px !important;
	border-bottom: 1px solid rgba(255,255,255,0.14) !important;
	position: relative !important;
	z-index: 90 !important;
}
.menu-wrapper::before {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 35%) !important;
	pointer-events: none !important;
	opacity: 0.4 !important;
	border-radius: 22px !important;
}
.menu-wrapper .desktop-nav-list {
	position: relative !important;
	background: rgba(255,255,255,0.10) !important;
	border-radius: 70px !important;
	padding: 16px 22px !important;
	justify-content: center !important;
	gap: 14px !important;
	/* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 22px 46px rgba(0, 0, 0, 0.18) !important; */
	max-width: calc(100% - 40px) !important;
	margin: 0 auto !important;
}
.menu-wrapper .desktop-nav-list .nav-item a,
.menu-wrapper .desktop-nav-list .nav-item .category-name {
	padding: 12px 26px !important;
	border-radius: 32px !important;
	font-size: 14px !important;
	min-height: 48px !important;
	background: linear-gradient(180deg, #61b3ff 0%, #1f83de 100%) !important;
	border: 1px solid rgba(255,255,255,0.22) !important;
	box-shadow: 0 14px 34px rgba(1,44,84,0.20) !important;
	color: #fff !important;
}
.menu-wrapper .desktop-nav-list .nav-item a:hover,
.menu-wrapper .desktop-nav-list .nav-item .category-name:hover {
	background: linear-gradient(180deg, #8cc9ff 0%, #4a97ec 100%) !important;
}
@media (min-width: 1200px) {
	.menu-wrapper .desktop-nav-list {
		display: grid !important;
		grid-template-columns: repeat(7, minmax(0, auto)) !important;
		align-items: center !important;
		justify-content: center !important;
	}
}
/* end final header/menu overrides */
.footer-site .footer-block ul li a {
	color: rgba(255,255,255,0.78) !important;
	transition: color .2s ease !important;
}
.footer-site .footer-block ul li a:hover {
	color: #ffffff !important;
}
.footer-site p,
.footer-site a,
.footer-site .footer-social a {
	color: rgba(255,255,255,0.82) !important;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12) !important;
	padding-top: 20px !important;
	margin-top: 24px !important;
}
.footer-social a {
	display: inline-flex !important;
	width: 38px !important;
	height: 38px !important;
	border-radius: 50% !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(255,255,255,0.12) !important;
	color: #fff !important;
	margin-left: 8px !important;
	transition: transform .2s ease, background .2s ease !important;
}
.footer-social a:hover {
	background: rgba(255,255,255,0.20) !important;
	transform: translateY(-2px) !important;
}
@media (max-width: 991px) {
	.menu-wrapper { background: linear-gradient(90deg, #0d3968 0%, #1460a0 55%, #3588d0 100%) !important; }
	.menu-wrapper .desktop-nav-list {
		padding: 10px 14px !important;
		gap: 10px !important;
	}
	.menu-wrapper .desktop-nav-list .nav-item a,
	.menu-wrapper .desktop-nav-list .nav-item .category-name {
		padding: 10px 16px !important;
		font-size: 13px !important;
	}
	.header-banner .banner-inner {
		height: auto !important;
		min-height: 84px !important;
		overflow: hidden;
	}
	.header-banner .banner-inner img {
		width: 100% !important;
		height: auto !important;
		object-fit: cover;
		display: block;
	}
	.page-header {
		padding: 18px 0 14px !important;
		margin-bottom: 18px !important;
	}
	.page-header .container {
		min-height: auto !important;
		justify-content: flex-end !important;
	}
	.page-header .breadcrumb {
		position: static !important;
		transform: none !important;
		justify-content: flex-end !important;
		margin-top: 10px !important;
	}
}
.mega-card .card-title {
	display: block !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #0c4d72 !important;
	line-height: 1.3 !important;
	word-wrap: break-word !important;
	overflow-wrap: break-word !important;
}

/* Cart page final polish */
.cart-right-panel {
	background: rgba(255,255,255,0.98) !important;
	border-radius: 24px !important;
	box-shadow: 0 24px 60px rgba(15,42,86,0.12) !important;
	padding: 26px !important;
}
.cart-right-panel h3 {
	font-size: 20px !important;
	font-weight: 800 !important;
	margin-bottom: 22px !important;
	color: #0d2f6b !important;
}
.cart-item-row {
	display: grid !important;
	grid-template-columns: 120px minmax(0,1fr) 160px !important;
	gap: 20px !important;
	align-items: center !important;
	padding: 22px !important;
	border-radius: 20px !important;
	border: 1px solid rgba(15,43,100,0.08) !important;
	background: #fff !important;
	margin-bottom: 20px !important;
}
.cart-item-row:last-child {
	margin-bottom: 0 !important;
}
.cart-item-image {
	width: 100% !important;
	min-width: 120px !important;
	height: 120px !important;
	background: #f3f8ff !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.cart-item-image img {
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
}
.cart-item-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}
.cart-item-name {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #0b3170 !important;
	text-decoration: none !important;
}
.cart-item-price {
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #0f4ea4 !important;
}
.cart-item-actions {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	flex-wrap: wrap !important;
}
.quantity-input {
	border: 1px solid rgba(15,43,100,0.15) !important;
	border-radius: 16px !important;
	padding: 6px !important;
	background: #f8fbff !important;
}
.quantity-input button {
	width: 36px !important;
	height: 36px !important;
	border-radius: 14px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #0d3f82 !important;
	background: #fff !important;
	border: 1px solid rgba(15,43,100,0.12) !important;
}
.quantity-input input {
	width: 56px !important;
	border: none !important;
	background: transparent !important;
	text-align: center !important;
}
.remove-item {
	color: #d33737 !important;
}
.cart-item-total {
	font-size: 16px !important;
	font-weight: 800 !important;
	color: #0e2d63 !important;
	text-align: center !important;
	min-width: 160px !important;
}
.footer-site {
	background: linear-gradient(180deg, #03102d 0%, #05284f 45%, #0e4b7f 100%) !important;
	color: rgba(255,255,255,0.92) !important;
	border-top: 1px solid rgba(255,255,255,0.08) !important;
	padding: 50px 0 28px !important;
}
.footer-site .footer-top {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 32px !important;
	padding-bottom: 30px !important;
	border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.footer-site .footer-block {
	min-width: 220px !important;
	flex: 1 1 210px !important;
}
.footer-site .footer-block h5 {
	font-size: 17px !important;
	font-weight: 800 !important;
	margin-bottom: 18px !important;
	color: #f8fbff !important;
	text-transform: uppercase !important;
	letter-spacing: .02em !important;
}
.footer-site .footer-block ul {
	padding-left: 0 !important;
	margin: 0 !important;
}
.footer-site .footer-block ul li {
	margin-bottom: 10px !important;
}
.footer-site .footer-block ul li a {
	color: rgba(255,255,255,0.75) !important;
	transition: color .2s ease, transform .2s ease !important;
}
.footer-site .footer-block ul li a:hover {
	color: #ffffff !important;
	transform: translateX(-2px) !important;
}
.footer-site p,
.footer-site a,
.footer-site .footer-social a {
	color: rgba(255,255,255,0.78) !important;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12) !important;
	padding-top: 24px !important;
	margin-top: 28px !important;
	color: rgba(255,255,255,0.65) !important;
}
.footer-site .footer-social a {
	display: inline-flex !important;
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(255,255,255,0.10) !important;
	color: #ffffff !important;
	margin-left: 10px !important;
	transition: transform .2s ease, background .2s ease !important;
}
.footer-site .footer-social a:hover {
	background: rgba(255,255,255,0.20) !important;
	transform: translateY(-3px) !important;
}
@media (max-width: 991px) {
	.footer-site .footer-top {
		flex-direction: column !important;
		gap: 24px !important;
	}
	.footer-site .footer-block {
		min-width: auto !important;
	}
}

/* Mega Panel (limited width) similar to reference */
.mega-panel {
	position: absolute !important;
	left: 50% !important;
	right: auto !important;
	width: auto !important;
	max-width: 1240px !important;
	background: #fff !important;
	box-shadow: 0 12px 40px rgba(0,0,0,0.14) !important;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity .22s ease, transform .22s ease, visibility .22s;
	z-index: 9999 !important;
	display: flex !important;
	flex-direction: row-reverse !important;
	min-height: 300px !important;
	max-height: 600px !important;
	top: 100% !important;
	margin-top: -2px !important;
	pointer-events: none !important;
}
.mega-panel.visible {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translate(-50%, 0) !important;
	pointer-events: auto !important;
}
.mega-panel .mega-panel-loader { display:none; }
.mega-panel.loading .mega-panel-loader { display:block; }
.mega-panel-content { display:flex; flex-direction:row-reverse; width:100%; overflow-y: auto; max-height:560px; }
.mega-menu-image { width:280px; min-height:300px; background: linear-gradient(135deg,#f8f9fa,#eef7f8); display:flex; align-items:center; justify-content:center; padding:20px; flex-shrink:0; }
.mega-menu-image img { max-width:100%; max-height:260px; object-fit:contain; border-radius:8px; }
.mega-menu-content { flex:1; display:grid; grid-template-columns: repeat(5, minmax(180px, 1fr)) !important; align-content:start; justify-items:center; justify-content:center; padding:25px; gap:15px; min-height:300px; max-width: calc(5 * 180px + 4 * 15px); margin: 0 auto; }
.mega-inner { display:flex; gap:0; }
.mega-left { width: 280px; min-height: 300px; background: linear-gradient(135deg,#f8f9fa,#eef7f8); display:flex; align-items:center; justify-content:center; padding:20px; flex-shrink:0; }
.mega-left-image { max-width:100%; max-height:260px; object-fit:contain; border-radius:8px; }
.mega-right { flex:1; display:flex; flex-direction:column; gap:12px; padding:16px 20px; }
.mega-list { display:flex; flex-wrap:wrap; gap:16px; margin:0; padding:0; list-style:none; }
.mega-list-top, .mega-list-bottom { width:100%; display:flex; flex-wrap:wrap; gap:16px; }
.mega-card { width:auto; flex:0 0 180px; }
.mega-menu-column { display:flex; flex-direction:column; align-items:center; width:100%; max-width:180px; padding:15px; background:#fff; border:1px solid rgba(0,0,0,0.06); border-radius:12px; box-shadow:0 2px 8px rgba(0,0,0,0.04); text-align:center; transition: all 0.2s; cursor: pointer; }
@media (min-width: 1200px) {
    .mega-menu-column { flex: 0 0 calc(20% - 16px) !important; max-width: unset !important; }
}
.mega-menu-column:hover { border-color: var(--primary-color); box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }
.mega-menu-column .subcategory-image { width:100%; height:100px; border-radius:8px; overflow:hidden; background:linear-gradient(135deg,#f8f9fa,#e9ecef); margin-bottom:12px; display:flex; align-items:center; justify-content:center; }
.mega-menu-column .subcategory-image img { max-width:90%; max-height:90%; object-fit:contain; transition: transform 0.3s; }
.mega-menu-column:hover .subcategory-image img { transform: scale(1.08); }
.mega-menu-column h4 { margin:0; padding:0; }
.mega-menu-column h4 a { display:block; width:100%; padding:10px 12px; color:#fff !important; font-weight:700; font-size:13px; background: linear-gradient(180deg,#737b80,#737b80) !important; border-radius:8px; text-align:center; text-decoration:none; transition: all 0.2s; }
.mega-menu-column h4 a:hover { background: linear-gradient(180deg, #8e9599, #737b80) !important; }
#menu .dropdown-menu {
	background: #fff;
	border: none;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
#menu .dropdown-menu a {
	color: #333;
}
#menu .dropdown-menu .see-all {
	display: block;
	padding: 12px 20px;
	color: #0c4d72;
	font-weight: 700;
}
.home-page {
	margin-top: 20px;
}
.home-hero {
	background: linear-gradient(135deg, #0c4d72 0%, #17a2b8 100%);
	color: #fff;
	padding: 40px 0;
}
.home-hero .container {
	position: relative;
}
.home-content,
.home-featured,
.home-promos,
.home-categories,
.home-banner,
.home-offers {
	/* padding: 40px 0 80px; */ 
}
.section-title {
	margin-bottom: 18px;
	padding-bottom: 0;
	border-bottom: none;
}
.section-title h2 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	color: #0c4d72;
}
.home-hero {
	background: linear-gradient(135deg, #0c4d72 0%, #17a2b8 100%);
	color: #fff;
	padding: 80px 0 60px;
}
.home-hero .container {
	position: relative;
}
.hero-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}
.hero-copy {
	max-width: 700px;
	text-align: center;
}
.hero-label {
	display: inline-block;
	padding: 10px 18px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50px;
	font-size: 14px;
	margin-bottom: 20px;
	color: #fff;
}
.home-hero h1 {
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.1;
}
.home-hero p {
	font-size: 18px;
	color: rgba(255,255,255,.88);
	max-width: 620px;
	margin: 0 auto 30px;
}
.hero-cta {
	display: inline-block;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 6px;
	background: #fff;
	color: #0c4d72;
	border: none;
}
.hero-cta:hover {
	background: rgba(255,255,255,.95);
}
.categories-grid,
.home-offers .promo-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.category-card,
.home-promos .promo-card,
.home-offers .promo-card {
	flex: 1 1 calc(33.333% - 20px);
	background: #fff;
	border: 1px solid #e6e6e6;
	padding: 28px 22px;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0,0,0,0.04);
	border-radius: 12px;
	transition: transform .25s ease, box-shadow .25s ease;
}
.category-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	margin-top: 11px;
	/*min-height: 140px;*/
}
.category-card:hover,
.home-promos .promo-card:hover,
.home-offers .promo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}
.category-card span,
.home-offers .promo-card strong,
.home-promos .promo-card strong {
	display: block;
	font-size: 14px;
	color: #888;
}
.category-card strong,
.home-offers .promo-card p,
.home-promos .promo-card p {
	font-size: 18px;
	color: #1f2d3d;
	font-weight: 700;
}
.home-banner {
	padding-top: 0;
}
.section-products > * {
	margin-top: 30px;
}
@media (max-width: 991px) {
	.category-card,
	.home-promos .promo-card,
	.home-offers .promo-card {
		flex: 1 1 48%;
	}
}
@media (max-width: 767px) {
	.category-card,
	.home-promos .promo-card,
	.home-offers .promo-card {
		flex: 1 1 100%;
	}
}
.product-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	margin: 0 0 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
@media (hover: none) and (pointer: coarse) {
	.product-card:hover,
	.product-card:hover .product-image img,
	.product-card:hover .btn-quickview,
	.product-card:hover .btn-quickview .quickview-text {
		transform: none !important;
		box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
	.product-card .btn-quickview {
		display: none !important;
	}
	.product-card .btn-add-cart,
	.product-card .add-to-cart-btn,
	.product-card .qty-btn,
	.product-card .quantity-selector,
	.product-card .qty-input {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
		-webkit-touch-callout: none;
		user-select: none;
	}
	.product-card .btn-add-cart:active,
	.product-card .add-to-cart-btn:active,
	.product-card .qty-btn:active {
		transform: scale(0.98);
	}
}
.product-card .product-image {
	height: 220px;
	background: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* Quickview: hidden by default, reveal on card hover */
.btn-quickview {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	padding: 8px 10px;
	min-width: 42px;
	font-size: 12px;
	line-height: 1;
	border-radius: 4px;
	background: rgba(255,255,255,0.95);
	border: 1px solid #ddd;
	color: #0c4d72;
	transition: all .2s ease, opacity .2s ease, transform .2s ease;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	z-index: 5;
}
.product-card:hover .btn-quickview,
.product-card .product-image:hover .btn-quickview {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}
.btn-quickview .quickview-text {
	opacity: 0;
	visibility: hidden;
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	margin-left: 0;
	transition: opacity .2s ease, max-width .2s ease, margin-left .2s ease;
}
.product-card:hover .btn-quickview .quickview-text,
.product-card .product-image:hover .btn-quickview .quickview-text {
	opacity: 1;
	visibility: visible;
	max-width: 120px;
	margin-left: 8px;
}
#quickviewModal .modal-dialog {
	max-width: 1020px;
}

.filter-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.35);
	opacity: 0;
	visibility: hidden;
	display: none;
	transition: opacity .25s ease;
	z-index: 998;
}
.filter-overlay.active {
	display: block;
	opacity: 1;
	visibility: visible;
}
body.no-scroll {
	overflow: hidden;
}
.sidebar-panel {
	position: sticky;
	top: 20px;
	align-self: flex-start;
}
.sidebar-panel .sidebar-panel-inner {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.filters-header-mobile {
	display: none;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.filters-header-mobile h3 {
	font-size: 18px;
	margin: 0;
}
.filters-header-mobile .close-filters {
	border: none;
	background: transparent;
	color: #0c4d72;
	font-size: 20px;
	padding: 8px;
	cursor: pointer;
}
.filter-toggle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	padding: 11px 20px;
	border-radius: 12px;
	background: #0c4d72;
	color: #fff;
	border: 1px solid transparent;
	box-shadow: 0 10px 24px rgba(12,77,114,0.15);
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.filter-toggle-btn:hover {
	transform: translateY(-1px);
	background: #08405b;
}
.sidebar-panel .filter-card,
.filters-sidebar-placeholder .filter-card {
	background: #fafafa;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 16px;
}
@media (max-width: 991px) {
	.sidebar-panel {
		display: block !important;
		position: fixed;
		top: 0;
		right: 0;
		width: 320px;
		max-width: 85%;
		height: 100%;
		z-index: 999;
		transform: translateX(100%);
		transition: transform .25s ease;
		background: transparent;
		overflow-y: auto;
	}
	.sidebar-panel.active {
		transform: translateX(0);
	}
	.sidebar-panel .sidebar-panel-inner {
		height: 100%;
		border-radius: 18px 0 0 18px;
		box-shadow: -10px 0 30px rgba(0,0,0,0.12);
	}
	.filters-header-mobile {
		display: flex;
	}
	.filter-toggle-btn {
		display: inline-flex;
		width: 100%;
	}
}
@media (max-width: 767px) {
	.product-card .quantity-selector {
		width: 100%;
	}
	.product-card .qty-input {
		width: 100%;
	}
	.product-card .btn-add-cart,
	.product-card .add-to-cart-btn {
		min-height: 46px;
		padding: 12px 14px;
		-webkit-appearance: none;
		appearance: none;
	}
	.product-card .qty-btn {
		min-width: 44px;
		min-height: 44px;
	}
}
#quickviewModal .modal-content {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}
#quickviewModal .modal-body {
	padding: 0;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	background: #f8f9fa;
}
#quickviewModal .quickview-inner {
	display: flex;
	flex-wrap: wrap;
}
#quickviewModal .loading {
	width: 100%;
	padding: 80px 0;
	color: #0c4d72;
}
#quickviewModal .product-gallery,
#quickviewModal .product-summary,
#quickviewModal .product-details-tabs {
	background: transparent;
	border: none;
	box-shadow: none;
}
#quickviewModal .product-summary .product-meta .meta-manufacturer,
#quickviewModal .product-summary .product-meta .meta-model,
#quickviewModal .product-summary-features {
	display: none !important;
}
#quickviewModal .product-gallery {
	flex: 0 0 46%;
	min-width: 320px;
	padding: 30px;
	border-right: 1px solid #e9ecef;
}
#quickviewModal .product-summary {
	flex: 1 1 54%;
	min-width: 320px;
	padding: 30px;
}
#quickviewModal .product-summary-header h1 {
	font-size: 26px;
	margin-bottom: 14px;
}
#quickviewModal .product-main-image {
	margin-bottom: 0;
}
#quickviewModal .product-main-image .main-image img,
#quickviewModal .thumb-item img {
	border-radius: 14px;
}
#quickviewModal .quickview-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	border: 1px solid rgba(0,0,0,0.08);
	color: #333;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	z-index: 2;
}
#quickviewModal .quickview-close:hover {
	background: #0c4d72;
	color: #fff;
}
#quickviewModal .product-thumbnails {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
#quickviewModal .thumb-item {
	flex: 1 1 22%;
	min-width: 62px;
}
#quickviewModal .product-action-row {
	margin-bottom: 18px;
	gap: 12px;
}
#quickviewModal .product-action-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#quickviewModal .product-action-links .btn {
	flex: 1 1 140px;
	min-width: 120px;
}
#quickviewModal .product-delivery {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(0,0,0,0.06);
	color: #58616b;
	font-size: 14px;
}
#quickviewModal .product-delivery span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
#quickviewModal .product-delivery i {
	color: #0c4d72;
}
@media (max-width: 991px) {
	#quickviewModal .quickview-inner {
		flex-direction: column;
	}
	#quickviewModal .product-gallery,
	#quickviewModal .product-summary {
		flex: 1 1 100%;
		border-right: none;
		padding: 20px;
	}
}
.product-card:hover .btn-quickview .quickview-text,
.product-card .product-image:hover .btn-quickview .quickview-text {
	opacity: 1;
	visibility: visible;
	max-width: 140px;
	margin-left: 6px;
}
.product-card .product-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
	transform: scale(1.03);
}
.product-card .product-info {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-card h5.product-title {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 10px;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card h5.product-title a {
	color: #1a1a1a;
	text-decoration: none;
}
.product-card h5.product-title a:hover {
	color: #0c4d72;
}
.product-card .product-description {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 14px;
	min-height: 42px;
	overflow: hidden;
 	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.product-card .product-add-to-cart {
 	    margin-bottom: -30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.product-card .product-pricing {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.product-card .price-current {
	font-size: 16px;
	font-weight: 700;
	color: #0c4d72;
}
.product-card .price-original {
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
}
.product-card .stars {
	display: flex;
	gap: 3px;
}
.product-card .stars i {
	font-size: 12px;
	color: #f4c150;
}
.product-card .product-footer {
	padding: 12px 15px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}
.product-card .btn-add-cart {
	width: 100%;
	padding: 10px 12px;
	background: #707a7f;
	border: 1px solid #707a7f;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	transition: all .2s ease;
}
.product-card .btn-add-cart:hover {
	background: #08405b;
	border-color: #08405b;
}
.product-card .quantity-selector {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f9f9f9;
	border-radius: 12px;
	border: 1px solid #e6e6e6;
	padding: 4px;
	gap: 4px;
}
.product-card .qty-btn {
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: #0c4d72;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, color .2s ease;
}
.product-card .qty-btn:hover {
	background: #0c4d72;
	color: #fff;
}
.product-card .qty-input {
	width: 80px;
	height: 44px;
	border: none;
	background: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	outline: none;
	-moz-appearance: textfield;
}
.product-card .qty-input::-webkit-outer-spin-button,
.product-card .qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.product-card .quantity-input {
	width: 100%;
	max-width: 140px;
	padding: 11px 14px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 14px;
	color: #333;
	background: #fff;
	text-align: center;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.product-card .quantity-input:focus {
	outline: none;
	border-color: #0c4d72;
	box-shadow: 0 0 0 3px rgba(12,77,114,0.12);
}
.product-card .btn-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: #fff;
	border: 1px solid #ddd;
	color: #666;
	font-size: 14px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .2s ease;
}
.product-card .btn-icon:hover {
	background: #0c4d72;
	border-color: #0c4d72;
	color: #fff;
}
@media (min-width: 1500px) {
	.product-category-page, #product-category.product-category-page.container-fluid {
		max-width: 1600px !important;
	}
	.products-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 18px;
	}
	.product-image {
		height: 260px;
	}
}

@media (max-width: 767px) {
	.product-card {
		padding: 15px;
	}
	.product-card .product-footer {
		flex-direction: column;
		gap: 8px;
	}
}
.btn-link:hover {
	color: #17a2b8;
}
.footer-contact {
	background: #0c4d72;
	color: #fff;
	padding: 30px 0;
}
.footer-contact .footer-block h5,
.footer-contact .footer-block a {
	color: #fff;
}
/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}

.product-page,
.product-detail {
	padding: 30px 0 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}
.product-page.product-detail > .row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}
@media (min-width: 768px) {
	.product-page.product-detail > .row {
		grid-template-columns: 1fr 1fr;
	}
}
.product-gallery {
	background: #fff;
	border: 1px solid #e6e6e6;
	box-shadow: 0 4px 18px rgba(0,0,0,0.04);
	padding: 20px;
}
.product-main-image {
	margin-bottom: 18px;
}
.main-image {
	width: 100%;
	height: 300px;
	background: #fafafa;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
@media (min-width: 768px) {
	.main-image {
		height: 400px;
	}
}
.main-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.price-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.price-box .current-price {
	font-size: 32px;
	font-weight: 700;
	color: #0c4d72;
}
.price-box .old-price {
	font-size: 18px;
	color: #999;
	text-decoration: line-through;
}
.price-box .discount-percent {
	background: #dc3545;
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
}
.quantity-selector {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.quantity-selector label {
	font-weight: 600;
	font-size: 14px;
	min-width: 100px;
}
.quantity-input {
	display: flex;
	align-items: center;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	overflow: hidden;
}
.quantity-input button {
	width: 40px;
	height: 40px;
	background: #f8f9fa;
	border: none;
	cursor: pointer;
	font-size: 18px;
	transition: background 0.3s;
}
.quantity-input button:hover {
	background: #e9ecef;
}
.quantity-input input {
	width: 70px;
	height: 40px;
	padding: 0;
	text-align: center;
	border: none;
	font-family: inherit;
	font-size: 16px;
	background: transparent;
}
.quantity-input input:focus {
	outline: none;
}
.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.product-description {
	margin-bottom: 20px;
	color: #555;
	line-height: 1.8;
	font-size: 14px;
}
.product-specs {
	margin: 24px 0;
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px;
}
.product-specs h3 {
	margin-bottom: 16px;
	color: #0c4d72;
	font-size: 16px;
}
.spec-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #e6e6e6;
}
.spec-item:last-child {
	border-bottom: none;
}
.spec-name {
	font-weight: 600;
	min-width: 130px;
	color: #333;
}
.spec-value {
	color: #555;
}
.product-summary-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 15px;
}
.product-summary-header h1 {
	font-size: 26px;
	font-weight: 700;
	margin: 0;
}
.product-rating-inline {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #777;
}
.product-rating-inline i {
	color: #f4c150;
}
.product-meta {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
}
.product-meta li a {
	color: #0c4d72;
}
.product-prices {
	margin-bottom: 20px;
}
.price-main,
.price-special {
	font-size: 32px;
	font-weight: 700;
	color: #0c4d72;
}
.price-old {
	font-size: 18px;
	color: #999;
	text-decoration: line-through;
}
.price-tax,
.price-points,
.discount-line {
	font-size: 14px;
	color: #555;
	margin-top: 10px;
}
.product-action-row {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 18px;
}
.product-action-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.product-action-links .btn {
	flex: 1 1 auto;
	padding: 10px 12px;
	font-size: 13px;
}
.product-details-tabs {
	margin-top: 35px;
}
.product-details-tabs .nav-tabs {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 0;
}
.product-details-tabs .nav-tabs li {
	margin-bottom: -1px;
}
.product-details-tabs .nav-tabs li a {
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0;
	padding: 12px 18px;
	font-weight: 600;
	color: #333;
}
.product-details-tabs .nav-tabs li.active a,
.product-details-tabs .nav-tabs li a:hover {
	border-color: #e6e6e6 #e6e6e6 transparent;
	background: #fff;
}
.product-details-tabs .tab-content {
	padding: 25px;
	border: 1px solid #e6e6e6;
	border-top: none;
	background: #fff;
}
.product-page.product-detail {
	padding: 40px 0 30px;
}
.product-page.product-detail > .row {
	margin-left: 0;
	margin-right: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}
@media (min-width: 768px) {
	.product-page.product-detail > .row {
		grid-template-columns: 1fr 1fr;
	}
}
.product-page.product-detail > .row > [class*="col-"] {
	float: none;
	width: auto;
	padding-left: 0;
	padding-right: 0;
}
.product-page.product-detail .product-gallery,
.product-page.product-detail .product-summary {
	background: #fff;
	border: 1px solid #e6e6e6;
	box-shadow: 0 4px 18px rgba(0,0,0,0.04);
	border-radius: 18px;
	padding: 25px;
}
.product-page.product-detail .product-gallery {
	padding: 20px;
}
body.rtl .product-single.product-page .product-gallery {
	order: -1 !important;
}
body.rtl .product-single.product-page .product-details-left.product-summary {
	order: 0 !important;
}
body.rtl .product-single.product-page .product-detail {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 25px !important;
}
/* Toast / Notification positioning: force consistent bottom-left placement */
.notification,
.toast-notification,
.toast,
.alert,
.alert-dismissible,
.alert.alert-success,
.alert.alert-info,
.alert.alert-warning,
.alert.alert-danger {
	position: fixed !important;
	bottom: 20px !important;
	left: 20px !important;
	top: auto !important;
	right: auto !important;
	z-index: 999999 !important;
	margin: 0 !important;
	border-radius: 8px !important;
	padding: 12px 18px !important;
	width: auto !important;
	max-width: calc(100% - 40px) !important;
	box-sizing: border-box !important;
}
.page-header {
	background: #fff;
	padding: 18px 0 15px;
	border-bottom: 1px solid #e8edf3;
	margin-bottom: 30px;
}

.page-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.page-header h1 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: #111;
	line-height: 1.1;
	text-align: right;
}

.page-header .breadcrumb {
	margin: 10px 0 0;
	background: transparent;
	padding: 0;
	font-size: 13px;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
	border: none !important;
	box-shadow: none !important;
}

.page-header .breadcrumb li {
	display: inline-flex;
	align-items: center;
	margin: 0;
	white-space: nowrap;
}

.page-header .breadcrumb li + li:before {
	content: "/";
	color: #b0b0b0;
	margin: 0 5px;
	display: inline-block;
}

.page-header .breadcrumb li a {
	color: #5e35b1;
	text-decoration: none;
	font-weight: 500;
}

.page-header .breadcrumb li a:hover {
	text-decoration: underline;
}

.page-header .breadcrumb li:last-child {
	color: #222;
	font-weight: 700;
}

.page-header .breadcrumb li:first-child a i {
	display: inline-flex;
}

/* Product Single Container */
.product-single {
	padding: 30px 0;
	background: #f5f8fc;
}

.product-detail {
	display: flex;
	gap: 40px;
	margin-bottom: 50px;
	direction: rtl;
	flex-direction: row-reverse;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 18px 50px rgba(13, 79, 148, 0.08);
	padding: 28px;
}

.product-gallery {
	flex: 1.05;
}

.product-details-left {
	flex: 0.95;
}

@media (max-width: 768px) {
	.product-detail {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 25px !important;
		padding: 18px 12px !important;
	}

	.product-gallery,
	.product-details-left {
		width: 100% !important;
		flex: none !important;
		order: 0 !important;
	}

	.product-gallery {
		padding: 0 !important;
	}

	.product-gallery-slider {
		width: 100% !important;
		padding: 14px !important;
		box-sizing: border-box;
	}

	.main-slide-container {
		min-height: auto !important;
		max-width: 560px !important;
		width: min(100%, 560px) !important;
		aspect-ratio: 1 / 1 !important;
		margin: 0 auto 16px auto !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.zoom-container {
		height: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.main-product-image {
		width: auto !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: 100% !important;
		margin: 0 auto !important;
		display: block !important;
	}

	.thumbnails-strip {
		justify-content: center !important;
		padding-top: 12px !important;
	}

	.thumb-item {
		width: 56px !important;
		height: 56px !important;
	}

	.slide-arrow {
		width: 36px !important;
		height: 36px !important;
	}
}

/* Product Details (Left - RTL) */
.product-details-left {
	padding: 0;
}

.product-title {
	font-size: 26px;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

/* Rating Section */
.rating-section {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.rating-stars {
	display: flex;
	gap: 2px;
	font-size: 16px;
}

.rating-stars i.fas {
	color: #ffc107;
}

.rating-stars i.far {
	color: #ddd;
}

.rating-reviews {
	font-size: 12px;
	color: #999;
}

/* Price Section */
.price-section {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0;
	flex-wrap: wrap;
	position: relative;
}

.discount-badge {
	background: #d32f2f;
	color: white;
	padding: 6px 10px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 12px;
}

.current-price {
	font-size: 36px;
	font-weight: 700;
	color: #0051ba;
}

.current-price.special-price {
	color: #0051ba;
}

.old-price {
	font-size: 16px;
	color: #999;
	text-decoration: line-through;
}

.price-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* Product Description */
.product-description {
	font-size: 14px;
	color: #4d4d4d;
	line-height: 1.8;
	margin: 15px 0;
}

.product-description-block,
.product-reviews-section,
.same-products-section,
.related-products-section,
.product-specifications {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 18px;
	padding: 24px;
	margin-bottom: 30px;
}

.product-description-block h2,
.product-specifications h2,
.product-reviews-section h2,
.same-products-section h2,
.related-products-section h2 {
	font-size: 22px;
	color: #0b497d;
	margin-bottom: 18px;
}

.rating-section {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding: 12px 16px;
	border: 1px solid #e8edf3;
	border-radius: 16px;
	background: #ffffff;
}

.rating-reviews {
	font-size: 13px;
	color: #5f6d7a;
}

.rating-stars i.fas,
.rating-stars i.far {
	font-size: 16px;
}

.rating-stars i.fas {
	color: #f5b301;
}

.rating-stars i.far {
	color: #dcdfe6;
}

.product-options,
.product-description-block,
.product-reviews-section,
.same-products-section,
.related-products-section {
	margin-top: 0;
}
.stock-status {
	padding: 12px 16px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	margin: 15px 0;
}

.stock-status.available {
	background: #eaf8f3;
	color: #08735e;
	border: 1px solid #d4f0e3;
}

.stock-status i {
	font-size: 16px;
}

/* WhatsApp Button */
.whatsapp-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25d366;
	color: white;
	padding: 14px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	margin: 15px 0;
	transition: all 0.3s ease;
	width: 100%;
}

.whatsapp-button:hover {
	background: #1fad4f;
	color: white;
}

.whatsapp-button i {
	font-size: 18px;
}

/* MOQ Badge */
.moq-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 15px;
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	border: 1px solid #7232e8;
	border-radius: 6px;
	font-size: 13px;
	color: #e65100;
	margin: 15px 0;
}

.moq-badge i {
	color: #dfd9eb;
	font-size: 16px;
}

.moq-badge strong {
	font-weight: 700;
	color: #d84315;
}

.min-qty-block {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: linear-gradient(135deg, #ffffff, #f7f3ef);
	border: 1px solid #dcc2a0;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(97, 65, 38, 0.08);
	margin: 18px 0;
}

.min-qty-icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.16), rgba(255, 152, 0, 0.05));
	border-radius: 50%;
	border: 1px solid rgba(255, 152, 0, 0.25);
}

.min-qty-icon i {
	color: #ff9800;
	font-size: 20px;
}

.min-qty-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.min-qty-title {
	font-size: 13px;
	font-weight: 700;
	color: #5f4b3d;
}

.min-qty-block strong {
	font-size: 20px;
	font-weight: 800;
	color: #3c2d22;
}

/* Product Options Section */
.product-options {
	margin: 20px 0;
}

.options-section {
	margin-bottom: 20px;
}

.options-section h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.form-group {
	margin-bottom: 12px;
}

.form-group label {
	font-weight: 500;
	color: #333;
	margin-bottom: 6px;
	display: block;
	font-size: 13px;
}

.form-control {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px 10px;
	font-size: 13px;
	height: 38px;
	font-family: 'Cairo', Tahoma, Geneva, sans-serif;
}

.form-control:focus {
	border-color: #0051ba;
	box-shadow: 0 0 3px rgba(0,81,186,0.2);
	outline: none;
}

/* Quantity Section */
.quantity-section {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
}

.quantity-section label {
	font-weight: 600;
	color: #333;
	font-size: 13px;
	white-space: nowrap;
}

.quantity-input {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	background: white;
}

.qty-btn {
	width: 36px;
	height: 36px;
	background: #f5f5f5;
	border: none;
	color: #333;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty-btn:hover {
	background: #0051ba;
	color: white;
}

.qty-input {
	width: 60px;
	border: none;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	padding: 0;
	background: white;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-input[type=number] {
	-moz-appearance: textfield;
}

/* Action Buttons */
.action-buttons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.btn {
	padding: 12px 16px;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex: 1;
	font-family: 'Cairo', Tahoma, Geneva, sans-serif;
}

.btn-add-cart {
	background: #6e787e;
	color: white;
	border: none;
}

.btn-add-cart:hover {
	background: #f77c03;
}

.btn-buy-now {
	background: #f77c03;
	color: white;
	border: none;
}

.btn-buy-now:hover {
	background: #25d6d3;
}

/* Product Gallery (Right - RTL) */
.product-gallery {
	position: relative;
}

.product-gallery-slider {
	position: relative;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	padding: 10px;
	overflow: hidden;
}

.main-slide-container {
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 16px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.zoom-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.main-product-image {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 0.2s ease-out;
	display: block;
	margin: 0 auto;
}

.slide-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.92);
	color: #222;
	border: 1px solid #e6e6e6;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.slide-arrow:hover {
	background: white;
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.slide-arrow.prev {
	left: 12px;
}

.slide-arrow.next {
	right: 12px;
}

.thumbnails-strip {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 10px 0 0;
	direction: rtl;
	justify-content: center;
}

.thumb-item {
	min-width: 72px;
	width: 72px;
	height: 72px;
	border: 2px solid #e6e6e6;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.25s ease;
	flex-shrink: 0;
	background: #ffffff;
}

.thumb-item:hover {
	border-color: #0051ba;
}

.thumb-item.active {
	border-color: #0051ba;
	box-shadow: 0 0 8px rgba(0,81,186,0.3);
}

.thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 2px;
}

/* Tabs Section */
.product-tabs {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #e6e6e6;

/* Ensure category-card spacing and layout (override earlier rules) */
.category-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 10px !important;
	margin-bottom: 20px !important;
	margin-top: 11px !important;
}
}

.nav-tabs {
	border-bottom: 2px solid #e6e6e6;
	margin-bottom: 20px;
	display: flex;
	gap: 0;
}

.nav-tabs li {
	margin: 0;
	border-bottom: 2px solid transparent;
}

.nav-tabs a {
	color: #666;
	border: none;
	padding: 10px 16px;
	font-weight: 500;
	font-size: 13px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
}

.nav-tabs a:hover {
	color: #0051ba;
	border-bottom: none;
}

.nav-tabs li.active {
	border-bottom-color: #0051ba;
}

.nav-tabs li.active a {
	color: #0051ba;
	background: transparent;
}

.tab-content {
	padding: 20px 0;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.product-description-full {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
}

.product-description-block,
.product-specifications,
.product-reviews-section,
.same-products-section {
	margin-top: 35px;
	padding-top: 25px;
	border-top: 1px solid #e8e8e8;
}

.product-description-block h2,
.product-specifications h2,
.product-reviews-section h2,
.same-products-section h2 {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.product-reviews-section h3 {
	font-size: 18px;
	margin-top: 24px;
	margin-bottom: 18px;
	color: #333;
}

.rtl-form {
	direction: rtl;
	text-align: right;
}

.rtl-form .form-group {
	direction: rtl;
}

.rtl-form .control-label {
	text-align: right;
	direction: rtl;
}

.rtl-form .rating-inputs {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 12px;
	margin-top: 10px;
}

.rtl-form .rating-inputs label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	cursor: pointer;
}

.buttons-rtl {
	display: flex;
	justify-content: flex-end;
}

.same-products-section h2 i {
	color: #1976d2;
}

.same-products-section .related-products {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

@media (max-width: 1280px) {
	.same-products-section .related-products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.same-products-section .related-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.same-products-section .related-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.same-products-section .related-products {
		grid-template-columns: 1fr;
	}
}

.same-products-section .product-layout {
	margin: 0;
}

.same-products-section .product-card {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.same-products-section .product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.same-products-section .product-card .product-image {
	background: #f8f9fa;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.same-products-section .product-card .product-image img {
	max-width: 100%;
	height: auto;
}

.same-products-section .product-card .product-info {
	padding: 16px;
	flex: 1;
}

.same-products-section .product-card .product-title {
	font-size: 15px;
	margin: 0 0 10px;
	line-height: 1.3;
}

.same-products-section .product-card .product-pricing {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.same-products-section .product-card .price-current {
	font-size: 16px;
	font-weight: 700;
	color: #1976d2;
}

.same-products-section .product-card .price-original {
	font-size: 13px;
	color: #8f8f8f;
	text-decoration: line-through;
}

.same-products-section .product-card .product-details {
	margin-top: 12px;
}

.same-products-section .product-card .min-qty {
	font-size: 13px;
	color: #555;
}

.same-products-section .product-card .min-qty strong {
	color: #333;
}

.same-products-section .product-card .stars {
	display: flex;
	gap: 2px;
	margin-top: 12px;
	color: #f0b33e;
}

.same-products-section .product-card .product-footer {
	padding: 14px 16px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.same-products-section .product-card .footer-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.same-products-section .product-card .product-image {
	background: #f8f9fa;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.same-products-section .product-card .btn-quickview,
.same-products-section .product-card .product-image .btn-quickview {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255,255,255,0.95);
	border: 1px solid #ddd;
	color: #0c4d72;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 5;
}

.same-products-section .product-card:hover .btn-quickview,
.same-products-section .product-card .product-image:hover .btn-quickview {
	opacity: 1;
	visibility: visible;
}

.same-products-section .product-card .btn-quickview:hover {
	background: #0c4d72;
	color: #fff;
	border-color: #0c4d72;
}

.same-products-section .product-card .btn-quickview .quickview-text {
	opacity: 0;
	visibility: hidden;
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	margin-left: 0;
	transition: opacity .2s ease, max-width .2s ease, margin-left .2s ease;
}

.same-products-section .product-card:hover .btn-quickview .quickview-text,
.same-products-section .product-card .product-image:hover .btn-quickview .quickview-text {
	opacity: 1;
	visibility: visible;
	max-width: 120px;
	margin-left: 8px;
}

.same-products-section .product-card .btn-add-cart {
	flex: 1.5;
	padding: 10px 14px;
}

.same-products-section .product-card .quantity-selector {
	display: flex;
	align-items: center;
	border: 1px solid #dce0e6;
	border-radius: 8px;
	overflow: hidden;
}

.same-products-section .product-card .qty-btn {
	width: 34px;
	height: 34px;
	border: none;
	background: #f2f4f8;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.same-products-section .product-card .qty-input {
	width: 46px;
	height: 34px;
	border: none;
	text-align: center;
	font-size: 13px;
}

.same-products-section .product-card .qty-input:focus {
	outline: none;
}

.same-products-section .product-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.same-products-section .product-image {
	background: #f8f9fa;
	padding: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.same-products-section .product-image img {
	max-width: 100%;
	height: auto;
}

.same-products-section .product-info {
	padding: 14px;
}

.same-products-section .product-info h3 {
	font-size: 14px;
	margin: 0 0 8px;
	line-height: 1.3;
}

.same-products-section .product-price {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.same-products-section .price-old {
	text-decoration: line-through;
	color: #8f8f8f;
}

.same-products-section .product-rating {
	display: flex;
	gap: 3px;
	margin-top: 10px;
	color: #f0b33e;
}

/* Related Products Section */
.related-products-section {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #e6e6e6;
}

.related-products-section h2 {
	font-size: 22px;
	margin-bottom: 25px;
	color: #333;
}

.related-products-section .related-products {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

@media (max-width: 1280px) {
	.related-products-section .related-products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.related-products-section .related-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.related-products-section .related-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.related-products-section .related-products {
		grid-template-columns: 1fr;
	}
}

.related-products-section .product-item {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.related-products-section .product-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-color: #ddd;
}

.related-products-section .product-image {
	background: #f8f9fa;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
}

.related-products-section .product-image a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.related-products-section .product-image img {
	max-width: 100%;
	height: auto;
}

.related-products-section .product-info {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.related-products-section .product-info h3 {
	font-size: 15px;
	margin: 0 0 10px;
	line-height: 1.3;
	font-weight: 600;
}

.related-products-section .product-info h3 a {
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 1.4;
}

.related-products-section .product-info h3 a:hover {
	color: #0051ba;
}

.related-products-section .product-price {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: auto;
}

.related-products-section .price,
.related-products-section .price-new {
	font-size: 16px;
	font-weight: 700;
	color: #1976d2;
}

.related-products-section .price-old {
	font-size: 13px;
	color: #8f8f8f;
	text-decoration: line-through;
}

.related-products-section .product-rating {
	display: flex;
	gap: 2px;
	margin-top: 12px;
	color: #f0b33e;
	font-size: 13px;
}

.related-products-section .product-rating i.fas {
	color: #f0b33e;
}

.related-products-section .product-rating i.far {
	color: #ddd;
}

.related-products-section .product-card {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.related-products-section .product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-products-section .product-card .product-image {
	background: #f8f9fa;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 170px;
}

.related-products-section .product-card .product-image img {
	max-width: 100%;
	height: auto;
}

.related-products-section .product-card .product-info {
	padding: 16px;
	flex: 1;
}

.related-products-section .product-card .product-title {
	font-size: 15px;
	margin: 0 0 10px;
	line-height: 1.3;
}

.related-products-section .product-card .product-pricing {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.related-products-section .product-card .price-current {
	font-size: 16px;
	font-weight: 700;
	color: #1976d2;
}

.related-products-section .product-card .price-original {
	font-size: 13px;
	color: #8f8f8f;
	text-decoration: line-through;
}

.related-products-section .product-card .product-footer {
	padding: 14px 16px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.related-products-section .product-card .footer-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.related-products-section .product-card .btn-add-cart {
	flex: 1.5;
	padding: 10px 14px;
}

.related-products-section .product-card .quantity-selector {
	display: flex;
	align-items: center;
	border: 1px solid #dce0e6;
	border-radius: 8px;
	overflow: hidden;
}

.related-products-section .product-card .qty-btn {
	width: 34px;
	height: 34px;
	border: none;
	background: #f2f4f8;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.related-products-section .product-card .qty-input {
	width: 46px;
	height: 34px;
	border: none;
	text-align: center;
	font-size: 13px;
}

.related-products-section .product-card .qty-input:focus {
	outline: none;
}

.related-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 15px;
}

@media (max-width: 768px) {
	.related-products {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 12px;
	}
}

.product-page.product-detail .product-details-tabs {
	margin-top: 35px;
}
.product-page.product-detail .product-details-tabs .nav-tabs li a {
	color: #0c4d72;
}
.product-page.product-detail .product-details-tabs .nav-tabs li.active a,
.product-page.product-detail .product-details-tabs .nav-tabs li a:hover {
	background: #fff;
}
.product-page.product-detail .product-details-tabs .tab-content {
	padding: 30px;
}
.product-page.product-detail .product-description {
	margin-bottom: 0;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}
/* Exact elbnastore final header overrides (highest specificity) */
.main-header {
	background: linear-gradient(120deg, #0c1445 0%, #0e2a6e 28%, #1565c0 52%, #1e88e5 72%, #42a5f5 88%, #64b5f6 100%) !important;
	padding: 12px 0 !important;
	box-shadow: rgba(0, 0, 0, 0.20) 0px 20px 60px 0px !important;
	position: relative !important;
	z-index: 200 !important;
}
.header-top {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 15px !important;
	padding: 10px 0 !important;
	position: relative !important;
}
.logo {
	max-width: 230px !important;
}
.logo-text {
	font-size: 30px !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	color: #fff !important;
}
.header-search {
	flex: 1 !important;
	max-width: 500px !important;
	position: static !important;
	transform: none !important;
	margin: 0 !important;
}
.header-search form,
.header-search #search {
	display: flex !important;
	width: 100% !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 25px !important;
	overflow: hidden !important;
	background: #fff !important;
}
.header-search input,
.header-search .form-control {
	flex: 1 !important;
	border: none !important;
	padding: 8px 15px !important;
	outline: none !important;
	font-family: inherit !important;
	background: transparent !important;
}
.header-search button,
.header-search .btn {
	background: #1565c0 !important;
	color: #fff !important;
	border: none !important;
	padding: 8px 18px !important;
	cursor: pointer !important;
}
.header-actions {
	display: flex !important;
	gap: 15px !important;
	align-items: center !important;
}
.header-actions a {
	color: #fff !important;
	font-size: 18px !important;
	position: relative !important;
	width: 44px !important;
	height: 44px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(255,255,255,0.06) !important;
	border-radius: 50% !important;
	border: 1px solid rgba(255,255,255,0.12) !important;
}
.header-actions a:hover {
	background: rgba(255,255,255,0.12) !important;
}
.cart-link .cart-count {
	position: absolute !important;
	top: -8px !important;
	right: -8px !important;
	background: #e53935 !important;
	color: #fff !important;
	font-size: 10px !important;
	width: 18px !important;
	height: 18px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
}
.menu-wrapper {
	background: linear-gradient(90deg, #0f3d7e 0%, #1d6ebd 45%, #3697ec 100%) !important;
	padding: 22px 0 20px !important;
	border-bottom: 1px solid rgba(255,255,255,0.18) !important;
	box-shadow: inset 0 -8px 20px rgba(0,0,0,0.18) !important;
}
.menu-wrapper .desktop-nav-list {
	padding: 18px 28px !important;
	gap: 16px !important;
	border-radius: 70px !important;
}

/* ---------- USER OVERRIDE (END OF FILE) ---------- */
/* Force .menu-wrapper panel to light background as requested */
.menu-wrapper {
	background: rgb(252, 251, 244) !important;
	background-image: none !important;
}

/* Final header layout match for first image: centered search, logo right, actions left */
.main-header {
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0px, rgba(255, 255, 255, 0) 1px), linear-gradient(120deg, #737a7f 0%, #6e787e 28%, #71777c 52%, #737b80 72%, #717a7f 88%, #a6acaf 100%) !important;
	background-size: 4px 4px, cover !important;
	padding: 10px 0 10px !important;
	box-shadow: 0 18px 40px rgba(8, 31, 78, 0.18) !important;
	position: relative !important;
	z-index: 200 !important;
}

.header-top {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	padding: 10px 0 !important;
}

.logo {
	max-width: 260px !important;
}

.logo-text {
	font-size: 34px !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #fff !important;
}

.header-search {
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 620px !important;
	max-width: 72% !important;
	min-width: 420px !important;
}

.header-search form,
.header-search #search {
	display: flex !important;
	width: 100% !important;
	background: #fff !important;
	border: none !important;
	border-radius: 35px !important;
	box-shadow: 0 24px 45px rgba(8, 31, 78, 0.14) !important;
	overflow: hidden !important;
}

.header-search input,
.header-search .form-control {
	flex: 1 !important;
	border: none !important;
	padding: 14px 24px !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
	outline: none !important;
	background: transparent !important;
	color: #0f2544 !important;
}

.header-search button,
.header-search .btn {
	min-width: 70px !important;
	padding: 0 22px !important;
	border: none !important;
	background: linear-gradient(180deg, #26c1ff 0%, #1072ff 100%) !important;
	color: #fff !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	border-radius: 0 30px 30px 0 !important;
}

.header-search button i,
.header-search .btn i {
	font-size: 18px !important;
}

.header-actions {
	display: flex !important;
	align-items: center !important;
	gap: 16px !important;
}

.header-actions a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 52px !important;
	height: 52px !important;
	background: rgba(255, 255, 255, 0.16) !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 50% !important;
	color: #fff !important;
	font-size: 18px !important;
	transition: background .25s ease, transform .25s ease !important;
}

.header-actions a:hover {
	background: rgba(255, 255, 255, 0.28) !important;
	transform: translateY(-2px) !important;
}

.cart-link .cart-count {
	position: absolute !important;
	top: -8px !important;
	right: -8px !important;
	min-width: 18px !important;
	height: 18px !important;
	padding: 0 5px !important;
	font-size: 10px !important;
	line-height: 18px !important;
	border-radius: 50% !important;
	background: #e53935 !important;
	color: #fff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

@media (max-width: 991px) {
	.header-search {
		position: static !important;
		transform: none !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 10px 0 !important;
	}

	.header-top {
		flex-wrap: wrap !important;
		justify-content: center !important;
		padding: 16px 0 !important;
	}

	.header-actions {
		order: 1 !important;
	}

	.logo {
		order: 2 !important;
	}
}

/* Final height and search fixes: set header to 78px and make search rectangular */
body.rtl .main-header {
	padding: 0 !important;
	min-height: 78px !important;
}
body.rtl .header-top {
	min-height: 78px !important;
	padding: 0 !important;
	align-items: center !important;
	gap: 14px !important;
}
body.rtl .header-search {
	flex: 1 !important;
	max-width: 560px !important;
	margin: 0 !important;
	position: static !important;
	transform: none !important;
}
body.rtl .header-search form,
body.rtl .header-search #search {
	display: flex !important;
	width: 100% !important;
	min-height: 46px !important;
	height: 46px !important;
	border-radius: 12px !important;
	border: 1px solid rgba(0, 0, 0, 0.08) !important;
	background: #fff !important;
	overflow: hidden !important;
}
body.rtl .header-search input,
body.rtl .header-search .form-control {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	min-height: 46px !important;
	padding: 0 14px 0 16px !important;
	font-size: 14px !important;
	border: none !important;
	outline: none !important;
	background: transparent !important;
	box-sizing: border-box !important;
	color: #0f2544 !important;
}
body.rtl .header-search button,
body.rtl .header-search .btn {
	flex: 0 0 48px !important;
	min-width: 0 !important;
	width: 48px !important;
	height: 46px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	padding: 0 12px 0 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 8px 0 0 8px !important;
	background: linear-gradient(135deg, #df760f, #f37a03) !important;
	color: #fff !important;
	box-sizing: border-box !important;
}
body.rtl .header-search button i,
body.rtl .header-search .btn i {
	font-size: 18px !important;
	line-height: 1 !important;
}
body.rtl .header-actions {
	gap: 12px !important;
}
body.rtl .header-actions a {
	width: 42px !important;
	height: 42px !important;
}
body.rtl .logo {
	max-width: 220px !important;
}
@media (max-width: 991px) {
	body.rtl .main-header {
		padding: 8px 0 !important;
	}
	body.rtl .header-top {
		min-height: auto !important;
		padding: 8px 0 !important;
	}
	body.rtl .header-search form,
	body.rtl .header-search #search {
		min-height: 46px !important;
		height: 46px !important;
		border-radius: 12px !important;
	}
}

/* ===== NEW MEGA MENU SYSTEM - From elbnastore ===== */

/* Nav Wrapper - Contains everything */
.nav-wrapper {
    position: relative;
    width: 100%;
}

/* Category Rows */
.cats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px 0;
}

.cats-row-1 {
    border-bottom: none;
}

.cats-row-2 {
    border-bottom: none;
}

/* Nav Items */
.nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    white-space: nowrap;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.2);
    cursor: pointer;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(21, 101, 192, 0.35);
    transform: translateY(-1px);
}

.nav-item .category-name {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.nav-item:hover .category-name,
.nav-item.active .category-name {
    color: #fff;
}

.nav-home {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-home i {
    font-size: 14px;
}

/* MEGA PANEL - Single Dynamic Element */
.mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    display: flex;
    flex-direction: row-reverse;
    min-height: 280px;
    /* Will be positioned dynamically via JS */
    top: 100%;
}

.mega-panel.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-panel-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary-color);
}

.mega-panel.loading .mega-panel-loader {
    display: block;
}

.mega-panel.loading .mega-panel-content {
    opacity: 0.3;
}

.mega-panel-content {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    transition: opacity 0.2s;
}

/* Category Image Section */
.mega-menu-image {
    width: 280px;
    min-height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.mega-menu-image img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 8px;
}

/* Subcategories Content - Adaptive Grid Layout */
.mega-menu-content {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr)) !important;
    align-content: start;
    justify-items: center;
    justify-content: center;
    padding: 25px;
    gap: 15px;
    min-height: 280px;
    max-width: calc(5 * 180px + 4 * 15px) !important;
    margin: 0 auto !important;
}

/* Subcategory Items - Card Style with Image */
.mega-menu-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 180px;
    padding: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    text-align: center;
}

.mega-menu-column:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Subcategory Image - Larger and Prominent */
.subcategory-image {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcategory-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.subcategory-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mega-menu-column:hover .subcategory-image img {
    transform: scale(1.08);
}

/* Subcategory Title - Button Style */
.mega-menu-column h4 {
    margin: 0;
    padding: 0;
    width: 100%;
}

.mega-menu-column h4 a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    background: var(--primary-color);
    border-radius: 8px;
    text-align: center;
}

.mega-menu-column h4 a:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Final Mega Panel width override */
#megaPanel.mega-panel,
#megaPanel.mega-panel.visible {
    left: 50% !important;
    right: auto !important;
    width: auto !important;
    max-width: 1040px !important;
    min-width: 980px !important;
    transform: translate(-50%, 0) !important;
    margin: 0 auto !important;
}
#megaPanel.mega-panel .mega-panel-content {
    width: 100% !important;
    max-width: 1040px !important;
    overflow-x: hidden !important;
}
#megaPanel.mega-panel .mega-menu-content {
    grid-template-columns: repeat(5, minmax(180px, 1fr)) !important;
    max-width: 100% !important;
}

/* Hide sub-subcategory lists */
.mega-menu-column ul {
    display: none;
}

/* Empty Mega Menu - Categories without subcategories */
.mega-menu-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    padding: 30px;
}

.mega-menu-empty .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.mega-menu-empty .view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mega-menu-empty .view-all-btn i {
    font-size: 18px;
}

/* Hide old structures */
.mega-list {
	display: none !important;
}

@media (max-width: 1199px) {
    .cats-row {
        gap: 4px;
        padding: 4px 0;
    }
    
    .nav-item {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: 20px;
        gap: 12px;
    }
    
    .mega-menu-column {
        max-width: 160px;
        padding: 12px;
    }
    
    .subcategory-image {
        height: 80px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .cats-row {
        display: none !important;
    }
    
    .nav-item {
        display: none !important;
    }
    
    .mega-panel {
        display: none !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

/* Final override for ledatak desktop nav based on reference layout */
.desktop-nav {
    padding: 0 !important;
    display: block !important;
    position: relative !important;
    box-shadow: none !important;
    background: transparent !important;
    border-bottom: none !important;
}

.desktop-nav .container {
    max-width: 1240px !important;
    position: relative !important;
    padding: 10px 0 18px 0 !important;
}

.desktop-nav .container::before {
    content: "" !important;
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 6px !important;
    bottom: 6px !important;
    background: rgba(255,255,255,0.92) !important;
    border-radius: 34px !important;
    box-shadow: inset 0 -12px 40px rgba(0,0,0,0.03), 0 4px 18px rgba(0,0,0,0.04) !important;
    z-index: 0 !important;
}

.menu-wrapper .desktop-nav-list {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-auto-flow: row !important;
    grid-template-columns: repeat(7, minmax(0, auto)) !important;
    justify-content: center !important;
    gap: 12px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 18px 24px !important;
    background: transparent !important;
}

.menu-wrapper .desktop-nav-list .nav-item {
    position: relative !important;
}

.menu-wrapper .desktop-nav-list .nav-item a,
.menu-wrapper .desktop-nav-list .nav-item .category-name {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    text-decoration: none !important;
    background: linear-gradient(180deg, #61b3ff 0%, #1f83de 100%) !important;
    border-radius: 32px !important;
    min-height: 48px !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    box-shadow: 0 14px 34px rgba(1,44,84,0.20) !important;
    transition: transform .18s ease, background .18s ease, color .18s ease !important;
}

@media (min-width: 1200px) {
    .menu-wrapper .desktop-nav-list {
        display: grid !important;
        grid-template-columns: repeat(7, minmax(0, auto)) !important;
        justify-content: center !important;
        gap: 12px !important;
    }
}

.menu-wrapper .desktop-nav-list .nav-item a:hover,
.menu-wrapper .desktop-nav-list .nav-item .category-name:hover {
    transform: translateY(-2px) !important;
}

.menu-wrapper .desktop-nav-list .nav-item a.active,
.menu-wrapper .desktop-nav-list .nav-item a.active:hover {
    background: linear-gradient(180deg, #8cc9ff 0%, #4a97ec 100%) !important;
    color: #fff !important;
    box-shadow: 0 18px 40px rgba(47,143,228,0.18) !important;
}

.menu-wrapper .desktop-nav-list .nav-item.has-mega > .category-name {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-wrapper .category-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.22) !important;
    color: #fff !important;
}

/* Hide old desktop-nav-list structure (not used in new cats-row structure) */
.desktop-nav-list {
    display: none !important;
}

.desktop-nav-list .nav-item {
    display: none !important;
}
@media (max-width: 480px) {
	.quantity-selector .qty-btn {
		width: 44px !important;
	}
	.moq-badge {
		margin: 0;
	}
}