:root {
	--wa: #25D366;
	--wa2: #128C7E;
	--wa3: #075E54;
	--line: rgba(2, 6, 23, .10);
	--r: 5px;
	--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: 110px
}

.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: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px)
}

.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: #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: 64px;
	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: 15px 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: 10px 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: 8px 10px;
	border-radius: var(--r);
	border: 0;
	cursor: pointer;
	font-weight: 1000;
	color: #fff;
	background: linear-gradient(135deg, var(--wa), var(--wa2))
}

.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: #0b1220;
	color: #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: #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
}

@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: #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: #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: #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)
}

.mobside_close {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	padding: 6px 10px;
	cursor: pointer
}

.mobside_body {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	overflow: auto
}

.mobside_link {
	padding: 10px 10px;
	border: 1px solid var(--line);
	border-radius: 12px;
	color: #0f172a;
	background: #f8fafc
}

.mobside_link:hover {
	background: rgba(37, 211, 102, .08)
}

.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-badge {
		padding: 5px 8px;
		font-size: 10px
	}
}
.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
	}
}
