:root {
	--wa: #25D366;
	--wa2: #128C7E;
	--wa3: #075E54;
	--line: rgba(2, 6, 23, .10);
	--r: 10px;
	--fs: 12px;
	--shadow: 0 14px 40px rgba(2, 6, 23, .10);
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: "SolaimanLipi", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: var(--fs);
	background: #fff;
	color: #0f172a
}

html[lang="en"] body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

a {
	color: inherit;
	text-decoration: none
}

.wrap {
	flex: 1;
	max-width: 1160px;
	margin: 0 auto;
	padding: 14px;
	padding-top: 122px
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 10px 14px
}

/* Fixed header + menus (mobile friendly) */
.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 1px solid var(--line);
	background: var(--header-bg, rgba(255, 255, 255, .96));
	backdrop-filter: blur(10px)
}

.topbar, .topbar .btxt, .topbar .brand, .topbar .search input, .topbar .search input::placeholder, .topbar .sbtn, .topbar .pill, .topbar .pill.outline {
	color: var(--header-text, #0f172a);
}

.topbar .search input {
	background: color-mix(in srgb, var(--header-bg, #fff) 96%, #ffffff 4%);
}

.topbar .pill, .topbar .pill.outline {
	border-color: color-mix(in srgb, var(--header-text, #0f172a) 14%, #ffffff 86%);
	background: color-mix(in srgb, var(--header-bg, #fff) 92%, #ffffff 8%);
}

.topbar .pill:hover, .topbar .pill.outline:hover {
	background: color-mix(in srgb, var(--header-bg, #fff) 84%, #ffffff 16%);
}

.topwrap {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 1000;
	color: var(--wa3);
	min-width: 160px
}

.brandmark {
	display: flex;
	align-items: center;
	justify-content: center
}

.logo {
	width: 38px;
	height: 38px;
	border-radius: var(--r);
	display: grid;
	place-items: center;
	color: #fff;
	background: linear-gradient(135deg, var(--wa), var(--wa2));
	box-shadow: 0 14px 28px rgba(37, 211, 102, .20)
}

.logoimg {
	width: 38px;
	height: 38px;
	border-radius: var(--r);
	object-fit: cover;
	border: 1px solid var(--line);
	background: var(--navbar-bg, #fff)
}

.btxt {
	font-weight: 1000;
	line-height: 1.2
}

.search {
	flex: 1;
	min-width: 220px
}

.search input {
	width: 100%;
	padding: 9px 10px;
	border-radius: var(--r);
	border: 1px solid var(--line);
	font: inherit;
	outline: none
}

.search input:focus {
	border-color: rgba(37, 211, 102, .6);
	box-shadow: 0 0 0 6px rgba(37, 211, 102, .14)
}

.right {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}

.pill {
	padding: 8px 10px;
	border-radius: var(--r);
	border: 1px solid var(--line);
	background: rgba(37, 211, 102, .08);
	color: var(--wa3);
	font-weight: 1000
}

.pill.outline {
	background: #fff
}

.menubar {
	position: fixed;
	top: 59px;
	left: 0;
	right: 0;
	z-index: 49;
	border-bottom: 1px solid var(--line);
	background: #fff
}

.menuwrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap
}

.mitem {
	padding: 8px 10px;
	border-radius: var(--r);
	border: 1px solid transparent;
	font-weight: 1000;
	color: #0f172a
}

.mitem:hover {
	border-color: var(--line);
	background: rgba(2, 6, 23, .03)
}

.mcat {
	font-weight: 700;
	font-size: 11px
}

.lang {
	display: flex;
	align-items: center;
	gap: 6px
}

.langbtn {
	font-weight: 1000;
	color: var(--wa3)
}

.sep {
	opacity: .6
}

.catbar {
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	z-index: 48;
	border-bottom: 1px solid var(--line);
	background: #f8fafc
}

.catrow {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center
}

.cat {
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	color: #0f172a
}

.cat:hover {
	background: rgba(37, 211, 102, .08);
	color: var(--wa3)
}

.slider {
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin: 0px 0;
	position: relative
}

.slider img {
	width: 100%;
	display: none;
	object-fit: cover;
	max-height: 322px
}

.slider img.is-active {
	display: block
}

.slider .dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	display: flex;
	justify-content: center;
	gap: 6px
}

.slider .dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .8);
	background: rgba(2, 6, 23, .35);
	cursor: pointer
}

.slider .dot.is-active {
	background: #fff
}

.notice {
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: rgba(37, 211, 102, .08);
	margin: 1px 0
}

.notice.danger {
	background: rgba(220, 38, 38, .08)
}

.notice.ok {
	background: rgba(37, 211, 102, .12)
}

.section-title {
	margin: 12px 0 6px;
	font-size: 12px;
	color: var(--wa3);
	font-weight: 1000
}

.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	align-items: stretch
}

.card {
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	box-shadow: 0 12px 24px rgba(2, 6, 23, .06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%
}

.img {
	position: relative;
	aspect-ratio: 4/3;
	background: #f2f5f7
}

.img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.badge {
	position: absolute;
	top: 8px;
	padding: 5px 8px;
	border-radius: var(--r);
	border: 1px solid var(--line);
	background: #fff;
	font-weight: 1000;
	color: var(--wa3)
}

.badge.left {
	left: 8px
}

.badge.right {
	right: 8px
}

.body {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1
}

.title {
	font-weight: 1000;
	margin-bottom: 0;
	line-height: 1.45;
	min-height: 2.9em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.muted {
	color: #64748b;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.tiny {
	font-size: 12px
}

.row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 8px
}

.price {
	color: var(--wa3)
}

.prices {
	display: flex;
	align-items: baseline;
	gap: 8px
}

.oldprice {
	text-decoration: line-through;
	opacity: .6
}

.btn {
	padding: 3px 5px;
	border-radius: var(--r);
	border: 0;
	cursor: pointer;
	/* font-weight: 1000; */
	color: var(--front-btn-text, #fff);
	background: var(--front-btn-bg, linear-gradient(135deg, var(--wa), var(--wa2)))
}

.btn:hover,
.btn:focus-visible {
	filter: brightness(.96)
}

.btn.outline {
	background: #fff;
	color: var(--wa3);
	border: 1px solid var(--line)
}

.btn.small {
	padding: 6px 8px
}

.btn.danger {
	background: linear-gradient(135deg, #ef4444, #dc2626)
}

.footer {
	margin-top: 16px;
	background: var(--footer-bg, #0b1220);
	color: var(--footer-text, #e2e8f0)
}

.footrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	padding: 16px 0
}

.footlinks a {
	margin-left: 8px;
	color: var(--footer-text, #e2e8f0);
	font-weight: 1000;
	opacity: .9
}

.footlinks a:hover {
	opacity: 1
}

.pview {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

.zoom {
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	position: relative;
	background-size: 180%;
	background-position: center
}

.zoom img {
	width: 100%;
	display: block
}

.zoom:hover img {
	opacity: 0
}

.zoom:hover {
	cursor: zoom-in
}

.thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px
}

.thumb {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: var(--r);
	padding: 0;
	cursor: pointer;
	overflow: hidden;
	width: 56px;
	height: 56px
}

.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.pinfo h1 {
	font-size: 12px;
	margin: 0 0 8px;
	color: var(--wa3)
}

.chips {
	margin: 8px 0
}

.chip {
	display: inline-block;
	padding: 6px 8px;
	border-radius: var(--r);
	border: 1px solid rgba(37, 211, 102, .18);
	background: rgba(37, 211, 102, .10);
	color: var(--wa3);
	font-weight: 1000;
	margin-right: 6px
}

.rowgap {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 10px
}

.pdesc {
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 12px;
	margin-top: 12px;
	background: #fff
}

.pdesc h3 {
	margin: 0;
	font-size: 12px;
	color: var(--wa3)
}

.field {
	margin-top: 10px
}

.label {
	font-weight: 1000;
	margin-bottom: 6px
}

.table .tr {
	display: grid;
	grid-template-columns: 1.2fr .5fr .7fr 1fr;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--line)
}

.table .th {
	font-weight: 1000;
	color: var(--wa3)
}

.actions {
	display: flex;
	gap: 6px;
	flex-wrap: wrap
}

.checkoutBox {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 10px;
	background: rgba(37, 211, 102, .06)
}

.form {
	display: grid;
	gap: 10px;
	max-width: 520px
}

.in {
	width: 100%;
	padding: 9px 10px;
	border-radius: var(--r);
	border: 1px solid var(--line);
	font: inherit;
	color: #0f172a;
	background: #fff
}

@media(max-width:980px) {
	.grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.pview {
		grid-template-columns: 1fr
	}
}

@media(max-width:720px) {
	.grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:420px) {
	.grid {
		grid-template-columns: 1fr
	}
}

@media(max-width:760px) {
	.wrap {
		flex: 1;
		padding-top: 112px
	}

	.topbar {
		box-shadow: 0 10px 24px rgba(2, 6, 23, .08)
	}

	.topwrap {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 8px;
		padding-top: 10px;
		padding-bottom: 10px
	}

	.brand {
		min-width: 0;
		gap: 6px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start
	}

	.logo,
	.logoimg {
		width: 40px;
		height: 40px;
		border-radius: 12px
	}

	.btxt {
		display: none
	}

	.search {
		width: 100%;
		min-width: 0;
		order: 0
	}

	.search input {
		height: 40px;
		padding-left: 10px
	}

	.search .sbtn {
		right: 5px;
		padding: 5px 9px;
		border-radius: 9px
	}

	.right {
		width: auto;
		order: 0;
		display: flex;
		gap: 6px;
		flex-wrap: nowrap
	}

	.right .pill {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 44px;
		min-height: 40px;
		padding: 8px 9px;
		white-space: nowrap;
		font-size: 11px
	}

	.right .pill b:last-child {
		display: none
	}

	.desktop-only {
		display: none !important
	}

	.catbar {
		display: none
	}

	.menubar {
		top: 60px
	}

	.menuwrap {
		gap: 6px;
		flex-wrap: nowrap;
		overflow: auto;
		scrollbar-width: none
	}

	.menuwrap::-webkit-scrollbar {
		display: none
	}

	.mitem {
		padding: 7px 8px;
		white-space: nowrap
	}

	.footrow {
		justify-content: center;
		text-align: center
	}

	.footlinks {
		display: flex;
		gap: 10px;
		justify-content: center;
		flex-wrap: wrap
	}

	.footlinks a {
		margin-left: 0
	}

	.footlang {
		justify-content: center;
		width: 100%;
		margin-top: 6px
	}
}


/* ===== Live search dropdown ===== */
.livesearch {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 6px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	z-index: 60;
	overflow: hidden
}

.livesearch ul {
	list-style: none;
	margin: 0;
	padding: 6px;
	max-height: 360px;
	overflow: auto
}

.livesearch li a {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px;
	border-radius: 10px;
	color: #0f172a
}

.livesearch li a:hover {
	background: rgba(2, 6, 23, .05)
}

.livesearch img {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	object-fit: cover;
	border: 1px solid var(--line)
}

.livesearch .lsph {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: #f1f5f9;
	display: inline-block
}

.livesearch .lstxt {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0
}

.livesearch .lstxt b {
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 260px
}

.livesearch .lscat {
	font-size: 11px;
	opacity: .75
}

.livesearch .lspr {
	font-size: 12px;
	font-weight: 1000;
	color: #0b7b46
}

.livesearch .lsall {
	padding: 8px 12px;
	border-top: 1px solid var(--line);
	background: #f8fafc
}

.livesearch .lsall a {
	font-weight: 1000;
	color: #0b7b46
}

/* Search submit button */
.search {
	position: relative
}

.search .sbtn {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid var(--line);
	background: #0b7b46;
	color: #fff;
	border-radius: 10px;
	padding: 6px 10px;
	cursor: pointer
}

.search input {
	padding-right: 44px !important
}

/* ===== Desktop fixed footer (always visible) ===== */
@media(min-width:761px) {
	body {
		padding-bottom: 76px
	}

	.footer {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 30
	}

	.desktop-only {
		display: inline-flex
	}

	.footlang {
		margin-left: auto
	}
}


/* ===== Mobile bottom nav (smaller) ===== */
@media(max-width:760px) {
	.footer {
		display: block;
		margin-bottom: 44px
	}

	/* show footer above mobile bottom nav */
	.bottomnav,
	.mobnav,
	.mfooter {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 70;
		background: var(--navbar-bg, #fff);
		border-top: 1px solid var(--line);
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: space-around
	}

	.bottomnav a,
	.mobnav a,
	.mfooter a {
		flex: 1;
		text-align: center;
		font-size: 10px;
		padding: 6px 2px;
		color: var(--menu-text, #0f172a)
	}

	.bottomnav a .ico,
	.mobnav a .ico,
	.mfooter a .ico {
		display: block;
		font-size: 16px;
		line-height: 16px;
		margin-bottom: 2px
	}

	.bottomnav a.active,
	.mobnav a.active,
	.mfooter a.active {
		color: #0b7b46;
		font-weight: 1000
	}

	.wrap {
		flex: 1;
		padding-bottom: 62px
	}
}

/* ===== Mobile sidebar ===== */
.mobov {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, .45);
	z-index: 75
}

.mobov[hidden],
.mobside[hidden] {
	display: none !important
}

.mobside {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: min(78vw, 320px);
	background: var(--navbar-bg, #fff);
	z-index: 76;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column
}

.mobside_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px;
	border-bottom: 1px solid var(--line);
	background: var(--navbar-bg, #fff);
	color: var(--menu-text, #0f172a)
}

.mobside_close {
	border: 1px solid var(--line);
	background: var(--navbar-bg, #fff);
	color: var(--menu-text, #0f172a);
	border-radius: 10px;
	padding: 6px 10px;
	cursor: pointer
}

.mobside_body {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	overflow: auto;
	background: var(--navbar-bg, #fff)
}

.mobside_link {
	padding: 10px 10px;
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--menu-text, #0f172a);
	background: color-mix(in srgb, var(--navbar-bg, #fff) 92%, #000 8%)
}

.mobside_link:hover {
	background: color-mix(in srgb, var(--navbar-bg, #fff) 84%, #000 16%)
}

.noscr {
	overflow: hidden
}

@media(min-width:761px) {

	.bottomnav,
	.mobov,
	.mobside {
		display: none !important
	}
}


.mnav {
	position: relative
}

.mcat.has-arrow {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.mcat .arrow {
	font-size: 10px;
	opacity: .7
}

.submenu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 8px;
	display: none;
	flex-direction: column;
	gap: 4px;
	z-index: 80
}

.mnav.has-sub.is-open .submenu {
	display: flex
}

.submenu_link {
	padding: 9px 10px;
	border-radius: 10px;
	background: #f8fafc
}

.submenu_link:hover {
	background: rgba(37, 211, 102, .08);
	color: var(--wa3)
}

.mobcat {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.mobcat_row {
	display: flex;
	gap: 6px;
	align-items: stretch
}

.mobcat_row .mobside_link {
	flex: 1
}

.mobcat_toggle {
	width: 42px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	font-size: 14px
}

.mobcat_toggle.is-open {
	transform: rotate(180deg)
}

.mobsubcats {
	display: none;
	flex-direction: column;
	gap: 6px;
	padding-left: 12px
}

.mobcat.is-open .mobsubcats {
	display: flex
}

.mobsub_link {
	padding: 9px 10px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff
}

.mobsub_link:hover {
	background: rgba(37, 211, 102, .08);
	color: var(--wa3)
}

.hot-grid {
	grid-template-columns: repeat(6, 1fr)
}

.hot-products {
	position: relative
}

.hot-products.is-carousel {
	padding: 0 42px
}

.hot-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	padding: 4px 2px
}

.hot-track::-webkit-scrollbar {
	display: none
}

.hot-card {
	min-width: calc((100% - 60px)/6);
	scroll-snap-align: start
}

.hot-nav {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 999px;
	background: #fff;
	box-shadow: var(--shadow);
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	color: var(--wa3);
	z-index: 3
}

.hot-nav.prev {
	left: 0
}

.hot-nav.next {
	right: 0
}

.product-media {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.deal-strip {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding: 0 2px
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
    border-radius: 999px;
    color: #fff;
    font-size: 8px;
    /* font-weight: 900; */
    letter-spacing: .2px;
}

.deal-badge.percent {
	background: #575757;
}

.deal-badge.amount {
	background: #575757;
}

.hot-grid .body,
.hot-card .body {
	padding: 8px
}

.hot-grid .title,
.hot-card .title {
	font-size: 11px;
	min-height: 3em
}

.hot-grid .muted,
.hot-card .muted {
	font-size: 11px;
	-webkit-line-clamp: 2;
	min-height: 3em
}

.hot-grid .btn,
.hot-card .btn {
	padding: 4px 6px;
	font-size: 11px
}

.grid .muted,
.hot-grid .muted,
.hot-card .muted {
	min-height: 3em;
	-webkit-line-clamp: 2
}

.grid .row,
.hot-grid .row,
.hot-card .row {
	margin-top: auto
}

.grid .img,
.hot-grid .img,
.hot-card .img {
	flex-shrink: 0
}

.grid .img,
.hot-grid .img,
.hot-card .img {
	min-height: 170px
}

.grid .img img,
.hot-grid .img img,
.hot-card .img img {
	width: 100%;
	height: 170px;
	object-fit: contain;
	background: #fff
}

.pdetails_html ul,
.pdetails_html ol {
	padding-left: 18px
}

.pdetails_html table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px
}

.pdetails_html th,
.pdetails_html td {
	border: 1px solid var(--line);
	padding: 8px
}

.pdetails_html h1,
.pdetails_html h2,
.pdetails_html h3,
.pdetails_html h4 {
	margin: 10px 0 6px;
	color: var(--wa3)
}

.livesearch {
	z-index: 120
}

.livesearch .lsall a {
	font-weight: 1000;
	color: #0b7b46
}

.ls-empty {
	padding: 14px 12px;
	color: #64748b
}

@media(max-width:980px) {
	.hot-grid {
		grid-template-columns: repeat(6, 1fr)
	}

	.hot-card {
		min-width: calc((100% - 24px)/4)
	}
}

@media(max-width:720px) {
	.hot-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.hot-products.is-carousel {
		padding: 0
	}

	.hot-nav {
		display: none
	}

	.hot-card {
		min-width: calc((100% - 24px)/3)
	}
}

@media(max-width:420px) {
	.hot-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.hot-grid .title,
	.hot-card .title {
		font-size: 10px
	}

	.hot-grid .btn,
	.hot-card .btn {
		padding: 5px 6px;
		font-size: 10px
	}
}


/* v8 tweaks */
.deal-strip.two-side {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: nowrap;
	padding: 2px 2px 0
}

.deal-strip.two-side .deal-side {
	display: flex;
	min-width: 0
}

.deal-strip.two-side .deal-side.right {
	justify-content: flex-end;
	margin-left: auto
}

.product-media {
	gap: 4px
}

.grid .body,
.hot-grid .body,
.hot-card .body {
	padding: 7px 8px 8px;
	display: flex;
	flex-direction: column;
	gap: 5px
}

.grid .title,
.hot-grid .title,
.hot-card .title {
	line-height: 1.28;
	min-height: 2.6em
}

.grid .muted,
.hot-grid .muted,
.hot-card .muted {
	line-height: 1.3;
	min-height: 2.5em;
	margin-top: 0
}

.grid .img,
.hot-grid .img,
.hot-card .img {
	min-height: 200px
}

.grid .img img,
.hot-grid .img img,
.hot-card .img img {
	height: 200px
}

.btn.is-added {
	background: linear-gradient(135deg, #0f9d58, #0b7b46) !important
}

@media(max-width:720px) {

	.grid .img,
	.hot-grid .img,
	.hot-card .img {
		min-height: 132px
	}

	.grid .img img,
	.hot-grid .img img,
	.hot-card .img img {
		height: 132px
	}

	.deal-strip.two-side {
		gap: 4px;
	}

	.deal-strip.two-side .deal-badge {
		padding: 3px 5px;
		font-size: 8px;
		line-height: 1.1;
		letter-spacing: 0;
		white-space: nowrap
	}
}
.pwa-install-banner {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: calc(76px + env(safe-area-inset-bottom, 0px));
	z-index: 1200
}

.pwa-install-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	background: #111827;
	color: #fff;
	border-radius: 18px;
	box-shadow: 0 16px 48px rgba(15, 23, 42, .32)
}

.pwa-install-copy {
	min-width: 0
}

.pwa-install-copy strong {
	display: block;
	font-size: 15px;
	margin-bottom: 4px
}

.pwa-install-copy p {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .82)
}

.pwa-install-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0
}

.pwa-btn {
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	font-weight: 700;
	cursor: pointer;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #fff
}

.pwa-btn-light {
	background: rgba(255, 255, 255, .12)
}

@media(max-width:720px) {
	.pwa-install-card {
		align-items: flex-start;
		flex-direction: column
	}

	.pwa-install-actions {
		width: 100%;
		justify-content: flex-end
	}
}


.topbar, .menubar { will-change: transform; }
.mitem, .submenu_link, .mobside_link, .mobsub_link { color: var(--menu-text, #0f172a); }
.pill, .pill.outline { backdrop-filter: none; }
.footmeta { opacity: .9; }
.gallery-slot-card { border:1px solid var(--line); border-radius:var(--r); padding:10px; display:grid; gap:8px; background:#fff; }
.gallery-slot-card img { width:100%; max-width:140px; height:110px; object-fit:cover; border-radius:var(--r); border:1px solid var(--line); background:#fff; }
.slider img { width:100%; height:min(34vw, 360px); min-height:180px; max-height:360px; object-fit:cover; }
.zoom { aspect-ratio: 1/1; background-color:#fff; }
.zoom img { width:100%; height:100%; object-fit:contain; background:#fff; }
.thumbs { display:grid; grid-template-columns:repeat(4, minmax(56px, 76px)); }
.product-media .img, .grid .img, .hot-grid .img, .hot-card .img { width:100%; height:220px; min-height:220px; max-height:220px; background:#fff; display:flex; align-items:center; justify-content:center; }
.product-media .img img, .grid .img img, .hot-grid .img img, .hot-card .img img { width:100%; height:100%; object-fit:contain; }
@media(max-width:720px){
  .product-media .img, .grid .img, .hot-grid .img, .hot-card .img { height:150px; min-height:150px; max-height:150px; }
  .slider img { height:180px; min-height:180px; }
}


/* 2026-03 UI fixes */
.menubar, .menubar .container, .menubar .menuwrap, nav.menubar { background: var(--navbar-bg, #fff) !important; }
.menubar .mitem, .menubar .mcat, .submenu_link, .mobside_link, .mobsub_link, .bottomnav a { color: var(--menu-text, #0f172a) !important; }
.menubar .mitem:hover, .menubar .mitem:focus-visible { color: var(--menu-text, #0f172a) !important; }
.submenu { background: var(--navbar-bg, #fff) !important; }
.title-link { display:block; font-weight:800; }
.grid .title-link, .hot-grid .title-link, .hot-card .title-link { min-height: 40px; line-height: 1.35; }
.admin-products-tabs { display:flex; gap:10px; flex-wrap:wrap; margin: 0 0 14px; }
.admin-products-tabs .tabbtn { border:1px solid var(--line); background:#fff; border-radius:10px; padding:10px 16px; font-weight:700; cursor:pointer; }
.admin-products-tabs .tabbtn.active { background:#111827; color:#fff; border-color:#111827; }
.admin-products-panel[hidden] { display:none !important; }
.product-form-panel { display:grid; gap:14px; }
.product-form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.product-form-grid.full { grid-template-columns:1fr; }
.product-form-grid .span-2 { grid-column:1 / -1; }
.main-image-preview { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.main-image-preview img { width:150px; height:120px; object-fit:cover; border:1px solid var(--line); border-radius:10px; background:#fff; }
.gallery-slot-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.gallery-slot-card { align-content:start; min-height: 100%; }
.gallery-slot-card .slot-top { display:flex; justify-content:space-between; align-items:center; gap:8px; }
.gallery-slot-card .slot-top .small { margin:0; }
.gallery-slot-card .slot-actions { display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }
.gallery-slot-card .upload-note { color:#64748b; font-size:11px; }
.table-products .tr > div:first-child { min-width:220px; }
@media (max-width: 960px) { .gallery-slot-list, .product-form-grid { grid-template-columns:1fr; } .product-form-grid .span-2 { grid-column:auto; } }

.footer, .footer a, .footer .langbtn, .footer .sep, .footer .muted { color: var(--footer-text, #e2e8f0) !important; }
.grid .title, .hot-grid .title, .hot-card .title, .title-link { color: #111827 !important; }
.bottomnav, .mobnav, .mfooter, .mobside, .mobside_head, .mobside_body, .mobcat_row, .mobsubcats, .submenu { background: var(--navbar-bg, #fff) !important; }
.bottomnav a, .mobnav a, .mfooter a, .mobside_link, .mobsub_link, .mobcat_toggle, .mobside_close, .mobside_head b { color: var(--menu-text, #0f172a) !important; }
.mobsub_link { display:block; padding:8px 10px; border-radius:10px; }
.mobsub_link:hover, .mobsub_link:focus-visible { background: rgba(255,255,255,.08); }
.mobcat_toggle { background: transparent; border:1px solid var(--line); border-radius:10px; padding:6px 10px; }


/* 2026-03 final fixes */
.submenu, .submenu_link { background: var(--navbar-bg, #fff) !important; }
.submenu_link { border: 1px solid color-mix(in srgb, var(--menu-text, #0f172a) 10%, #ffffff 90%); }
.submenu_link:hover, .submenu_link:focus-visible { background: color-mix(in srgb, var(--navbar-bg, #fff) 84%, #000 16%) !important; color: var(--menu-text, #0f172a) !important; }
.mnav.has-sub.is-open .mcat, .mnav.has-sub:hover .mcat { color: var(--menu-text, #0f172a) !important; }

.pdetails_html { max-width: 100%; overflow: auto; -webkit-overflow-scrolling: touch; }
.pdetails_html > * { max-width: 100%; }
.pdetails_html img, .pdetails_html iframe, .pdetails_html video { max-width: 100%; height: auto; }
.pdetails_html table { display: block; width: max-content; min-width: 100%; overflow-x: auto; }
.pdetails_html th, .pdetails_html td { min-width: 120px; word-break: break-word; }
@media (max-width: 720px) {
  .pdesc { overflow: hidden; }
  .pdetails_html { max-height: 72vh; padding-bottom: 6px; }
  .pdetails_html table { font-size: 13px; }
}

.admin-products-tabs { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
.admin-products-tabs .tabbtn { width:100%; min-height:48px; border-radius:14px; }
.product-form-panel { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); padding: 16px; border:1px solid var(--line); border-radius:18px; }
.product-form-grid--top > div,
.product-form-grid--media > .span-2,
.product-form-grid > div:not(.span-2) { background:#fff; border:1px solid var(--line); border-radius:16px; padding:14px; }
.product-form-grid .span-2 { background:#fff; border:1px solid var(--line); border-radius:16px; padding:14px; }
.gallery-slot-list { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.gallery-slot-card { padding:12px; min-width:0; }
.gallery-slot-card img { width:100%; height:140px; max-width:none; object-fit:cover; }
.gallery-slot-input { min-height:44px; }
.main-image-preview img { width:180px; height:140px; object-fit:cover; }
.table-products .tr { align-items:center; }
@media (max-width: 960px) {
  .gallery-slot-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .gallery-slot-card { padding:10px; }
  .gallery-slot-card img { height:110px; }
}
@media (max-width: 680px) {
  .admin-products-tabs { grid-template-columns:1fr; }
  .product-form-grid, .gallery-slot-list { grid-template-columns:1fr; }
}


.oldprice, .muted, .label, .pdesc, .pdetails_html, .card, .checkoutBox, .table, .field, .form, .pinfo, .price-select-summary, .emi-trigger-wrap { color:#0f172a; }
.emi-trigger-wrap { margin-top:10px; }
.emi-trigger { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(37,211,102,.18); background:rgba(37,211,102,.08); color:var(--wa3); font-weight:1000; padding:8px 12px; border-radius:999px; cursor:pointer; }
.emi-note { margin-top:6px; font-size:11px; color:#475569; }
.emi-modal[hidden] { display:none !important; }
.emi-modal { position:fixed; inset:0; background:rgba(2,6,23,.55); z-index:120; display:flex; align-items:center; justify-content:center; padding:16px; }
.emi-modal-box { width:min(760px, 100%); max-height:90vh; overflow:auto; background:#fff; border-radius:18px; box-shadow:var(--shadow); padding:18px; }
.emi-modal-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.emi-modal-head h3 { margin:0; font-size:18px; color:var(--wa3); }
.emi-modal-close { border:1px solid var(--line); background:#fff; color:#0f172a; border-radius:10px; padding:8px 10px; cursor:pointer; }
.emi-table { width:100%; border-collapse:collapse; font-size:12px; }
.emi-table th, .emi-table td { border:1px solid var(--line); padding:10px 8px; text-align:left; }
.emi-table th { background:#f8fafc; }
.emi-badge { display:inline-flex; align-items:center; gap:6px; background:#ecfdf5; color:var(--wa3); border:1px solid #bbf7d0; padding:4px 10px; border-radius:999px; font-weight:700; }
.emi-admin-box { border:1px solid var(--line); border-radius:14px; padding:12px; background:#fff; display:grid; gap:10px; }
.emi-plan-row { display:grid; grid-template-columns:1fr 1fr auto; gap:10px; align-items:end; }
.emi-plan-row .btn { white-space:nowrap; }
@media(max-width:640px){ .emi-plan-row { grid-template-columns:1fr; } .emi-table { font-size:11px; } }


html.notice-open, body.notice-open { overflow:hidden; }
.site-notice-modal[hidden] { display:none !important; }
.site-notice-modal { position:fixed; inset:0; z-index:140; display:flex; align-items:center; justify-content:center; padding:18px; }
.site-notice-backdrop { position:absolute; inset:0; background:rgba(2,6,23,.62); }
.site-notice-box { position:relative; width:min(620px, 100%); max-height:88vh; overflow:auto; background:#fff; border-radius:24px; box-shadow:0 28px 80px rgba(2,6,23,.28); padding:18px; z-index:1; }
.site-notice-close { position:absolute; top:12px; right:12px; width:38px; height:38px; border:1px solid var(--line); border-radius:999px; background:#fff; font-size:24px; line-height:1; cursor:pointer; }
.site-notice-slider { display:grid; gap:14px; }
.site-notice-body { display:grid; gap:12px; }
.site-notice-kicker { display:inline-flex; width:max-content; padding:6px 10px; border-radius:999px; background:rgba(37,211,102,.12); color:var(--wa3); font-size:11px; font-weight:800; letter-spacing:.2px; text-transform:uppercase; }
.site-notice-body h3 { margin:0; font-size:24px; line-height:1.2; color:#0f172a; }
.site-notice-image { width:100%; max-height:340px; object-fit:cover; border-radius:18px; border:1px solid var(--line); background:#fff; }
.site-notice-content { color:#334155; line-height:1.75; font-size:15px; white-space:normal; }
.site-notice-controls { display:grid; grid-template-columns:auto 1fr auto; gap:12px; align-items:center; }
.site-notice-controls.single { grid-template-columns:1fr; }
.site-notice-dots { display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
.site-notice-dot { width:11px; height:11px; border-radius:999px; border:0; background:#cbd5e1; cursor:pointer; }
.site-notice-dot.active { background:var(--wa3); transform:scale(1.15); }
@media (max-width:640px){ .site-notice-box { padding:16px; border-radius:20px; } .site-notice-body h3 { font-size:20px; } .site-notice-content { font-size:14px; line-height:1.65; } .site-notice-controls { grid-template-columns:1fr; } }


/* hot products compact layout */
.hot-products .hot-track {
	gap: 8px;
}

.hot-grid .hot-card,
.hot-track .hot-card {
	border-radius: 12px;
}

.hot-grid .body,
.hot-card .body {
	padding: 6px 7px 7px;
	gap: 4px;
}

.hot-grid .title,
.hot-card .title {
	font-size: 10px;
	line-height: 1.25;
	min-height: 2.4em;
}

.hot-grid .row,
.hot-card .row {
	gap: 4px;
	align-items: center;
}

.hot-grid .prices,
.hot-card .prices {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hot-grid .oldprice,
.hot-card .oldprice {
	font-size: 10px;
}

.hot-grid .price,
.hot-card .price {
	font-size: 12px;
	line-height: 1.1;
}

.hot-grid form,
.hot-card form {
	margin-left: auto;
}

.hot-grid .btn,
.hot-card .btn {
	padding: 4px 6px;
	font-size: 10px;
	border-radius: 8px;
	white-space: nowrap;
}

.hot-grid .img,
.hot-card .img,
.product-media .hot-grid .img,
.product-media .hot-card .img {
	min-height: 150px;
	height: 150px;
	max-height: 150px;
}

.hot-grid .img img,
.hot-card .img img {
	height: 150px;
}

@media(max-width:720px) {
	.hot-products .hot-track {
		gap: 6px;
	}

	.hot-grid .body,
	.hot-card .body {
		padding: 5px 6px 6px;
	}

	.hot-grid .title,
	.hot-card .title {
		font-size: 9px;
		min-height: 2.3em;
	}

	.hot-grid .oldprice,
	.hot-card .oldprice,
	.hot-grid .price,
	.hot-card .price,
	.hot-grid .btn,
	.hot-card .btn {
		font-size: 9px;
	}

	.hot-grid .img,
	.hot-card .img {
		min-height: 110px;
		height: 110px;
		max-height: 110px;
	}

	.hot-grid .img img,
	.hot-card .img img {
		height: 110px;
	}
}


/* static pages */
.page-shell{display:grid;gap:18px}
.page-hero{border:1px solid var(--line);border-radius:22px;padding:24px;background:linear-gradient(135deg,#ffffff,#f4fff8);box-shadow:0 14px 34px rgba(2,6,23,.05)}
.page-kicker{display:inline-flex;width:max-content;padding:6px 12px;border-radius:999px;background:rgba(37,211,102,.12);color:var(--wa3);font-weight:800;font-size:12px;letter-spacing:.2px;text-transform:uppercase}
.page-hero h1{margin:10px 0 8px;font-size:32px;line-height:1.15;color:#0f172a}
.page-hero p{margin:0;color:#475569;max-width:860px;line-height:1.75}
.page-card{border:1px solid var(--line);border-radius:22px;padding:20px;background:#fff;box-shadow:0 10px 26px rgba(2,6,23,.04)}
.page-card h2{margin:0 0 10px;font-size:22px;color:#0f172a}
.page-content{color:#334155;line-height:1.85;font-size:15px}
.page-content p{margin:0 0 14px}
.page-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px}
.contact-list{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.contact-list li{border:1px solid var(--line);border-radius:16px;padding:14px 16px;background:#fff}
.contact-list .label{display:block;font-size:12px;font-weight:800;color:#64748b;letter-spacing:.18px;text-transform:uppercase;margin-bottom:4px}
.contact-list .value{display:block;color:#0f172a;font-size:15px;line-height:1.7;word-break:break-word}
.footer .footlinks{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
@media(max-width:780px){.page-hero{padding:18px;border-radius:18px}.page-hero h1{font-size:24px}.page-card{padding:16px;border-radius:18px}.page-grid{grid-template-columns:1fr}.page-content,.contact-list .value{font-size:14px}}


/* 2026-03 compact card alignment fixes */
.deal-strip.two-side {
  min-height: 22px;
  align-items: flex-start;
}
.deal-strip.two-side .deal-side {
  min-height: 20px;
  align-items: flex-start;
}
.deal-strip.two-side .deal-badge {
  min-height: 18px;
}
.deal-strip.two-side .deal-placeholder {
  min-width: 54px;
  visibility: hidden;
}
.grid .body,
.hot-grid .body,
.hot-card .body {
  padding: 6px 7px 8px;
  gap: 4px;
}
.grid .title,
.hot-grid .title,
.hot-card .title,
.grid .title-link,
.hot-grid .title-link,
.hot-card .title-link {
  line-height: 1.24;
  min-height: 2.48em;
  max-height: 2.48em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid .muted,
.hot-grid .muted,
.hot-card .muted {
  font-size: 11px;
  line-height: 1.22;
  min-height: 2.44em;
  max-height: 2.44em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid .row,
.hot-grid .row,
.hot-card .row {
  margin-top: auto;
  padding-top: 2px;
  align-items: flex-end;
}
.grid .btn,
.hot-grid .btn,
.hot-card .btn {
  white-space: nowrap;
}
@media(max-width:720px){
  .deal-strip.two-side {
    min-height: 20px;
  }
  .deal-strip.two-side .deal-placeholder {
    min-width: 46px;
  }
  .grid .body,
  .hot-grid .body,
  .hot-card .body {
    padding: 6px;
    gap: 3px;
  }
  .grid .title,
  .hot-grid .title,
  .hot-card .title,
  .grid .title-link,
  .hot-grid .title-link,
  .hot-card .title-link {
    min-height: 2.36em;
    max-height: 2.36em;
  }
  .grid .muted,
  .hot-grid .muted,
  .hot-card .muted {
    font-size: 10px;
    min-height: 2.3em;
    max-height: 2.3em;
  }
}
