:root {
	--green: #0f7b5f;
	--leaf: #dff5ea;
	--ink: #17201c;
	--muted: #66736d;
	--line: #dde5e0;
	--paper: #fff;
	--soft: #f6f8f3;
	--gold: #f0b429;
	--shadow: 0 16px 36px rgba(22, 35, 30, .14)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--soft);
	font-family: Arial, Helvetica, sans-serif
}

button,
input,
select,
textarea {
	font: inherit
}

button {
	cursor: pointer
}

a {
	text-decoration: none
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: 44px 1fr auto;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: max(8px, env(safe-area-inset-top)) 14px 8px;
	background: #2b7fff !important;
	border-bottom: 1px solid var(--line)
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
	font-size: 17px;
	font-weight: 800
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: #fff;
	background: var(--green);
	border-radius: 50%
}

.icon-button,
.cart-button,
.plain-button {
	border: 0;
	background: transparent
}

.icon-button {
	display: grid;
	gap: 4px;
	width: 40px;
	height: 40px;
	padding: 11px 9px
}

.icon-button span {
	height: 2px;
	background: white;
	border-radius: 2px
}

.cart-button {
	min-width: 62px;
	height: 40px;
	padding: 0 10px;
	color: #fff;
	background: var(--green);
	border-radius: 6px;
	font-weight: 700
}

.cart-button span {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	margin-left: 3px;
	color: var(--ink);
	background: var(--gold);
	border-radius: 20px;
	font-size: 12px
}

.deal-strip {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 10px 14px;
	background: #fff8dc;
	border-bottom: 1px solid #f5df9c
}

.deal-strip span {
	flex: 0 0 auto;
	padding: 6px 10px;
	background: #fff;
	border: 1px solid #f0d57d;
	border-radius: 999px;
	color: #6b4d00;
	font-size: 13px;
	font-weight: 700
}

.hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	min-height: calc(100svh - 170px);
	padding: 24px 16px;
	background: linear-gradient(135deg, #f9f0d3 0%, #e2f6eb 52%, #fff 100%)
}

.hero-copy {
	align-self: end;
	max-width: 620px
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--green);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase
}

h1,
h2,
h3,
p {
	margin-top: 0
}

h1 {
	margin-bottom: 10px;
	font-size: 34px;
	line-height: 1.08
}

.hero p {
	color: #3e4f48;
	line-height: 1.55
}

.primary-link,
.primary-button,
.checkout-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	color: #fff;
	background: var(--green);
	border: 0;
	border-radius: 6px;
	font-weight: 800
}

.outline-button {
	min-height: 46px;
	padding: 0 18px;
	color: var(--green);
	background: #fff;
	border: 1px solid var(--green);
	border-radius: 6px;
	font-weight: 800
}

.full {
	width: 100%
}

.hero-art {
	display: grid;
	place-items: center;
	min-height: 210px
}

.bowl {
	position: relative;
	width: min(78vw, 360px);
	aspect-ratio: 1.24;
	background: radial-gradient(circle at 50% 30%, #fff 0 28%, #f6d88d 29% 52%, #b77835 53% 100%);
	border: 10px solid rgba(255, 255, 255, .82);
	border-radius: 48% 48% 40% 40%;
	box-shadow: var(--shadow)
}

.bowl i {
	position: absolute;
	display: block;
	border-radius: 50%;
	box-shadow: inset 0 4px 9px rgba(255, 255, 255, .35), 0 3px 8px rgba(0, 0, 0, .14)
}

.bowl i:nth-child(1) {
	left: 17%;
	top: 26%;
	width: 68px;
	height: 34px;
	background: #c27b39;
	transform: rotate(-20deg)
}

.bowl i:nth-child(2) {
	right: 18%;
	top: 21%;
	width: 78px;
	height: 44px;
	background: #f4d59a;
	border-radius: 50% 20% 50% 20%;
	transform: rotate(18deg)
}

.bowl i:nth-child(3) {
	left: 42%;
	top: 47%;
	width: 44px;
	height: 38px;
	background: #5b332d
}

.bowl i:nth-child(4) {
	right: 31%;
	bottom: 22%;
	width: 58px;
	height: 50px;
	background: #a86e3e
}

.bowl i:nth-child(5) {
	left: 25%;
	bottom: 24%;
	width: 56px;
	height: 34px;
	background: #b6cb78;
	transform: rotate(25deg)
}

.toolbar,
.products-section,
.page-shell {
	padding: 16px
}

.toolbar {
	display: grid;
	gap: 10px;
	background: var(--paper)
}

input,
select,
textarea {
	width: 100%;
	min-height: 44px;
	padding: 0 12px;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 6px
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px
}

.section-head h2 {
	margin-bottom: 0;
	font-size: 22px
}

.section-head span,
.muted {
	color: var(--muted);
	font-size: 13px
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px
}

.product-card,
.details-card,
.form-card,
.summary-card,
.payment-card,
.thankyou-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(22, 35, 30, .06)
}

.product-card {
	display: grid;
	overflow: hidden
}

.product-art {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	background: var(--leaf);
	overflow: hidden
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.product-art span {
	display: block;
	width: 68%;
	aspect-ratio: 1;
	border-radius: 46%;
	background: var(--art);
	box-shadow: inset 0 7px 18px rgba(255, 255, 255, .48)
}

.product-body {
	display: grid;
	gap: 8px;
	padding: 10px
}

.product-title {
	min-height: 38px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35
}

.product-meta {
	color: var(--muted);
	font-size: 12px
}

.price-row {
	display: flex;
	align-items: baseline;
	gap: 7px
}

.price {
	font-size: 17px;
	font-weight: 900
}

.mrp {
	color: var(--muted);
	font-size: 12px;
	text-decoration: line-through
}

.add-button {
	width: 100%;
	min-height: 40px;
	color: var(--green);
	background: #fff;
	border: 1px solid var(--green);
	border-radius: 6px;
	font-weight: 800
}

.page-shell {
	display: grid;
	gap: 12px
}

.back-button {
	justify-self: start;
	min-height: 36px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 6px
}

.details-card,
.form-card,
.summary-card,
.payment-card,
.thankyou-card {
	padding: 16px
}

.details-image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	background: var(--leaf);
	border-radius: 8px;
	margin-bottom: 14px
}

.details-image span {
	width: 65%;
	aspect-ratio: 1;
	border-radius: 46%;
	background: var(--art)
}

.bottom-action {
	position: sticky;
	bottom: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 12px 0;
	background: var(--soft)
}

form {
	display: grid;
	gap: 10px
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 120px;
	gap: 10px
}

.summary-row,
.price-box div {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 0px solid var(--line)
}

.payment-option {
	display: grid;
	gap: 4px;
	margin: 14px 0;
	padding: 14px;
	background: var(--leaf);
	border: 1px solid #a7dec5;
	border-radius: 8px
}

.success-mark {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 12px;
	color: #fff;
	background: var(--green);
	border-radius: 50%;
	font-weight: 900
}

.suggested-section {
	display: grid;
	gap: 12px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden
}

.suggested-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 4px;
	scrollbar-width: none
}

.suggested-track::-webkit-scrollbar {
	display: none
}

.suggested-card {
	flex: 0 0 72%;
	max-width: 260px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
	scroll-snap-align: start
}

.suggested-art {
	display: grid;
	place-items: center;
	aspect-ratio: 1.05;
	background: var(--leaf);
	overflow: hidden
}

.suggested-art span {
	display: block;
	width: 66%;
	aspect-ratio: 1;
	border-radius: 46%;
	background: var(--art);
	box-shadow: inset 0 7px 18px rgba(255, 255, 255, .48)
}

.suggested-body {
	display: grid;
	gap: 7px;
	padding: 10px
}

.suggested-body strong {
	min-height: 38px;
	font-size: 14px;
	line-height: 1.35
}

.suggested-body small {
	color: var(--muted)
}

.cart-panel {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: none;
	background: rgba(0, 0, 0, .45)
}

.cart-panel.open {
	display: block
}

.cart-sheet {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	max-height: 92svh;
	overflow: auto;
	background: var(--paper);
	border-radius: 12px 12px 0 0;
	box-shadow: var(--shadow)
}

.cart-head {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background: #fff;
	border-bottom: 1px solid var(--line)
}

.cart-head h2 {
	margin: 0;
	font-size: 20px
}

.plain-button {
	color: var(--green);
	font-weight: 800
}

.cart-items {
	display: grid;
	gap: 10px;
	padding: 14px 16px
}

.cart-total {
	display: flex;
	justify-content: space-between;
	padding: 14px 16px;
	border-top: 1px solid var(--line)
}

.checkout-link {
	margin: 0 16px 16px;
	width: calc(100% - 32px)
}

.cart-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line)
}

.qty {
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.qty button {
	width: 30px;
	height: 30px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 6px
}

.toast {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 50;
	max-width: calc(100vw - 32px);
	padding: 10px 12px;
	color: #fff;
	background: var(--ink);
	border-radius: 6px;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .18s ease, transform .18s ease
}

.toast.show {
	opacity: 1;
	transform: translateY(0)
}

.site-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 16px;
	background: #fff;
	border-top: 1px solid var(--line)
}

.site-footer a {
	color: var(--green);
	font-size: 13px;
	font-weight: 700
}

.policy-card {
	padding: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	line-height: 1.65
}

.policy-card h1 {
	font-size: 28px
}

.policy-card h2 {
	font-size: 20px;
	margin-top: 18px
}

@media (min-width:560px) {

	.hero,
	.toolbar,
	.products-section,
	.page-shell {
		padding-right: 24px;
		padding-left: 24px
	}

	.hero {
		grid-template-columns: 1.1fr .9fr;
		align-items: center;
		min-height: 520px
	}

	.hero-copy {
		align-self: center
	}

	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr))
	}

	.toolbar {
		grid-template-columns: 1fr 190px;
		align-items: end
	}

	.cart-sheet {
		left: auto;
		width: min(430px, 100vw);
		min-height: 100svh;
		border-radius: 0
	}

	.details-card {
		display: grid;
		grid-template-columns: 260px 1fr;
		gap: 18px
	}

	.details-image {
		margin-bottom: 0
	}

	.suggested-card {
		flex-basis: 210px
	}
}

@media (min-width:900px) {

	.topbar,
	.deal-strip,
	.hero,
	.toolbar,
	.products-section,
	.page-shell {
		padding-right: max(32px, calc((100vw - 1120px)/2));
		padding-left: max(32px, calc((100vw - 1120px)/2))
	}

	h1 {
		font-size: 48px
	}

	.product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr))
	}
}