/**
 * e market – Custom styles matching reference design.
 * GPU-composited transitions (transform/opacity only) for 120 fps.
 */

/* ================================================================
   VARIABLES — Premium design system
   ================================================================ */
   :root {
	--primary: #256f32;
	--primary-dark: #1d5a27;
	--accent: #256f32;
	--accent-dark: #1d5a27;
	--accent-light: #e8f5e9;
	--hdr-bg: #ffffff;
	--red: #256f32;
	--red-dark: #1d5a27;
	--green: #256f32;
	--blue: #173050;
	--orange: #256f32;
	--text: #1a1a1a;
	--text-light: #4a4a4a;
	--text-muted: #737373;
	--border: #e5e5e5;
	--surface: #f8f9fa;
	--surface-elevated: #fff;
	--ease: cubic-bezier(.4, 0, .2, 1);
	--ease-out: cubic-bezier(0, 0, .15, 1);
	/* Typography */
	--font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	/* Shadows — premium, layered */
	--shadow-xs: 0 1px 3px rgba(0, 0, 0, .05);
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
	--shadow-md: 0 6px 24px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .05);
	--shadow-lg: 0 14px 44px rgba(0, 0, 0, .1), 0 6px 16px rgba(0, 0, 0, .06);
	--shadow-xl: 0 28px 60px rgba(0, 0, 0, .12), 0 10px 24px rgba(0, 0, 0, .06);
	/* Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
}
.btn-search-submit:active {
	transform: scale(0.98);
}

/* Mobile: search icon toggle (replaces input until clicked) */
.header-search-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: var(--radius-md);
	color: var(--primary);
	font-size: 1.25rem;
	cursor: pointer;
	transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
	flex-shrink: 0;
}
.header-search-toggle:hover {
	background: var(--accent-light);
	border-color: var(--accent);
	color: var(--accent);
}
@media (max-width: 991.98px) {
	.header-search-toggle {
		display: flex;
	}
	.header-search-mobile-wrap {
		display: flex;
		align-items: center;
		gap: 8px;
		flex: 0 0 0;
		min-width: 0;
		max-width: 0;
		opacity: 0;
		overflow: hidden;
		transition: flex .3s var(--ease), max-width .3s var(--ease), opacity .3s var(--ease);
	}
	.header-search-mobile-wrap .header-search-group {
		flex: 1;
		min-width: 0;
		opacity: 0;
		transition: opacity .25s var(--ease) .05s;
	}
	.header-search-close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		min-width: 42px;
		padding: 0;
		border: none;
		background: var(--surface);
		border-radius: var(--radius-md);
		color: var(--text);
		font-size: 1.1rem;
		cursor: pointer;
		flex-shrink: 0;
	}
	.header-search-close:hover {
		background: var(--border);
		color: var(--text);
	}
	/* When search open: full width form, hide logo/menu/icons */
	.header-search-cart.is-search-open .header-search-cart__menu-btn,
	.header-search-cart.is-search-open .header-search-cart__logo,
	.header-search-cart.is-search-open .header-search-toggle,
	.header-search-cart.is-search-open .header-search-cart__right,
	.header-search-cart.is-search-open .header-search-cart__mobile-icons {
		display: none !important;
	}
	.header-search-cart.is-search-open .header-search-mobile-wrap {
		flex: 1 1 100%;
		max-width: 100%;
		min-width: 0;
		opacity: 1;
	}
	.header-search-cart.is-search-open .header-search-mobile-wrap .header-search-group {
		opacity: 1;
	}
}
@media (min-width: 992px) {
	.header-search-close {
		display: none !important;
	}
	.header-search-mobile-wrap {
		flex: 1;
		min-width: 0;
		max-width: none;
		opacity: 1;
	}
}
/* ================================================================
   GLOBAL — Premium base
   ================================================================ */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	color: var(--text);
	background: var(--surface);
}

*,
*::before,
*::after {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   ROW 1 — MAIN NAVIGATION
   ================================================================ */
.header-navigation {
	background: var(--surface-elevated);
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow-xs);
}

/* Logo */
.site-brand {
	flex-shrink: 0;
}

/* Footer mobile view — 2 columns per row */
@media (max-width: 767.98px) {
	.footer-top .row {
		display: flex;
		flex-wrap: wrap;
	}
	.footer-top [class*="col-"] {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.footer-top .col-lg-4 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	/* Instagram heading: only underline under INSTAGRAM */
	.footer-heading--instagram {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 10px;
	}
	.footer-heading--instagram .footer-heading-underline {
		border-bottom: 2px solid var(--accent);
		padding-bottom: 2px;
	}

	/* Gallery: large left (~2/3), 4 small right (2x2) */
	.footer-gallery {
		grid-template-columns: 2fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 6px;
	}
	.footer-gallery-item--large {
		grid-column: 1;
		grid-row: 1 / 3;
		aspect-ratio: auto;
		min-height: 100%;
	}
	.footer-gallery-item:not(.footer-gallery-item--large) {
		aspect-ratio: 1;
	}

	/* Footer mid: wrap links, smaller text */
	.footer-nav-wrap {
		font-size: .72rem;
		text-align: left;
		line-height: 2;
	}
	.footer-sep {
		margin: 0 4px;
	}

	/* Payment logos: compact, subtle */
	.footer-payments .container {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
	.footer-payment-logos {
		gap: 8px;
	}
	.payment-logo {
		font-size: .7rem;
		padding: 5px 10px;
		filter: grayscale(0.4);
	}
}
.site-logo-img {
	height: 72px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* Nav links */
.nav-link-item {
	color: var(--primary) !important;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: .06em;
	padding: 10px 14px;
	transition: color .2s var(--ease);
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-link-item:hover {
	color: var(--accent) !important;
}

.nav-link-item .bi-chevron-down {
	font-size: .6rem;
}
.product-sidebar-list__img-wrap {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--surface);
}


.product-sidebar-list__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Nav dropdown wrapper */
.nav-dropdown {
	position: relative;
}
.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--surface-elevated);
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
	z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-dropdown-menu li a {
	display: block;
	padding: 9px 20px;
	color: var(--text);
	text-decoration: none;
	font-size: .84rem;
	font-weight: 500;
	transition: background .12s var(--ease), color .12s var(--ease), padding-left .12s var(--ease);
}
.nav-dropdown-menu li a:hover {
	background: var(--accent-light);
	color: var(--accent);
	padding-left: 24px;
}

/* Badges */
.nav-link-item.position-relative {
	padding-top: 14px;
}

.nav-badge {
	position: absolute;
	top: -2px;
	left: 50%;
	transform: translateX(-50%);
	font-size: .6rem;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 8px;
	white-space: nowrap;
	line-height: 1.2;
}

.nav-badge-hot {
	background: #EE4036;
	color: #fff;
}

.nav-badge-new {
	background: var(--accent);
	color: #fff;
}

/* Login / Hotline */
.header-action-link {
	color: var(--primary);
	text-decoration: none;
	font-size: .84rem;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color .15s var(--ease);
}

.header-action-link:hover {
	color: var(--accent);
}

.header-sep {
	color: #ddd;
	user-select: none;
}

/* ================================================================
   ROW 2 — SEARCH & CART BAR
   ================================================================ */
.header-search-cart {
	background: var(--surface-elevated);
	padding: 14px 0;
	box-shadow: 0 1px 0 var(--border);
}

/* ALL CATEGORIES button — matches col-lg-3 categories column */
.btn-all-categories {
	background: var(--primary);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: .875rem;
	font-family: var(--font);
	letter-spacing: .04em;
	padding: 12px 20px;
	border-radius: var(--radius-md);
	white-space: nowrap;
	min-width: 280px;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
	transition: background .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.btn-all-categories:hover {
	background: var(--primary-dark);
	color: #fff;
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}

.btn-all-categories .bi-chevron-down {
	font-size: .6rem;
}

/* Mobile: hamburger menu button (categories sidebar trigger) */
.btn-all-categories--mobile {
	min-width: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	flex-shrink: 0;
	border-radius: var(--radius-md);
}
.btn-all-categories--mobile .bi-list {
	font-size: 1.35rem;
}

/* Mobile header: cart + wishlist icons */
.header-mobile-icons {
	flex-shrink: 0;
	gap: 6px;
}
.header-mobile-icons .header-icon-link {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--primary);
	transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.header-mobile-icons .header-icon-link:hover {
	background: var(--accent-light);
	border-color: var(--accent);
	color: var(--accent);
}
.header-cart-link--mobile .header-cart-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

/* Left group (logo + search) */
.search-left-group {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Search group — premium pill style */
.header-search-group {
	background: var(--surface-elevated);
	border: 1px solid var(--border);
	border-radius: 999px;
	overflow: hidden;
	height: 48px;
	flex: 1;
	min-width: 200px;
	max-width: 720px;
	box-shadow: var(--shadow-xs);
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.header-search-group:focus-within {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(37, 111, 50, .12);
}

.search-category-label {
	display: flex;
	align-items: center;
	padding: 0 14px;
	font-size: .875rem;
	color: var(--text-light);
	border-right: 1px solid var(--border);
	white-space: nowrap;
	background: #fff;
}

.search-input {
	border: none;
	outline: none;
	padding: 0 14px;
	font-size: .875rem;
	flex: 1;
	min-width: 0;
}

.btn-search-submit {
	background: var(--accent);
	color: #fff;
	border: none;
	width: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	cursor: pointer;
	transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn-search-submit:hover {
	background: var(--accent-dark);
}
.btn-search-submit:active {
	transform: scale(0.98);
}

/* Right icons */
.header-icon-link {
	color: var(--primary);
	font-size: 1.25rem;
	transition: color .15s var(--ease);
}

.header-icon-link:hover {
	color: var(--accent);
}

/* Cart */
.header-cart-link {
	color: var(--primary);
}

.header-cart-link:hover {
	color: var(--primary);
}

.header-cart-icon {
	width: 44px;
	height: 44px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
	font-size: 1rem;
	color: #fff;
	box-shadow: var(--shadow-sm);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.header-cart-link:hover .header-cart-icon {
	transform: scale(1.05);
	box-shadow: var(--shadow-md);
}
.header-cart-count,
.header-wishlist-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: #fff;
	color: var(--primary);
	font-size: .65rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-xs);
}
.header-wishlist-count.d-none { display: none !important; }
.header-wishlist-count:not(.d-none) { display: flex !important; }


.header-cart-text {
	font-size: .9rem;
	font-weight: 600;
	color: var(--primary);
	white-space: nowrap;
}

.header-cart-total {
	color: var(--accent);
}

/* ================================================================
   LEFT COLUMN — CATEGORIES (always visible on desktop)
   ================================================================ */
.categories-column {
	background: var(--surface-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.categories-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.categories-column li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	color: var(--text);
	text-decoration: none;
	font-size: .875rem;
	border-bottom: 1px solid #f2f2f2;
	transition: background .12s var(--ease), color .12s var(--ease);
}

.categories-column li a:hover {
	background: #f8f8f8;
	color: var(--red);
}

.categories-column li a span {
	display: flex;
	align-items: center;
	gap: 10px;
}

.categories-column li a i {
	font-size: .9rem;
}

.categories-column li a .bi-chevron-right {
	font-size: .65rem;
	color: #aaa;
}

.categories-column li.more-categories a {
	color: var(--red);
	font-weight: 600;
	border-bottom: none;
}

.categories-column li.more-categories a i {
	color: var(--red);
}

/* Subcategories: hidden by default, show on parent hover */
.categories-column li.has-subcategories {
	position: relative;
}

.categories-column .subcategories {
	display: none;
	background: #f8f9fa;
	border-top: 1px solid #eee;
	padding: 4px 0 4px 12px;
}

.categories-column li.has-subcategories:hover .subcategories {
	display: block;
}

.categories-column .subcategories li {
	border-bottom: none;
}

.categories-column .subcategories li a {
	padding: 6px 12px;
	font-size: .8125rem;
	border-bottom: none;
	color: var(--text);
}

.categories-column .subcategories li a:hover {
	background: #eee;
	color: var(--red);
}

/* ================================================================
   PRODUCT DETAIL — Premium sidebar (Shop by Category + subcategories)
   ================================================================ */
.product-sidebar-card {
	background: var(--surface-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.product-sidebar-card__header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 16px 20px;
	border-bottom: none;
}

.product-sidebar-card__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #fff;
	text-transform: uppercase;
}


.product-sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-sidebar-list__item {
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.product-sidebar-list__item:last-of-type {
	border-bottom: none;
}

.product-sidebar-list__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	color: var(--text);
	text-decoration: none;
	font-size: .9rem;
	font-weight: 500;
	transition: background .2s var(--ease), color .2s var(--ease), padding-left .2s var(--ease);
}

.product-sidebar-list__link:hover {
	background: rgba(23, 48, 80, .06);
	color: var(--primary);
}

.product-sidebar-list__item--has-children .product-sidebar-list__link:hover {
	padding-left: 24px;
}

.product-sidebar-list__label {
	flex: 1;
	min-width: 0;
}

.product-sidebar-list__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	font-size: .75rem;
	font-weight: 600;
	color: var(--text-muted);
	background: var(--surface);
	border-radius: 999px;
	line-height: 1;
}

.product-sidebar-list__link:hover .product-sidebar-list__count {
	background: rgba(23, 48, 80, .1);
	color: var(--primary);
}

.product-sidebar-list__icon {
	font-size: .7rem;
	color: var(--text-muted);
	transition: transform .25s var(--ease), color .2s var(--ease);
}

.product-sidebar-list__item--has-children:hover .product-sidebar-list__icon {
	transform: translateX(3px);
	color: var(--primary);
}
/* Site loader — full screen, white bg, centered icon, ~2s on load */
.site-loader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.site-loader.site-loader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.site-loader__inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-loader__icon {
	width: 80px;
	height: 80px;
	object-fit: contain;
	animation: site-loader-pulse 1s ease-in-out infinite;
}
@keyframes site-loader-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.85; transform: scale(1.05); }
}
/* Subcategories panel — smooth reveal on parent hover */
.product-sidebar-sub {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 12px 0 20px;
	margin-top:10px ;
	transition: max-height .3s var(--ease), opacity .25s var(--ease), padding .25s var(--ease);
}

.product-sidebar-list__item--has-children:hover .product-sidebar-sub {
	max-height: 400px;
	opacity: 1;
	padding: 0 12px 12px 20px;
}

.product-sidebar-sub__list {
	list-style: none;
	margin: 0;
	padding: 0;
	background: rgba(23, 48, 80, .04);
	border-radius: var(--radius-md);
	border-left: 3px solid var(--accent);
	box-shadow: var(--shadow-xs);
	overflow: hidden;
}

.product-sidebar-sub__item {
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.product-sidebar-sub__item:last-child {
	border-bottom: none;
}

.product-sidebar-sub__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px 10px 12px;
	color: var(--text);
	text-decoration: none;
	font-size: .8125rem;
	font-weight: 500;
	transition: background .2s var(--ease), color .2s var(--ease);
}

.product-sidebar-sub__link:hover {
	background: rgba(46, 139, 62, .08);
	color: var(--accent-dark);
}

.product-sidebar-sub__dot {
	font-size: 1.2em;
	color: var(--accent);
	line-height: 0;
}

.product-sidebar-sub__count {
	margin-left: auto;
	font-size: .75rem;
	font-weight: 600;
	color: var(--text-muted);
}

.product-sidebar-sub__link:hover .product-sidebar-sub__count {
	color: var(--accent-dark);
}

/* View all products CTA */
.product-sidebar-list__item--more {
	margin-top: 4px;
}

.product-sidebar-list__link--more {
	justify-content: center;
	gap: 8px;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	padding: 12px 16px;
	width: 100%;
	outline: none;
	border: none;
}

.product-sidebar-list__link--more:focus,
.product-sidebar-list__link--more:focus-visible {
	outline: none;
	box-shadow: none;
}

.product-sidebar-list__link--more:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.product-sidebar-list__link--more i {
	font-size: 1rem;
}

/* Product detail page — left sidebar gap + banner under categories */
.product-detail-layout-row {
	gap: 0 28px;
}
@media (min-width: 992px) {
	.product-detail-sidebar-col {
		padding-right: 0;
	}
	.product-detail-content.col-lg-9 {
		padding-left: 0;
	}
}
.product-detail-sidebar-banner {
	margin-top: 20px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
}
.product-detail-sidebar-banner-link {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	max-height: 320px;
}
.product-detail-sidebar-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s var(--ease);
}
.product-detail-sidebar-banner-link:hover .product-detail-sidebar-banner-img {
	transform: scale(1.04);
}
.product-detail-sidebar-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 20px 16px;
	color: #fff;
	text-align: center;
}
.product-detail-sidebar-banner-text {
	font-size: .9rem;
	font-weight: 600;
	font-family: var(--font);
	margin-bottom: 4px;
	text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.product-detail-sidebar-banner-cta {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	opacity: .95;
}

/* ================================================================
   HOME — Categories slider section (top full-width)
   ================================================================ */
.home-categories-slider-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}
/* Pull slider edge-to-edge: cancel container padding so image has no side gaps */
.home-categories-slider__swiper-wrap {
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
	max-width: none;
}
.home-categories-slider__swiper {
	width: 100%;
	height: 260px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	padding: 0;
}
.home-categories-slider__swiper .swiper-wrapper,
.home-categories-slider__swiper .swiper-slide {
	padding: 0;
	box-sizing: border-box;
}
.home-categories-slider__swiper .swiper-slide { height: 100%; }
.home-categories-slider__slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f0f0f0;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.home-categories-slider__tabs-wrap { margin-bottom: 20px; }
.home-categories-slider__tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 8px;
}
.home-categories-slider__tab {
	flex-shrink: 0;
	padding: 8px 16px;
	font-size: .9rem;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: #fff;
	cursor: pointer;
	white-space: nowrap;
}
.home-categories-slider__tab.active {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
}
.home-categories-slider__products-panel { display: none; }
.home-categories-slider__products-panel.active { display: block; }

/* ================================================================
   CENTER — HERO SLIDER (Swiper)
   ================================================================ */
.hero-swiper {
	width: 100%;
	max-width: 100%;
	height: 280px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	padding: 0;
}
@media (max-width: 575.98px) {
	.hero-swiper {
		height: 200px;
		border-radius: var(--radius-md);
	}
}
@media (min-width: 768px) {
	.hero-swiper {
		height: 300px;
	}
}
.hero-swiper .swiper-wrapper {
	padding: 0;
	box-sizing: border-box;
}
.hero-swiper .swiper-slide {
	height: 100%;
	padding: 0;
	box-sizing: border-box;
}

.hero-slide {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f5f5f5;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.hero-slide-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Hero banner below slider — responsive */
.hero-swiper + .col-12 img,
.hero-swiper + [class*="col-"] img {
	max-width: 100%;
	height: auto;
	display: block;
}

.hero-slide--1 { background-image: url('../images/slider-1.jpg'); }
.hero-slide--2 { background-image: url('../images/slider-2.jpg'); }
.hero-slide--3 { background-image: url('../images/slider-3.jpg'); }

.hero-slide-content {
	padding: 40px;
	max-width: 60%;
	z-index: 2;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-style: italic;
	color: var(--text);
	margin-bottom: 4px;
	font-family: Georgia, 'Times New Roman', serif;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--red);
	line-height: 1.05;
	margin-bottom: 12px;
	font-style: italic;
	font-family: Georgia, 'Times New Roman', serif;
	letter-spacing: -0.02em;
	text-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.hero-desc {
	font-size: .85rem;
	color: var(--text-light);
	line-height: 1.5;
	margin-bottom: 20px;
	font-style: italic;
}

.btn-hero {
	background: var(--primary);
	color: #fff;
	padding: 12px 28px;
	border-radius: var(--radius-md);
	font-size: .9rem;
	font-weight: 600;
	font-family: var(--font);
	letter-spacing: .03em;
	text-decoration: none;
	display: inline-block;
	box-shadow: var(--shadow-sm);
	transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.btn-hero:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Swiper pagination dots */
.hero-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(0,0,0,.25);
	opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
	background: var(--red);
}

/* ================================================================
   RIGHT — SIDE CARDS (Pillows + Interior)
   ================================================================ */

.slider-side-cards {
	height: 100%;
}

.side-card {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 120px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.side-card-pillows {
	background-color: #ece6db;
	background-image: linear-gradient(145deg, #f7f4ef 0%, #ece6db 100%);
}

.side-card-sofa {
	background: linear-gradient(145deg, #eae6e0 0%, #ddd7cf 100%);
}

.side-card-content {
	text-align: center;
	padding: 24px 20px;
}

.side-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.3;
}

.side-card-price {
	font-size: .9rem;
	color: var(--text-light);
	margin-bottom: 0;
}

.side-card-price span {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text);
}

.side-card-price sup {
	font-size: .7rem;
	vertical-align: super;
}

.side-card-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 4px;
}

.side-card-link {
	color: var(--blue);
	font-size: .875rem;
	text-decoration: none;
	transition: opacity .15s var(--ease);
}

.side-card-link:hover {
	text-decoration: underline;
	opacity: .85;
}

/* ================================================================
   BEST OFFERS BANNER (under deals section) — same design as hero banner
   ================================================================ */
.best-offers-banner-section {
    width: 100%;
    /* Ensure it's visible on smaller screens */
    display: block;
}

.best-offers-banner-link {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.best-offers-banner-link:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Ensure banner image is fully responsive */
.best-offers-banner-link img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensures image doesn't overflow */
}

/* Add media query for mobile responsiveness */
@media (max-width: 768px) {
    .best-offers-banner-section {
        padding: 0;  /* Remove padding if any */
        width: 100%;
        text-align: center;
    }

    .best-offers-banner-link img {
        width: 100%;
        height: auto;
    }
}

/* ================================================================
   PRODUCT SLIDER + PREMIUM CARDS
   ================================================================ */
/* Section heading bar — dark label + accent underline */
.section-heading-bar {
	border-bottom: 2px solid var(--accent);
	padding-bottom: 0;
}
.section-heading {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	font-family: var(--font);
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 12px 20px;
	margin: 0;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	box-shadow: var(--shadow-sm);
}

.btn-slider-nav {
	padding: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	color: var(--text-muted);
	background: var(--surface-elevated);
	font-size: .75rem;
	box-shadow: var(--shadow-xs);
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-slider-nav:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	box-shadow: var(--shadow-sm);
}

/* Swiper overrides */
.product-swiper { overflow: hidden; padding-bottom: 4px; }

/* Card link wrapper — entire card clicks to product details */
.product-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.product-card-link:hover {
	color: inherit;
}
.product-card-link .product-actions {
	position: relative;
	z-index: 2;
}

.trending-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.trending-card-link:hover {
	color: inherit;
}
.trending-card-link .product-actions {
	position: relative;
	z-index: 2;
}

/* Card — horizontal layout, premium */
.product-card {
	background: var(--surface-elevated);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
	position: relative;
	display: flex;
	flex-direction: row;
	transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .2s var(--ease);
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(0,0,0,.06);
}

/* Image — left side */
.product-card-image {
	position: relative;
	overflow: hidden;
	width: 42%;
	flex-shrink: 0;
}
.product-card-image img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s var(--ease);
}
.product-card:hover .product-card-image img {
	transform: scale(1.06);
}

/* Badge (discount / new) */
.product-badge {
	color: #EE4036;
	font-size: .68rem;
	font-weight: 700;
	font-family: var(--font);

}
.product-badge--new {
	background: var(--green);
}
.product-badge--sold-out {
	background: #6c757d;
}
.product-badge--sold {


}

/* Action buttons (heart + cart) — stacked on right of image */
.product-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 3;
}
.product-action-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--text);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.product-action-btn:hover {
	color: var(--accent);
	background: #fff;
	transform: scale(1.08);
	box-shadow: var(--shadow-md);
}
.product-fav.is-active {
	color: #EE4036;
}
.product-fav.is-active i::before {
	content: "\f415"; /* bi-heart-fill */
}

/* Body — right side */
.product-card-body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-card-category {
	font-size: .7rem;
	color: #aaa;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 4px;
	display: block;
}

.product-card-title {
	font-size: .95rem;
	font-weight: 700;
	font-family: var(--font);
	color: var(--text);
	margin-bottom: 4px;
	line-height: 1.35;
	letter-spacing: .01em;
}

.product-card-desc {
	font-size: .78rem;
	color: #888;
	line-height: 1.45;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Pricing */
.product-card-pricing {
	display: flex; align-items: center; gap: 8px;
	margin-bottom: 6px;
}
.product-price {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--accent);
}
.product-price-old {
	font-size: .85rem;
	color: #bbb;
	text-decoration: line-through;
}
.btn-add-to-cart-product {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	margin-top: 10px;
	padding: 8px 14px;
	font-size: .85rem;
	font-weight: 600;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background .2s var(--ease), transform .15s var(--ease);
}
.btn-add-to-cart-product:hover {
	background: var(--accent-dark);
	color: #fff;
	transform: translateY(-1px);
}

/* Rating */
.product-card-rating {
	display: flex; align-items: center; gap: 2px;
	margin-bottom: 0;
}
.product-card-rating i {
	font-size: .75rem;
	color: #f5a623;
}
.product-card-rating .bi-star {
	color: #ddd;
}
.product-reviews {
	font-size: .72rem;
	color: #aaa;
	margin-left: 4px;
}


/* Gradient bottom bar — spans full card width */
.product-card-gradient {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, #66bb6a 100%);
}

/* ================================================================
   FEATURES STRIP — 4-column service highlights
   ================================================================ */
.features-strip {
	background: var(--surface-elevated);
	padding: 0;
	overflow: hidden;
}
.features-strip .container {
	max-width: 100%;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 26px;
	position: relative;
}
/* vertical divider between items */
.features-strip .col-lg-3:not(:last-child) .feature-item::after {
	content: '';
	position: absolute;
	right: 0;
	top: 22%;
	height: 56%;
	width: 1px;
	background: var(--border);
}
.feature-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--accent);
	background: var(--accent-light);
	border-radius: var(--radius-sm);
}
.feature-text h6 {
	margin: 0;
	font-size: .875rem;
	font-weight: 700;
	font-family: var(--font);
	color: var(--text);
	line-height: 1.35;
	letter-spacing: .02em;
}
.feature-text p {
	margin: 0;
	font-size: .78rem;
	color: var(--text-muted);
	line-height: 1.45;
}
@media (max-width: 991.98px) {
	.features-strip .col-lg-3:not(:last-child) .feature-item::after {
		display: none;
	}
	.feature-item {
		padding: 16px 18px;
	}
}

/* ================================================================
   TRENDING ITEMS — vertical product grid, 5 per row
   ================================================================ */

/* Tab filters beside heading */
.trending-tabs {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.trending-tabs::-webkit-scrollbar { display: none; }
.trending-tabs li a {
	display: inline-block;
	padding: 10px 18px;
	font-size: .8rem;
	font-weight: 600;
	color: #666;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition: color .15s var(--ease), border-color .15s var(--ease);
}
.trending-tabs li a:hover,
.trending-tabs li a.active {
	color: var(--accent);
}

.detail-inner-row {
	margin-left: 20px;
}
@media (max-width: 991.98px) {
	.detail-inner-row {
		margin-left: 0;
	}
}

/* 5-col grid using Bootstrap's col-xl (auto equal width) */
.trending-grid .trending-col {
	flex: 0 0 20%;
	max-width: 20%;
}

/* Card */
.trending-card {
	background: var(--surface-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
	transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .2s var(--ease);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.trending-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

/* Image */
.trending-card-image {
	position: relative;
	overflow: hidden;
	background: #f8f8f8;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-height: 200px;
}
.trending-card-image img {
	width: 100%;
	height: 100%;
	min-width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	vertical-align: middle;
	transition: transform .35s var(--ease);
	position: relative;
	z-index: 0;
}
.trending-card:hover .trending-card-image img {
	transform: scale(1.06);
}

/* Wishlist button on image — always visible */
.trending-card-image .product-actions {
	opacity: 1;
	position: absolute;
	z-index: 3;
	top: 10px;
	right: 10px;
}

/* Body */
.trending-card-body {
	padding: 16px 18px 20px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid var(--border);
}
.trending-card-title {
	font-size: .85rem;
	font-weight: 600;
	font-family: var(--font);
	color: var(--text);
	margin: 0 0 6px;
	line-height: 1.4;
	letter-spacing: .01em;
}
.trending-card-rating {
	display: flex; align-items: center; gap: 2px;
	margin-bottom: 8px;
}
.trending-card-rating i {
	font-size: .7rem;
	color: #f5a623;
}
.trending-card-rating .bi-star {
	color: #ddd;
}
.trending-card-price {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--accent);
}
.trending-card-pricing {
	display: flex; align-items: center; gap: 8px;
}
.trending-card-price-old {
	font-size: .82rem;
	color: #bbb;
	text-decoration: line-through;
}
.trending-card-body .btn-add-to-cart-product {
	margin-top: 10px;
	padding-top: 10px;
}

/* Responsive — break 5-col at smaller screens */
@media (max-width: 1199.98px) {
	.trending-grid .trending-col {
		flex: 0 0 25%;
		max-width: 25%;
	}
}
@media (max-width: 991.98px) {
	.trending-grid .trending-col {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
	.trending-section .section-heading-bar .d-flex {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 0 !important;
	}
	.trending-tabs {
		border-top: 1px solid #eee;
		width: 100%;
		padding-top: 4px;
	}
	.trending-tabs li a {
		padding: 8px 14px;
		font-size: .78rem;
	}
}
@media (max-width: 575.98px) {
	.trending-grid .trending-col {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.trending-grid {
		row-gap: 12px !important;
	}
	.trending-card-image {
		aspect-ratio: 1 / 1;
	}
	.trending-card-image img {
		object-fit: cover;
	}
	.trending-card-body {
		padding: 10px 10px 14px;
	}
	.trending-card-title {
		font-size: .78rem;
	}
	.trending-card-price {
		font-size: .9rem;
	}
	.trending-card-rating i {
		font-size: .6rem;
	}
}

/* ================================================================
   PROMO BANNER (Gift Special) — matches reference: red label, gray bg
   ================================================================ */
.promo-banner {
	background: var(--surface);
	color: var(--text);
	padding: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-xs);
}

.promo-banner > .container {
	padding: 0;
}

.promo-banner .d-flex {
	gap: 0 !important;
}

.promo-label {
	background: var(--red);
	color: #fff;
	padding: 14px 22px;
	font-weight: 700;
	font-size: .95rem;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	border-radius: 6px 0 0 6px;
}

.promo-label i {
	font-size: 1.2rem;
}

.promo-text {
	font-size: .9rem;
	color: var(--text);
	padding: 0 20px;
}

.promo-text strong {
	color: var(--red);
	font-weight: 700;
}

.btn-promo {
	background: transparent;
	color: var(--red);
	border: 2px solid var(--red);
	padding: 8px 22px;
	border-radius: 4px;
	font-size: .85rem;
	font-weight: 600;
	white-space: nowrap;
	margin-right: 16px;
	flex-shrink: 0;
	transition: background .15s var(--ease), color .15s var(--ease);
}

.btn-promo:hover {
	background: var(--red);
	color: #fff;
}

/* ================================================================
   FLOATING SIDEBAR
   ================================================================ */
.floating-sidebar {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1030;
	display: flex;
	flex-direction: column;
	border-radius: 6px 0 0 6px;
	overflow: hidden;
	box-shadow: -2px 0 12px rgba(0, 0, 0, .1);
}

.floating-sidebar-item {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--red);
	color: #fff !important;
	text-decoration: none;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	transition: background .15s var(--ease);
}

.floating-sidebar-item:hover {
	background: var(--red-dark);
	color: #fff !important;
}

.floating-sidebar-item:last-child {
	border-bottom: none;
}

.floating-sidebar-item--star {
	background: #ffc107;
}

.floating-sidebar-item--star:hover {
	background: #e0a800;
}

.floating-sidebar-item--top {
	background: var(--green);
}

.floating-sidebar-item--top:hover {
	background: #4a9b41;
}

/* ================================================================
   FLOATING CHAT
   ================================================================ */
.floating-chat {
	position: fixed;
	bottom: 20px;
	right: 56px;
	z-index: 1025;
}

/* ================================================================
   MOBILE SIDEBAR — off-canvas from left
   ================================================================ */
.mobile-sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 1040;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.mobile-sidebar-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.mobile-sidebar {
	position: fixed;
	top: 0; left: 0; bottom: 0;
	width: 280px;
	background: #fff;
	z-index: 1050;
	transform: translateX(-100%);
	transition: transform .3s var(--ease);
	display: flex;
	flex-direction: column;
	box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
.mobile-sidebar.is-open {
	transform: translateX(0);
}

.mobile-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	background: var(--primary);
	color: #fff;
}
.mobile-sidebar-header h5 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
}
.mobile-sidebar-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: opacity .15s var(--ease);
}
.mobile-sidebar-close:hover {
	opacity: .7;
}

.mobile-sidebar-menu {
	list-style: none;
	margin: 0; padding: 0;
	overflow-y: auto;
	flex: 1;
}
.mobile-sidebar-menu li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 20px;
	color: var(--text);
	text-decoration: none;
	font-size: .88rem;
	font-weight: 500;
	border-bottom: 1px solid #f0f0f0;
	transition: background .15s var(--ease), color .15s var(--ease);
}
.mobile-sidebar-menu li a:hover {
	background: var(--accent-light);
	color: var(--accent);
}
.mobile-sidebar-menu li a i {
	font-size: 1.1rem;
	color: #999;
	width: 22px;
	text-align: center;
}
.mobile-sidebar-menu li a:hover i {
	color: var(--accent);
}
.mobile-sidebar-menu li a .mobile-sidebar-cat-img {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}
.mobile-sidebar-menu li a:hover .mobile-sidebar-cat-img {
	opacity: .95;
}

.mobile-sidebar-divider {
	height: 1px;
	background: #eee;
	margin: 4px 0;
}
.mobile-sidebar-section-title {
	padding: 10px 20px 6px;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #aaa;
}
.mobile-nav-links li a {
	font-weight: 600 !important;
}

/* ================================================================
   CART SIDEBAR (opens from left)
   ================================================================ */
.cart-sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 1040;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.cart-sidebar-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.cart-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	max-width: 380px;
	background: var(--surface-elevated);
	z-index: 1050;
	transform: translateX(-100%);
	transition: transform .3s var(--ease);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-xl);
}
.cart-sidebar.is-open {
	transform: translateX(0);
}

.cart-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	background: var(--primary);
	color: #fff;
}
.cart-sidebar-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
}
.cart-sidebar-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: opacity .15s var(--ease);
}
.cart-sidebar-close:hover {
	opacity: .8;
}

.cart-sidebar-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.cart-sidebar-items {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

.cart-sidebar-empty {
	text-align: center;
	padding: 40px 20px;
}
.cart-sidebar-empty i {
	font-size: 3rem;
	color: #ddd;
	display: block;
	margin-bottom: 12px;
}
.cart-sidebar-empty p {
	margin: 0 0 16px;
	color: var(--text-light);
	font-size: .9rem;
}

.btn-cart-sidebar {
	display: inline-block;
	padding: 10px 24px;
	background: var(--accent);
	color: #fff !important;
	border-radius: 6px;
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s var(--ease);
}
.btn-cart-sidebar:hover {
	background: var(--accent-dark);
	color: #fff !important;
}

.cart-item-list {
	padding: 0;
}
.cart-sidebar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}
.cart-sidebar-item:last-child {
	border-bottom: none;
}
.cart-item-link {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
	text-decoration: none;
	color: var(--text);
	transition: color .15s var(--ease);
}
.cart-item-link:hover {
	color: var(--accent);
}
.cart-item-image {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	background: #f5f5f5;
}
.cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cart-item-details {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.cart-item-name {
	font-size: .88rem;
	font-weight: 600;
	line-height: 1.3;
}
.cart-item-qty {
	font-size: .8rem;
	color: var(--text-light);
}
.cart-item-price {
	color: var(--accent);
	font-weight: 600;
}
.cart-item-remove {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	border-radius: 50%;
	transition: color .15s var(--ease), background .15s var(--ease);
}
.cart-item-remove:hover {
	color: var(--accent);
	background: #f5f5f5;
}

.cart-sidebar-footer {
	padding: 16px 20px;
	border-top: 1px solid var(--border);
	background: var(--surface);
}
.cart-sidebar-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	font-size: .95rem;
}
.cart-sidebar-subtotal strong {
	font-size: 1.1rem;
	color: var(--accent);
}
.cart-sidebar-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.btn-cart-view,
.btn-cart-checkout {
	display: block;
	text-align: center;
	padding: 12px 20px;
	border-radius: var(--radius-md);
	font-size: .9rem;
	font-weight: 600;
	font-family: var(--font);
	text-decoration: none;
	transition: background .2s var(--ease), color .2s var(--ease);
}
.btn-cart-view {
	background: #fff;
	color: var(--primary);
	border: 2px solid var(--primary);
}
.btn-cart-view:hover {
	background: var(--primary);
	color: #fff !important;
}
.btn-cart-checkout {
	background: var(--accent);
	color: #fff !important;
	border: 2px solid var(--accent);
}
.btn-cart-checkout:hover {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	color: #fff !important;
}

/* Cart sidebar — improved design */
.cart-sidebar--improved {
	max-width: 420px;
}
.cart-sidebar--improved .cart-sidebar-header {
	padding: 20px 24px;
}
.cart-sidebar--improved .cart-sidebar-title {
	font-size: 1.25rem;
}
.cart-sidebar--improved .cart-sidebar-body {
	padding: 0;
}
.cart-sidebar--improved .cart-sidebar-items {
	padding: 20px 24px;
}
.cart-sidebar--improved .cart-sidebar-empty {
	padding: 48px 24px;
}
.cart-sidebar--improved .cart-sidebar-empty-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: var(--surface);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-sidebar--improved .cart-sidebar-empty-icon i {
	font-size: 2.5rem;
	color: var(--border);
}
.cart-sidebar--improved .cart-sidebar-empty-text {
	font-size: 1rem;
	color: var(--text-light);
	margin-bottom: 24px;
}
.cart-sidebar--improved .cart-item-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.cart-sidebar--improved .cart-sidebar-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: var(--surface);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	border-bottom: none;
}
.cart-sidebar--improved .cart-sidebar-item:last-child {
	border-bottom: 1px solid var(--border);
}
.cart-sidebar--improved .cart-sidebar-item-thumb {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
	display: block;
}
.cart-sidebar--improved .cart-sidebar-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cart-sidebar--improved .cart-sidebar-item-title {
	font-size: .9rem;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	margin-bottom: 4px;
}
.cart-sidebar--improved .cart-sidebar-item-title:hover {
	color: var(--accent);
}
.cart-sidebar--improved .cart-sidebar-item-meta,
.cart-sidebar-item-meta {
	font-size: .8rem;
	color: var(--text-light);
}
.cart-sidebar-item-color {
	font-weight: 500;
	color: var(--text-light, #6b7280);
}
.cart-sidebar--improved .cart-sidebar-item-total {
	font-weight: 700;
	font-size: .95rem;
	color: var(--accent);
}
.cart-sidebar--improved .cart-item-remove {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--border);
	color: #999;
	font-size: 1.25rem;
	line-height: 1;
	border-radius: 8px;
	cursor: pointer;
	transition: color .15s, background .15s, border-color .15s;
}
.cart-sidebar--improved .cart-item-remove:hover {
	color: #c00;
	border-color: #c00;
	background: #fff5f5;
}
.cart-sidebar--improved .cart-sidebar-footer {
	padding: 20px 24px;
	background: var(--surface);
	border-top: 2px solid var(--border);
}
.cart-sidebar--improved .cart-sidebar-subtotal {
	margin-bottom: 16px;
	font-size: 1rem;
}
.cart-sidebar--improved .cart-sidebar-subtotal strong {
	font-size: 1.2rem;
}
.cart-sidebar--improved .btn-cart-checkout {
	padding: 14px 24px;
	font-size: 1rem;
	border-radius: 8px;
}

/* Checkout page — improved design */
.page-checkout .checkout-main {
	padding: 40px 0 56px;
	background: linear-gradient(180deg, var(--surface) 0%, #f8f9fa 100%);
}
.page-checkout .checkout-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--text);
}
.page-checkout .checkout-row {

}
.page-checkout .checkout-summary-card,
.page-checkout .checkout-form-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0,0,0,.06);
	border: 1px solid var(--border);
	padding: 28px 32px;
}
.page-checkout .checkout-summary-title,
.page-checkout .checkout-form-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent);
	color: var(--text);
}
.page-checkout .checkout-product-list {
	gap: 0;
}
.page-checkout .checkout-product-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
	gap: 16px;
}
.page-checkout .checkout-product-item:last-of-type {
	border-bottom: none;
}
.page-checkout .checkout-product-image {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}
.page-checkout .checkout-product-name {
	font-size: 1rem;
}
.page-checkout .checkout-summary-divider {
	margin: 16px 0;
}
.page-checkout .checkout-summary-row {
	padding: 8px 0;
	font-size: 1rem;
}
.page-checkout .checkout-summary-total {
	font-size: 1.2rem;
	padding: 16px 0 0;
	margin-top: 8px;
	border-top: 2px solid var(--border);
}
.page-checkout .checkout-total-amount {
	font-size: 1.5rem;
}
.page-checkout .checkout-payment-method {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}
.page-checkout .btn-download-receipt {
	margin-top: 16px;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;

	border: 2px solid var(--accent);
	color: var(--accent);
	transition: background .2s, color .2s;
}

.footer-social-label {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.footer-social-icons {
	margin-bottom: 0;
}
.footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff !important;
	text-decoration: none;
	font-size: 1rem;
	transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer-social-icon:hover {
	background: var(--accent-dark);
	color: #fff !important;
	transform: translateY(-2px);
}
.page-checkout .btn-download-receipt:hover {
	background: var(--accent);
	color: #fff !important;
}
.page-checkout .checkout-form .form-control {
	padding: 12px 14px;
	border-radius: 8px;
}
.page-checkout .btn-place-order {
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 8px;
}

/* ================================================================
   PRODUCT DETAIL PAGE — Premium
   ================================================================ */
.product-breadcrumb {
	background: white;
	padding: 14px;
	margin-top: 20px;
	border-radius: var(--radius-sm);
}
.product-breadcrumb .breadcrumb {
	background: none;
	padding: 0;
	font-size: .85rem;
	font-family: var(--font);
}
.product-breadcrumb .breadcrumb-item a {
	color: rgba(255,255,255,.95);
	text-decoration: none;
	transition: opacity .2s var(--ease);
}
.product-breadcrumb .breadcrumb-item a:hover {
	opacity: .85;
	color: #fff;
}
.product-breadcrumb .breadcrumb-item.active {
	color: var(--primary-dark);
	opacity: .95;
	font-weight: 500;
}
.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	color: var(--primary-dark);
}

.product-detail-main {
	padding: 28px 0 48px;
	background: var(--surface);
}
.page-product-detail .product-detail-main {
}
.product-detail-container .row {
	display: flex;
	flex-wrap: nowrap;
}
.product-detail-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

.product-detail-sidebar-left {
	width: 240px;
	flex-shrink: 0;
	background: var(--surface-elevated);
	border-right: 1px solid var(--border);
	max-height: calc(100vh - 200px);
	overflow-y: auto;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	box-shadow: var(--shadow-xs);
}
.product-categories-list {
	padding: 16px 0;
}
.product-categories-list a {
	display: block;
	padding: 10px 20px;
	font-size: .85rem;
	font-family: var(--font);
	color: var(--text);
	text-decoration: none;
	transition: background .2s var(--ease), color .2s var(--ease);
}
.product-categories-list a:hover {
	background: var(--accent-light);
	color: var(--accent);
}

.product-detail-content {
	flex: 1;
	min-width: 0;
	padding: 28px 36px 36px;
	background: var(--surface-elevated);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	margin: 0 1px;
}
.product-detail-inner {
	max-width: 100%;
}

.product-detail-gallery {
	position: sticky;
	top: 24px;
}
.product-detail-main-image {
	background: var(--surface);
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: 12px;
	aspect-ratio: 1;
	border: 1px solid var(--border);
}
.product-detail-main-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transition: transform 0.35s ease;
	cursor: zoom-in;
}
.product-detail-main-image:hover img {
	transform: scale(1.15);
}
.product-detail-main-image:active img {
	cursor: zoom-out;
}
.product-detail-main-image.is-zoomed img {
	transform: scale(1.5);
	cursor: zoom-out;
}
.product-detail-main-image.is-zoomed:hover img {
	transform: scale(1.5);
}
.product-detail-thumbnails {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.product-thumb {
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	background: #f5f5f5;
	cursor: pointer;
	transition: border-color .2s var(--ease);
}
.product-thumb.active {
	border-color: var(--primary);
}
.product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-detail-title {
	font-size: 1.65rem;
	font-weight: 700;
	font-family: var(--font);
	color: var(--text);
	margin: 0 0 8px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.product-detail-rating i {
	color: #f5a623;
	font-size: .9rem;
}
.product-detail-reviews {
	font-size: .85rem;
	color: var(--text-light);
	margin-left: 6px;
}
.product-stock-badge {
	background: #fff8f0;
	color: #e65100;
	font-size: .8rem;
	font-weight: 600;
	font-family: var(--font);
	padding: 6px 12px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(230, 81, 0, .2);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.product-stock-badge i {
	font-size: 1.1rem;
}

.product-detail-price {
	font-size: 1.85rem;
	font-weight: 800;
	font-family: var(--font);
	color: var(--text);
	letter-spacing: -0.02em;
}
.product-detail-meta {
	font-size: .9rem;
	color: var(--text-light);
}
.product-detail-meta li {
	margin-bottom: 4px;
}
.product-detail-meta .text-success {
	margin-right: 4px;
}

.product-options-title {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--text);
	margin-bottom: 10px;
}
.product-option-select {
	max-width: 280px;
	border-radius: var(--radius-sm);
	border-color: var(--border);
	font-family: var(--font);
}
.product-option-select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(46, 139, 62, .12);
}

.quantity-selector {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
}
.btn-qty {
	width: 42px;
	height: 42px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--surface);
	border: none;
	color: var(--text);
	font-size: 1.1rem;
	transition: background .2s var(--ease);
}
.btn-qty:hover {
	background: var(--border);
}
.product-qty-input {
	width: 56px;
	height: 42px;
	text-align: center;
	border: none;
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	font-weight: 600;
	font-family: var(--font);
}

.product-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.btn-add-to-cart {
	background: var(--accent);
	color: #fff !important;
	border: none;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	font-size: .88rem;
	font-weight: 700;
	font-family: var(--font);
	text-transform: uppercase;
	letter-spacing: .06em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: var(--shadow-sm);
	transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-add-to-cart:hover {
	background: var(--accent-dark);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.btn-buy-now {
	background: var(--accent);
	color: #fff !important;
	border: none;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	font-size: .88rem;
	font-weight: 700;
	font-family: var(--font);
	text-transform: uppercase;
	letter-spacing: .06em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: var(--shadow-sm);
	transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-buy-now:hover {
	background: var(--accent-dark);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.product-detail-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.product-detail-link {
	font-size: .85rem;
	font-weight: 600;
	color: var(--text-light);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color .15s var(--ease);
}
.product-detail-link:hover {
	color: var(--accent);
}

.product-detail-tags .product-tag {
	display: inline-block;
	background: var(--surface);
	color: var(--text);
	font-size: .78rem;
	font-family: var(--font);
	padding: 5px 12px;
	border-radius: 20px;
	margin-left: 8px;
	border: 1px solid var(--border);
}

.product-page-sidebar-right {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 48px;
	background: linear-gradient(180deg, #e67e22 0%, #d35400 100%);
	z-index: 1030;
	display: flex;
	flex-direction: column;
	box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.product-sidebar-item {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,.15);
	transition: background .15s var(--ease);
}
.product-sidebar-item:hover {
	background: rgba(0,0,0,.1);
	color: #fff;
}
.product-sidebar-item--star {
	background: #d35400;
}
.product-sidebar-item--star:hover {
	background: #b84500;
}
.product-sidebar-item--top {
	margin-top: auto;
	background: var(--accent);
}
.product-sidebar-item--top:hover {
	background: var(--accent-dark);
}
.product-sidebar-item--bottom {
	background: #95a5a6;
}
.product-sidebar-item--bottom:hover {
	background: #7f8c8d;
}

/* ================================================================
   PRODUCT DETAIL — Tabs (Description / Reviews / Size Chart)
   ================================================================ */
.product-detail-tabs-section {
	padding: 32px 0 24px;
}
.product-detail-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--border);
	padding-bottom: 12px;
}
.product-detail-tab {
	background: #fff;
	color: var(--text);
	border: 1px solid var(--text);
	border-bottom: none;
	padding: 12px 24px;
	font-size: .85rem;
	font-weight: 600;
	font-family: var(--font);
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease);
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	margin-bottom: -1px;
}
.product-detail-tab:hover {
	background: #f5f5f5;
	color: var(--text);
}
.product-detail-tab.active {
	background: var(--accent);
	color: #fff;
	border-color: var(--text);
}
.product-detail-tab-panels {
	padding: 24px 0 0;
}
.product-detail-tab-panel {
	display: none;
}
.product-detail-tab-panel.active {
	display: block;
}
.product-description-heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 16px;
	font-family: var(--font);
}
.product-description-content {
	margin-bottom: 12px;
}
.product-description-content p {
	margin-bottom: 12px;
	line-height: 1.6;
	color: var(--text);
	font-size: .95rem;
}
.product-description-content p:last-of-type {
	margin-bottom: 0;
}
.product-description-subheading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
	margin: 16px 0 10px;
	font-family: var(--font);
}
.product-description-list {
	margin: 0 0 16px;
	padding-left: 1.25rem;
	color: var(--text);
	line-height: 1.7;
	font-size: .95rem;
}
.product-description-toggle {
	background: none;
	border: none;
	color: #EE4036;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	transition: color .2s var(--ease);
}
.product-description-toggle:hover {
	color: #d6352c;
}

/* Product detail — Related / Upsell section bars (dark) + sliders */
.section-heading-bar--dark {
	border-bottom: 2px solid var(--primary);
}
.section-heading--dark {
	background: var(--primary);
	color: #fff !important;
}
.product-detail-slider-section {
	padding: 28px 0 36px;
}
.product-detail-slider-section .section-heading-bar--dark {
	margin-bottom: 0;
}
.product-detail-slider-wrap {
	position: relative;
	padding-top: 16px;
}
.product-detail-related-swiper,
.product-detail-upsell-swiper {
	overflow: hidden;
	padding-bottom: 8px;
}
/* Vertical cards in sliders — equal height */
.product-detail-related-swiper .swiper-slide,
.product-detail-upsell-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}
.product-detail-related-swiper .trending-card-link,
.product-detail-upsell-swiper .trending-card-link {
	display: block;
	height: 100%;
	width: 100%;
}
.product-detail-related-swiper .trending-card,
.product-detail-upsell-swiper .trending-card {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}
.product-detail-related-swiper .trending-card-image,
.product-detail-upsell-swiper .trending-card-image {
	flex-shrink: 0;
	min-width: 0;
}
/* Ensure action buttons visible on hover in sliders */
.product-detail-related-swiper .trending-card-image .product-actions,
.product-detail-upsell-swiper .trending-card-image .product-actions {
	opacity: 1;
}
.product-detail-related-swiper .trending-card-body,
.product-detail-upsell-swiper .trending-card-body {
	flex: 1;
	min-width: 0;
}

@media (max-width: 767.98px) {
	.product-detail-tabs-section {
		padding: 24px 0 20px;
	}
	.product-detail-tab {
		padding: 10px 18px;
		font-size: .8rem;
	}
	.product-detail-slider-section {
		padding: 20px 0 28px;
	}
}

@media (max-width: 991.98px) {
	.page-product-detail .product-detail-main {
		padding-right: 44px;
	}
	.product-detail-content {
		padding: 16px 20px 24px;
	}
	.product-detail-title {
		font-size: 1.35rem;
	}
	.product-page-sidebar-right {
		width: 44px;
	}
	.product-sidebar-item {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}
}

/* Product detail: tablet portrait & below — stack image/info, full-width controls */
@media (max-width: 767.98px) {
	.page-product-detail .product-detail-main {
		padding-right: 44px;
	}
	.product-detail-content {
		padding: 12px 16px 20px;
	}
	.product-detail-inner .row {
		--bs-gutter-x: 1rem;
		--bs-gutter-y: 1rem;
	}
	/* Force image then info to stack full width on mobile */
	.product-detail-inner .row > [class*="col-"] {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.product-detail-gallery {
		position: static;
		margin-bottom: 1rem;
	}
	.product-detail-main-image {
		border-radius: 8px;
		overflow: hidden;
	}
	.product-detail-thumbnails {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 8px;
		padding-bottom: 4px;
	}
	.product-detail-thumbnails .product-thumb {
		flex: 0 0 auto;
		width: 56px;
		height: 56px;
		min-width: 56px;
		min-height: 56px;
	}
	.product-detail-title {
		font-size: 1.2rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	.product-detail-price {
		font-size: 1.25rem;
	}
	.product-option-select {
		max-width: 100%;
		width: 100%;
	}
	.product-detail-qty .quantity-selector {
		width: 100%;
		max-width: 140px;
	}
	.product-detail-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.product-detail-actions .btn-add-to-cart,
	.product-detail-actions .btn-buy-now {
		justify-content: center;
		width: 100%;
	}
	.product-detail-links {
		gap: 16px;
	}
	.product-stock-badge {
		font-size: .75rem;
	}
}

/* Product detail: small phones — hide right sidebar, full width content */
@media (max-width: 575.98px) {
	.page-product-detail .product-detail-main {
		padding-right: 0;
		padding-left: 0;
		padding-top: 16px;
		padding-bottom: 24px;
	}
	.product-page-sidebar-right {
		display: none;
	}
	.product-detail-content {
		padding: 0 12px 20px;
	}
	.product-detail-container {
		padding: 0 12px;
		max-width: 100%;
	}
	.product-detail-container .row {
		flex-wrap: wrap;
	}
	.product-detail-inner .row {
		--bs-gutter-y: 1.25rem;
	}
	.product-detail-title {
		font-size: 1.1rem;
		line-height: 1.3;
	}
	.product-detail-price {
		font-size: 1.15rem;
	}
	.product-detail-meta {
		font-size: .85rem;
	}
	.product-detail-options .form-label,
	.product-detail-qty .form-label {
		font-size: .875rem;
		margin-bottom: 6px;
	}
	.product-option-select {
		min-height: 44px;
		font-size: 1rem;
	}
	.quantity-selector,
	.product-detail-qty .quantity-selector {
		max-width: 100%;
		min-height: 44px;
	}
	.btn-qty {
		min-width: 44px;
		min-height: 44px;
	}
	.product-qty-input {
		min-height: 44px;
		font-size: 1rem;
	}
	.product-detail-actions .btn-add-to-cart,
	.product-detail-actions .btn-buy-now {
		padding: 14px 20px;
		font-size: .85rem;
		min-height: 48px;
	}
	.product-detail-links {
		flex-direction: column;
		gap: 10px;
	}
	.product-detail-link {
		font-size: .8rem;
		min-height: 44px;
		align-items: center;
	}
	.product-detail-tags {
		font-size: .85rem;
	}
	.product-detail-rating {
		font-size: .85rem;
	}
}

/* Breadcrumb bar responsive */
@media (max-width: 767.98px) {
	.product-breadcrumb {
		padding: 10px 0;
	}
	.product-breadcrumb .breadcrumb {
		font-size: .85rem;
	}
	.product-breadcrumb .container {
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media (max-width: 575.98px) {
	.product-breadcrumb .breadcrumb {
		font-size: .8rem;
	}
	.product-breadcrumb .container {
		padding-left: 12px;
		padding-right: 12px;
	}
	.product-breadcrumb .breadcrumb-item.active {
		max-width: 180px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
	background: var(--surface-elevated);
	margin-top: 3rem;
	box-shadow: 0 -2px 12px rgba(0,0,0,.04);
}

/* Footer top — white, 5 columns */
.footer-top {
	background: #fff;
}

.footer-logo-img {
	height: 44px;
	width: auto;
	display: block;
	object-fit: contain;
}
.footer-tagline {
	font-size: .85rem;
	color: var(--text-light);
	margin-bottom: 1rem;
}

.footer-contact {
	font-size: .875rem;
	color: var(--text);
	line-height: 1.7;
}
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}
.footer-contact li:last-child {
	margin-bottom: 0;
}
.footer-contact i {
	color: var(--accent);
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 2px;
}
.footer-contact a {
	color: var(--text);
	text-decoration: none;
	transition: color .15s var(--ease);
}
.footer-contact a:hover {
	color: var(--accent);
}

.footer-heading {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--text);
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--accent);
	display: inline-block;
}

/* Instagram heading: underline only under first word on mobile */
.footer-heading--instagram {
	border-bottom: none;
	padding-bottom: 0;
}
.footer-heading--instagram .footer-heading-underline {
	border-bottom: 2px solid var(--accent);
	padding-bottom: 4px;
}

.footer-links li {
	margin-bottom: 8px;
}
.footer-links li a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .85rem;
	color: var(--text-light);
	text-decoration: none;
	transition: color .15s var(--ease);
}
.footer-links li a::before {
	content: '';
	width: 5px;
	height: 5px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
}
.footer-links li a:hover {
	color: var(--accent);
}

/* Instagram gallery grid */
.footer-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 6px;
}
.footer-gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 1;
}
.footer-gallery-item--large {
	grid-column: 1;
	grid-row: 1 / 3;
	aspect-ratio: auto;
}
.footer-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s var(--ease);
}
.footer-gallery-item:hover img {
	transform: scale(1.08);
}

/* Footer mid — light gray nav strip */
.footer-mid {
	background: #f5f5f5;
	border-top: 1px solid #eee;
}
.footer-nav-wrap {
	font-size: .78rem;
}
.footer-nav-wrap a {
	color: var(--text-light);
	text-decoration: none;
	transition: color .15s var(--ease);
}
.footer-nav-wrap a:hover {
	color: var(--accent);
}
.footer-sep {
	color: #ccc;
	margin: 0 6px;
	user-select: none;
}

/* SHOW LESS / SHOW MORE toggle — visible on mobile */
.footer-toggle-btn {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 10px 0;
	background: none;
	border: none;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--accent);
	cursor: pointer;
	transition: color .15s var(--ease);
}
.footer-toggle-btn:hover {
	color: var(--accent-dark);
}
.footer-toggle-icon {
	margin-left: 6px;
	font-size: .7rem;
	transition: transform .2s var(--ease);
}
.footer-mid-wrapper.is-collapsed .footer-toggle-icon {
	transform: rotate(180deg);
}
.footer-mid-wrapper.is-collapsed .footer-nav-wrap {
	display: none !important;
}
.footer-mid-wrapper.is-collapsed .footer-toggle-btn .footer-toggle-text {
	display: none;
}
.footer-mid-wrapper.is-collapsed .footer-toggle-btn .footer-toggle-text--more {
	display: inline;
}
.footer-toggle-btn .footer-toggle-text--more {
	display: none;
}

/* Payment methods */
.footer-payments {
	background: #fff;
	border-top: 1px solid #eee;
}
.footer-payment-logos {
	font-size: .75rem;
	font-weight: 600;
	color: #888;
}
.payment-logo {
	padding: 6px 14px;
	background: #f8f8f8;
	border-radius: 4px;
	border: 1px solid #eee;
	transition: color .15s var(--ease), border-color .15s var(--ease);
}
.payment-logo:hover {
	color: var(--primary);
	border-color: #ddd;
}

/* Footer bottom — dark bar */
.footer-bottom {
	background: var(--primary);
	color: rgba(255,255,255,.9);
}
.footer-copyright {
	font-size: .8rem;
	color: rgba(255,255,255,.85);
}
.footer-copyright .footer-credit {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: opacity .15s var(--ease);
}
.footer-copyright .footer-credit:hover {
	opacity: .9;
	color: var(--accent);
}

.btn-footer-chat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: #fff !important;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s var(--ease);
}
.btn-footer-chat:hover {
	background: var(--accent-dark);
	color: #fff !important;
}
.chat-dot {
	width: 8px;
	height: 8px;
	background: #7fff7f;
	border-radius: 50%;
	animation: footer-chat-pulse 1.5s ease-in-out infinite;
}
@keyframes footer-chat-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .4; }
}

@media (max-width: 991.98px) {
	.footer-gallery-item--large {
		grid-column: 1 / -1;
		grid-row: auto;
		aspect-ratio: 16 / 9;
	}
}

/* Footer mobile view — 2 columns per row (aligned with updated footer-static) */
@media (max-width: 767.98px) {
	.footer-top .row {
		display: flex;
		flex-wrap: wrap;
	}
	.footer-top [class*="col-"] {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.footer-top .col-lg-4 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	/* Instagram heading: only underline under INSTAGRAM */
	.footer-heading--instagram {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 10px;
	}
	.footer-heading--instagram .footer-heading-underline {
		border-bottom: 2px solid var(--accent);
		padding-bottom: 2px;
	}

	/* Gallery: large left (~2/3), 4 small right (2x2) */
	.footer-gallery {
		grid-template-columns: 2fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 6px;
	}
	.footer-gallery-item--large {
		grid-column: 1;
		grid-row: 1 / 3;
		aspect-ratio: auto;
		min-height: 100%;
	}
	.footer-gallery-item:not(.footer-gallery-item--large) {
		aspect-ratio: 1;
	}

	/* Footer mid: wrap links, smaller text */
	.footer-nav-wrap {
		font-size: .72rem;
		text-align: left;
		line-height: 2;
	}
	.footer-sep {
		margin: 0 4px;
	}

	/* Payment logos: compact, subtle */
	.footer-payments .container {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
	.footer-payment-logos {
		gap: 8px;
	}
	.payment-logo {
		font-size: .7rem;
		padding: 5px 10px;
		filter: grayscale(0.4);
	}
}

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

/* ---- Tablet & below (< 992px) ---- */
@media (max-width: 991.98px) {
	/* Header row 1 — reduce padding */
	.header-navigation {
		padding: 16px 0;
	}

	/* Header row 2 — logo + search full width */
	.header-search-cart .search-left-group {
		flex: 1;
		width: 100%;
	}
	.header-search-group {
		flex: 1;
		width: auto !important;
	}

	/* Slider & hero */
	.hero-slider {
		min-height: 280px;
	}
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-slide-content {
		max-width: 80%;
		padding: 24px;
	}

	/* Daily Deals cards — keep horizontal, shrink image */
	.product-card {
		flex-direction: row;
	}
	.product-card-image {
		width: 38%;
	}
	.product-card-body {
		padding: 14px 16px 16px;
	}
	.product-card-image .product-actions {
		opacity: 1;
	}

	/* Section heading */
	.section-heading {
		font-size: .82rem;
		padding: 9px 18px;
	}
}

/* ---- Medium phones (< 768px) ---- */
@media (max-width: 767.98px) {
	.product-card-image {
		width: 35%;
	}
	.product-card-desc {
		-webkit-line-clamp: 1;
	}
	.product-card-category {
		font-size: .65rem;
	}
	.product-card-title {
		font-size: .82rem;
		margin-bottom: 2px;
	}
	.header-cart-text {
		display: none;
	}
}

/* ---- Small phones (< 576px) ---- */
@media (max-width: 575.98px) {
	.header-navigation {
		padding: 12px 0;
	}

	.site-logo-img {
		height: 36px;
	}

	.header-search-cart {
		padding: 0 0 10px;
	}

	.hero-title {
		font-size: 2rem;
	}
	.hero-slide-content {
		max-width: 95%;
		padding: 16px;
	}

	/* Product cards — horizontal, compact */
	.product-card-image {
		width: 35%;
	}
	.product-card-body {
		padding: 10px 12px 12px;
	}
	.product-card-title {
		font-size: .8rem;
		margin-bottom: 2px;
	}
	.product-card-desc {
		font-size: .68rem;
		-webkit-line-clamp: 1;
		margin-bottom: 4px;
	}
	.product-price {
		font-size: .9rem;
	}
	.product-price-old {
		font-size: .72rem;
	}
	.product-card-rating {
		margin-bottom: 0;
	}
	.product-card-rating i {
		font-size: .6rem;
	}
	.product-action-btn {
		width: 26px; height: 26px;
		font-size: .75rem;
	}
	.product-badge {
		font-size: .55rem;
		padding: 2px 6px;
		top: 6px; left: 6px;
	}
	.product-actions {
		top: 6px; right: 6px;
		gap: 4px;
	}

	/* Section heading compact */
	.section-heading {
		font-size: .78rem;
		padding: 8px 16px;
	}
	.btn-slider-nav {
		width: 28px; height: 28px;
		font-size: .65rem;
	}

	/* Features strip compact */
	.feature-item {
		gap: 10px;
		padding: 14px 12px;
	}
	.feature-icon {
		width: 32px; height: 32px;
		font-size: 1.15rem;
	}
	.feature-text h6 {
		font-size: .78rem;
	}
	.feature-text p {
		font-size: .68rem;
	}

	/* Towel banner */
	.towel-banner-wrapper img {
		border-radius: 6px;
	}

	/* Prevent horizontal overflow on small screens */
	body {
		overflow-x: hidden;
	}
}

/* ================================================================
   CHECKOUT PAGE — Premium
   ================================================================ */
.page-checkout .checkout-main {
	padding: 32px 0 48px;
	background: var(--surface);
}
.checkout-title {
	font-size: 1.75rem;
	font-weight: 700;
	font-family: var(--font);
	color: var(--text);
	margin-bottom: 28px;
	letter-spacing: -0.02em;
}
.checkout-row {
	align-items: stretch;
}
.checkout-summary-card,
.checkout-form-card {
	background: var(--surface-elevated);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	padding: 28px 32px 32px;
	height: 100%;
}
.checkout-summary-title,
.checkout-form-title {
	font-size: 1.1rem;
	font-weight: 700;
	font-family: var(--font);
	color: var(--text);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent);
}
.checkout-product-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.checkout-product-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}
.checkout-product-item:last-of-type {
	border-bottom: none;
}
.checkout-product-image {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--surface);
}
.checkout-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.checkout-product-details {
	flex: 1;
	min-width: 0;
}
.checkout-product-name {
	font-weight: 600;
	font-size: .95rem;
	color: var(--text);
	display: block;
	margin-bottom: 2px;
}
.checkout-product-meta {
	font-size: .85rem;
	color: var(--text-muted);
}
.checkout-product-color {
	font-weight: 500;
	color: var(--text-muted);
}
.checkout-product-total {
	font-weight: 700;
	font-size: 1rem;
	color: var(--text);
}
.checkout-summary-divider {
	height: 1px;
	background: var(--border);
	margin: 16px 0;
}
.checkout-summary-rows {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.checkout-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .95rem;
	color: var(--text);
}
.checkout-summary-total {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text);
	margin-top: 4px;
}
.checkout-total-amount {
	color: var(--accent);
	font-size: 1.35rem;
}
.checkout-payment-method {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 16px;
	background: var(--accent-light);
	border-radius: var(--radius-md);
	border: 1px solid rgba(46, 139, 62, .2);
}
.checkout-payment-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: .95rem;
	color: var(--accent-dark);
	margin-bottom: 8px;
}
.checkout-payment-badge i {
	font-size: 1.25rem;
}
.checkout-payment-note {
	font-size: .8rem;
	line-height: 1.45;
}
.btn-download-receipt {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: center;
	padding: 14px 20px;
	background: var(--primary);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-md);
	font-size: .95rem;
	font-weight: 600;
	font-family: var(--font);
	box-shadow: var(--shadow-sm);
	transition: background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-download-receipt:hover {
	background: var(--primary-dark);
	color: #fff !important;
	box-shadow: var(--shadow-md);
}
.checkout-form .form-label {
	font-weight: 600;
	font-size: .9rem;
	color: var(--text);
}
.checkout-form .form-control {
	border-radius: var(--radius-sm);
	border-color: var(--border);
	padding: 10px 14px;
}
.checkout-form .form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(46, 139, 62, .12);
}
.btn-place-order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: var(--accent);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-md);
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--font);
	box-shadow: var(--shadow-md);
	transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-place-order:hover {
	background: var(--accent-dark);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: var(--shadow-lg);
}
@media (max-width: 991.98px) {
	.checkout-summary-card,
	.checkout-form-card {
		padding: 20px 24px 24px;
	}
	.checkout-title {
		font-size: 1.5rem;
	}
}
@media (max-width: 575.98px) {
	.checkout-product-item {
		flex-wrap: wrap;
	}
	.checkout-product-total {
		width: 100%;
		text-align: right;
		margin-top: 4px;
	}
}

/* Invoice PDF content (hidden, used by html2pdf) */
.invoice-content {
	position: absolute;
	left: -9999px;
	width: 210mm;
	max-width: 100%;
	padding: 20px;
	background: #fff;
	font-family: var(--font);
	color: #1a1a1a;
}
.invoice-pdf {
	padding: 24px;
}
.invoice-pdf .invoice-header {
	margin-bottom: 24px;
	border-bottom: 2px solid #1a1a1a;
	padding-bottom: 16px;
}
.invoice-pdf .invoice-header h1 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 4px;
}
.invoice-pdf .invoice-store {
	font-size: 14px;
	color: #666;
	margin: 0 0 4px;
}
.invoice-pdf .invoice-id,
.invoice-pdf .invoice-date {
	font-size: 13px;
	margin: 0;
	color: #666;
}
.invoice-pdf .invoice-billing {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 1.6;
}
.invoice-pdf .invoice-billing h3 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0 0 8px;
	color: #666;
}
.invoice-pdf .invoice-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	font-size: 13px;
}
.invoice-pdf .invoice-table th,
.invoice-pdf .invoice-table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid #eee;
}
.invoice-pdf .invoice-table th {
	background: #f5f5f5;
	font-weight: 700;
}
.invoice-pdf .invoice-totals {
	font-size: 14px;
	margin-bottom: 24px;
}
.invoice-pdf .invoice-totals p {
	margin: 4px 0;
}
.invoice-pdf .invoice-footer {
	border-top: 1px solid #eee;
	padding-top: 16px;
	font-size: 12px;
	color: #666;
}
.invoice-pdf .invoice-footer p {
	margin: 2px 0;
}

/* ================================================================
   PREMIUM UI POLISH — consistent spacing, depth, typography
   ================================================================ */
.hero-swiper {
	border-radius: var(--radius-lg);
}
.best-offers-banner-link,
.hero-swiper + .col-12 a,
.hero-swiper + [class*="col-"] a {
	border-radius: var(--radius-lg);
}
.best-offers-banner-link img {
	border-radius: var(--radius-lg);
}
.feature-item {
	border-radius: var(--radius-sm);
}
.js-add-to-cart,
.product-card .btn-add-to-cart {
	border-radius: var(--radius-md);
	font-weight: 600;
	letter-spacing: .02em;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.js-add-to-cart:active,
.product-card .btn-add-to-cart:active {
	transform: scale(0.98);
}
@media (max-width: 991.98px) {
	.header-search-cart { padding: 12px 0; }
	.search-left-group { gap: 10px; }
	.header-search-group { height: 44px; border-radius: 999px; }
	.site-logo-img { height: 60px; width: auto; }
}
@media (max-width: 575.98px) {
	.header-search-cart { padding: 10px 0; }
	.search-left-group { gap: 8px; }
	.header-search-group { height: 42px; }
}

/* Floating WhatsApp button — every screen */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
	text-decoration: none;
}
.whatsapp-float:hover {
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float__icon {
	width: 30px;
	height: 30px;
}

/* ============================================================
   HERO SLIDER - FULL IMAGE, NO STRETCH
   ============================================================ */

.hero-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	height: 100%;
}

.hero-slide-img {
	width: 100%;
	height: 100%;
	object-fit: contain;   /* FULL IMAGE SHOW */
	object-position: center;
	display: block;
}

/* ============================================================
   STATIC BANNER - FULL IMAGE, NO STRETCH
   ============================================================ */

.hero-banner-wrap {
	width: 100%;
	background: #f5f5f5;
	border-radius: 12px;
	overflow: hidden;
	display: block;
}

.hero-banner-img {
	width: 100%;
	height: auto;
	object-fit: contain;   /* FULL IMAGE SHOW */
	display: block;
}

/* ============================================================
   REMOVE ANY BACKGROUND IMAGE SETTINGS FROM OLD HERO
   ============================================================ */

.hero-slide {
	background-image: none !important;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {

	.hero-swiper {
		height: auto;
	}

	.hero-slide-img {
		height: auto;
	}

}


/* ============================================================
   FIX: Mobile banner stretch (green marked banner)
   Full image show + no stretch
   ============================================================ */

@media (max-width: 767.98px) {

  /* Best-offers / promo banners (img tag) */
  .best-offers-banner-link img,
  .best-offers-banner-section img,
  .promo-banner img,
  .towel-banner-wrapper img,
  .home-best-offers-banner img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;          /* <-- stretch stop */
    object-fit: contain !important;   /* <-- full image show */
    object-position: center !important;
    display: block !important;
  }

  /* If any wrapper is forcing height, remove it */
  .best-offers-banner-link,
  .best-offers-banner-section a,
  .home-best-offers-banner a {
    height: auto !important;
  }

  /* Optional: nice background when using contain (no empty white gaps look odd) */
  .best-offers-banner-link,
  .best-offers-banner-section {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
  }
}