:root {
	--green: #4A1080;
	--pink: #8B3FC8;
	--accent: #C8960A;
	--border: #e6e6e6;
	--bg: #fdf8ff;
	--bg-card: #ffffff;
	--muted: #7a5a90;
	--header-bg: #fdf8ff;
	--footer-bg: #fdf8ff;
	--font-body: 'Poppins', Verdana, sans-serif;
	--font-display: 'Playfair Display', Georgia, serif;
}

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: #4A1080;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4,
.header-brand-name,
.summary-title,
.os-section-title {
	font-family: var(--font-display);
}

.scroll-area {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

a {
	color: #8B3FC8;
	text-decoration: none;
}

a:hover {
	color: var(--accent);
	text-decoration: underline;
}
  

h3 {
	color: #8B3FC8;
}

label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold
}

ul li {
	margin-bottom: 12px; /* adds space after each line */
}  

input[type="text"],
input[type="number"],
input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 6px;
}

.product-title {
	font-size: 15px;
	font-weight: bold;
}

.product-title-cart {
	font-size: 13px;
	margin-bottom: 10px;
}

.product-price {
	color: #8B3FC8;
	font-size: 16px;
}

.price-with-mrp {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.product-mrp {
	color: #aaa;
	font-size: 16px;
	text-decoration: line-through;
}

.product-price_total {
	color: #eb6d5a;
	font-size: 16px;
	padding-top: 10px;
}

.body-section {
	padding: 16px;
}
.body-section > div:not(.marathi),
.body-section > h3,
.body-section > p,
.body-section > ul {
	background: var(--bg-card);
	border-radius: 12px;
	padding: 16px 18px;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(139,63,200,0.08);
	border-left: 4px solid var(--accent);
}
.body-section > .marathi {
	background: #fff;
	border-left: 4px solid var(--accent);
	border-radius: 0 0 12px 12px;
	padding: 10px 18px;
	margin-top: -16px;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(139,63,200,0.08);
	border-top: none;
	font-size: 13px;
	color: var(--muted);
}
.body-section h3 {
	background: linear-gradient(135deg, #4A1080, #8B3FC8);
	color: #FFD700 !important;
	border-left: none;
	border-radius: 10px;
	padding: 12px 18px;
	font-size: 0.95rem;
	letter-spacing: 0.3px;
}
.body-section h3 .lang-marathi {
	color: rgba(255,215,0,0.75);
}
.body-section ul {
	padding-left: 32px;
}
.body-section > p:has(+ .marathi),
.body-section > ul:has(+ .marathi),
.body-section > div:not(.marathi):has(+ .marathi) {
	border-radius: 12px 12px 0 0;
	margin-bottom: 0;
	box-shadow: none;
}

/* ── Compact fixed bar — hidden since header is already compact ──────── */
.compact-bar {
	display: none !important;
}

.compact-bar.visible {
	top: 0;
}

.compact-logo {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 4px;
}

.compact-center {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.compact-tagline {
	font-size: 13px;
	font-weight: 600;
	color: #4A1080;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.compact-count {
	display: block !important;
	font-size: 11px !important;
	font-weight: normal !important;
	letter-spacing: 0.5px !important;
	color: #555 !important;
	margin: 2px 0 0 !important;
}


/* ── Main header ─────────────────────────────────────────────────────── */
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 4px 16px;
	background-color: var(--header-bg);
	border-bottom: 2px solid var(--accent);
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(200,150,10,0.12);
}

.logo-img {
	width: 66px;
	height: 66px;
	flex-shrink: 0;
	border-radius: 6px;
	object-fit: cover;
}

.header-center {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.header-home-btn {
	color: #8B3FC8;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	font-size: 22px;
}

.header-home-btn:hover {
	color: #4A1080;
	text-decoration: none;
}

.footer a[href="index.html"] {
	color: #8B3FC8;
	font-size: 20px;
	text-decoration: none;
}

.footer a[href="index.html"]:hover {
	color: var(--accent);
}

.header-brand-name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #8B3FC8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-subtitle {
	margin: 1px 0 0;
	font-size: 12px;
	color: #555;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-tagline {
	margin: 1px 0 0;
	font-size: 11px;
	color: #555;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.totalProductCount {
	display: block;
	margin: 2px 0 0;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #555;
}


.footer-logo-img {
	width: 75px;
	height: 75px;
}

.social-icon {
	width: 50px;
	height: 50px;
}


.footer {
	text-align: center;
	padding: 16px 16px;
	border-top: 2px solid var(--accent);
	background-color: var(--footer-bg);
}
.footer p {
	color: var(--green);
	font-size: 13px;
	margin-bottom: 4px;
}
.footer a {
	color: var(--pink);
	font-size: 13px;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
	color: var(--accent);
}


.cart-icon {
	background: var(--pink);
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	display: inline-block;
	border: none;
	cursor: pointer;
	font-size: inherit;
	font-family: inherit;
}

.layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 20px;
	padding: 16px
}


.products .product {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	align-items: center
}

.products img,
.img-wrap {
	position: relative;
	width: 70px;
	height: 70px;
	flex-shrink: 0;
}

.img-wrap::after {
	content: none;
}

.section-divider {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	margin: 4px 0;
}

.products .product:has(+ .section-divider) {
	border-bottom: none;
}

.section-divider::before,
.section-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--accent, #C8960A);
	opacity: 0.5;
}

.section-divider span {
	font-size: 11px;
	font-weight: 600;
	color: var(--accent, #C8960A);
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
}

.product-img {
	width: 70px;
	height: 70px;
	box-sizing: border-box;
	border: 2px solid var(--accent);
	border-radius: 10px;
	object-fit: cover;
	flex-shrink: 0;
	cursor: pointer;
}

.product-no-img {
	width: 70px;
	height: 70px;
	box-sizing: border-box;
	border: 2px solid var(--accent);
	border-radius: 10px;
	background: #f0f0f0;
	flex-shrink: 0;
}

.product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: 10px;
}

.add-btn {
	border: 1.5px solid var(--pink);
	color: var(--pink);
	background: none;
	padding: 6px 12px;
	border-radius: 14px;
	font-size: 13px;
	font-family: inherit;
	cursor: pointer;
}

.qty-box {
	display: none;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden
}

.qty-box button {
	width: 30px;
	border: none;
	background: #f6f6f6
}

.qty-box span {
	width: 32px;
	text-align: center;
	line-height: 30px
}

.cart {
	border-left: 1px solid var(--border);
	padding-left: 16px;
	flex-direction: column
}

.cart-row {
	display: flex;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border)
}

.cart-row img {
	width: 55px;
	height: 55px;
	box-sizing: border-box;
	border: 2px solid var(--accent);
	border-radius: 10px
}

.cart-qty {
	display: inline-flex;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden
}

.cart-qty button {
	width: 28px;
	border: none;
	background: #f6f6f6
}

.cart-qty span {
	width: 30px;
	text-align: center;
	line-height: 28px;
}

.cart-footer {
	margin-top: auto;
	padding-bottom: 25px;
}

.clear-cart {
	background: none;
	border: none;
	color: #777;
	cursor: pointer;
}

.cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cartItems {
	margin-top: 10px;
	overflow-y: auto;
	flex: 1;
	padding-right: 6px;
}

.subtotal {
	display: flex;
	justify-content: space-between;
	margin: 16px 0;
}

.order-confirmed {
	text-align: center;
	padding: 40px 20px;
}

.confirmed-icon {
	font-size: 56px;
	margin-bottom: 12px;
}

.order-confirmed h3 {
	font-size: 22px;
	color: var(--green);
	margin-bottom: 8px;
}

.order-confirmed p {
	font-size: 15px;
	color: #555;
	margin: 6px 0;
}

.redirect-msg {
	margin-top: 20px;
	font-size: 13px;
	color: var(--muted);
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
}

.form-field label {
	font-weight: 600;
	font-size: 14px;
}

.form-field input {
	padding: 8px 10px;
	border: 1px solid var(--border);
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	width: 100%;
	box-sizing: border-box;
}

.form-field input[readonly] {
	background: #f5f0fa;
	color: var(--muted);
	cursor: default;
}

.pin-input-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pin-input-row input {
	flex: 1;
}

.pin-status {
	font-size: 13px;
	white-space: nowrap;
	min-width: 24px;
}

.pin-ok  { color: #2e7d32; font-weight: 700; }
.pin-err { color: #c62828; font-size: 12px; }
.pin-loading { color: var(--muted); }

.confirm-order-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 4px 0;
	margin-bottom: 14px;
	cursor: pointer;
	line-height: 1.5;
}

.confirm-text {
	display: flex;
	flex-direction: column;
	font-size: 13px;
	color: #4A1080;
}

.confirm-order-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--pink);
	cursor: pointer;
}

.summary-title {
	margin: 4px 0 6px;
}

.order-summary-bar {
	background: #fff5f8;
	border: 1px solid var(--pink);
	border-radius: 8px;
	padding: 10px 14px;
	margin-bottom: 16px;
	font-size: 14px;
	color: #333;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.summary-total-row {
	border-top: 1px solid var(--pink);
	padding-top: 6px;
	font-weight: 700;
	font-size: 15px;
}

.summary-note {
	font-size: 11px;
	color: #c0392b;
	line-height: 1.4;
	margin-top: -2px;
}

.checkout {
	background: linear-gradient(135deg, var(--green), var(--pink));
	border: 1px solid var(--accent);
	color: #fff;
	padding: 10px;
	width: 100%;
	border-radius: 6px;
	font-weight: 600;
	letter-spacing: 0.2px;
	transition: box-shadow 0.2s ease;
}

.checkout:not(:disabled):hover {
	box-shadow: 0 0 0 3px rgba(200,150,10,0.25);
}

.checkout:disabled {
	background: #ccc;
	border-color: #ccc;
	color: #888;
	cursor: not-allowed;
	opacity: 0.7;
}

.mobile-tabs .active {
	background: #f0e4ff;
	border-color: var(--accent);
	color: #4A1080;
	font-weight: 600;
}

.mobile-tabs span {
	border: 1px solid var(--border);
	padding: 6px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.search-bar {
	padding: 10px 16px 12px;
	background: #fff;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
}

.search-input-wrap {
	position: relative;
	width: 100%;
}

.search-input-wrap input {
	width: 100%;
	padding-right: 40px !important;
}

.search-clear-btn {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	color: #aaa;
	line-height: 1;
	padding: 2px 4px;
	border-radius: 50%;
}

.search-clear-btn:hover {
	color: #555;
	background: #eee;
}

.search-bar input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 16px;
	border: 1.5px solid var(--border);
	border-radius: 24px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s;
}

.search-bar input:focus {
	border-color: var(--pink);
}

.mobile-tabs {
	display: flex;
	padding: 10px;
	gap: 8px;
	overflow-x: auto;
	background: #fff;
	border-bottom: 1px solid var(--accent);
	flex-shrink: 0;
}

.floating-cart {
	display: none;
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pink);
	color: #fff;
	padding: 12px 20px;
	border-radius: 30px
}

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

	.cart {
		display: none;
	}

	.mobile-tabs {
		display: flex;
	}

	.floating-cart {
		display: block;
	}
}

/* Mobile Cart Drawer */
.cart-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 90%;
	max-width: 360px;
	height: 100%;
	background: #fff;
	z-index: 1001;
	padding: 16px;
	box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
}

.cart-drawer.open {
	right: 0;
}

.cart-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--border);
	padding-bottom: 10px;
}

.close-drawer {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

/* Overlay */
.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1000;
	display: none;
}

.drawer-overlay.show {
	display: block;
}

/* Desktop unchanged */
@media (min-width: 992px) {

	.cart-drawer,
	.drawer-overlay {
		display: none !important;
	}
}

.checkout {
	position: relative;
	cursor: pointer;
	/* hand cursor */
}

/* Hand icon */
.checkout::after {
	content: "👉";
	position: absolute;
	right: 16px;
	opacity: 0;
	transform: translateX(-6px);
	transition: all 0.2s ease;
}

/* Show hand on hover (only when enabled) */
.checkout:not(:disabled):hover::after {
	opacity: 1;
	transform: translateX(0);
}

/* Category clickable */
.mobile-tabs span {
	cursor: pointer;
	position: relative;
}

.mobile-tabs span.active::after {
	opacity: 1;
}

.mobile-tabs span:active {
	transform: scale(0.96);
}

/* Image Popup Modal */
.image-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}

.modal-img-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 85%;
	max-height: 85%;
}

.modal-img-wrap img {
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	border: 3px solid var(--accent);
	border-radius: 10px;
	display: block;
	box-shadow: 0 0 16px rgba(200, 150, 10, 0.4);
}

.modal-close-btn {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	border: 2px solid #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.modal-close-btn:hover {
	background: #4A1080;
}

.modal-watermark {
	position: absolute;
	pointer-events: none;
	user-select: none;
	opacity: 0.8;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
	white-space: nowrap;
}

.modal-watermark-top {
	top: 10px;
	left: 10px;
}

.modal-watermark-bottom {
	bottom: 10px;
	right: 10px;
}


.image-modal .nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 50px;
	color: white;
	cursor: pointer;
	padding: 10px;
	z-index: 10;
}

.image-modal .prev {
	left: 20px;
}

.image-modal .next {
	right: 20px;
}

/* Mobile Cart Scroll */
.cart-drawer .cartItems {
	margin-top: 10px;
}

.stock-badge {
	font-size: 11px;
	font-weight: 600;
	color: #C8960A;
	margin-left: 6px;
}
.per-pc-badge {
	display: inline-block;
	background: #f5eeff;
	color: var(--green);
	border: 1px solid var(--pink);
	border-radius: 20px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 6px;
	vertical-align: middle;
	white-space: nowrap;
}

.out-of-stock-btn {
	border: 1.5px solid #c0392b;
	color: #c0392b;
	background: none;
	padding: 6px 12px;
	border-radius: 14px;
	cursor: not-allowed;
	font-family: inherit;
	font-size: 13px;
}

.category-count {
	font-size: 14px;
	font-weight: normal;
	color: #888;
}

.coming-soon-btn {
	border: 1.5px solid var(--accent);
	color: var(--accent);
	background: none;
	padding: 6px 12px;
	border-radius: 14px;
	cursor: not-allowed;
	font-family: inherit;
	font-size: 13px;
}

.order-item-img {
	box-sizing: border-box;
	border: 2px solid var(--accent);
	border-radius: 8px;
	object-fit: cover;
	cursor: pointer;
	flex-shrink: 0;
}

.order-summary-page {
	margin-top: 6px;
}

/* ── Order Status Tracker ────────────────────────────────────────────────── */
.os-tracker {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 0 0 20px;
	padding: 18px 12px;
	background: #fdf8ff;
	border: 1px solid #e8d0f8;
	border-radius: 12px;
	width: 100%;
	box-sizing: border-box;
}
.os-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1 1 0;
	min-width: 0;
	max-width: 90px;
}
.os-step-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #aaa;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	border: 2px solid #ddd;
	transition: all 0.3s;
	flex-shrink: 0;
}
.os-step.done .os-step-dot {
	background: #8B3FC8;
	color: #fff;
	border-color: #8B3FC8;
}
.os-step.current .os-step-dot {
	background: #fff;
	color: #8B3FC8;
	border-color: #8B3FC8;
	box-shadow: 0 0 0 3px #e8d0f8;
	font-size: 16px;
}
.os-step-label {
	font-size: 11px;
	font-weight: 600;
	color: #aaa;
	text-align: center;
	white-space: normal;
	word-break: break-word;
	line-height: 1.2;
	width: 100%;
}
.os-step.done  .os-step-label { color: #8B3FC8; }
.os-step.current .os-step-label { color: #4A1080; }
.os-step-line {
	flex: 1;
	height: 3px;
	background: #e0e0e0;
	margin-top: 16px;
	border-radius: 2px;
	min-width: 10px;
}

@media (max-width: 480px) {
	.os-tracker { padding: 14px 4px 12px; }
	.os-step { max-width: 54px; gap: 5px; }
	.os-step-dot { width: 28px; height: 28px; font-size: 11px; }
	.os-step.current .os-step-dot { font-size: 12px; }
	.os-step-label { font-size: 8.5px; }
	.os-step-line { margin-top: 12px; max-width: 20px; }
}
.os-step-line.done { background: #8B3FC8; }

.os-status-badge {
	padding: 3px 12px;
	border-radius: 20px;
	font-size: 0.82rem;
	font-weight: 700;
}
.os-status-Pending      { background: #fff3e0; color: #e65c00; }
.os-status-Confirmed    { background: #e3f2fd; color: #1565c0; }
.os-status-PaymentDone  { background: #f3e5f5; color: #4A1080; }
.os-status-Packaging    { background: #fff8e1; color: #b8860b; }
.os-status-Dispatched   { background: #f3e5f5; color: #6a1b9a; }
.os-status-Delivered    { background: #fff8e1; color: #C8960A; }
.os-status-Cancelled    { background: #fdecea; color: #c0392b; }

.os-status-cancelled {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px;
	margin-bottom: 20px;
	background: #fdecea;
	border: 1.5px solid #f5c6cb;
	border-radius: 12px;
	color: #c0392b;
	font-weight: 700;
	font-size: 1rem;
}
.os-status-cancelled span { font-size: 1.2rem; }

.os-meta {
	background: #fff5f8;
	border: 1px solid var(--pink);
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 20px;
	font-size: 14px;
}

.os-meta-row {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	border-bottom: 1px solid #f5dde5;
}

.os-meta-row:last-child {
	border-bottom: none;
}

.os-meta-row span:first-child {
	color: var(--muted);
	font-weight: 600;
}

.os-meta-row-address span:last-child {
	line-height: 1.5;
	text-align: right;
	max-width: 65%;
}

.os-section-title {
	margin: 0 0 10px;
	font-size: 15px;
}

.os-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.os-item-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.os-item-name {
	font-weight: 600;
	font-size: 14px;
}

.os-item-meta {
	font-size: 13px;
	color: var(--muted);
}

.os-item-total {
	font-weight: 600;
	white-space: nowrap;
}

.os-charges {
	margin-top: 16px;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	font-size: 14px;
}

.os-charge-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 14px;
	border-bottom: 1px solid var(--border);
}

.os-charge-row:last-child {
	border-bottom: none;
}

.os-grand-total {
	background: #fff5f8;
	font-weight: 700;
	font-size: 15px;
}

.os-savings-msg {
	color: #2a7a2a;
	font-size: 15px;
	font-weight: 600;
}

.os-thankyou {
	margin-top: 20px;
	margin-bottom: 32px;
	padding: 14px 16px;
	background: #fdf8ff;
	border-radius: 8px;
	text-align: center;
	font-size: 14px;
	line-height: 1.8;
}

.highlight {
	color: #8B3FC8;
}

.marathi {
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

.lang-marathi {
	color: var(--muted);
	font-size: 15px;
	font-weight: normal;
}

