* {
	box-sizing: border-box
}

:root {
	--g: #244d36;
	--d: #173827;
	--s: #e0e9d8;
	--c: #f5f3eb;
	--p: #fffdf9;
	--gold: #c69a4b;
	--m: #707770;
	--l: #e4e7df
}

body {
	margin: 0;
	background: var(--p);
	color: #20251f;
	font: 14px "DM Sans", Arial, sans-serif
}

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

.container {
	width: min(1180px, calc(100% - 40px));
	margin: auto
}

.brand {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--g)
}

.brand>b {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--g);
	color: #fff;
	display: grid;
	place-items: center;
	font: 22px "Playfair Display", serif
}

.brand span {
	display: flex;
	flex-direction: column;
	line-height: 1
}

.brand strong {
	font: 25px "Playfair Display", serif
}

.brand small {
	font-size: 7px;
	letter-spacing: .28em;
	font-weight: 700;
	margin-top: 5px
}

.header {
	height: 78px;
	border-bottom: 1px solid var(--l);
	background: #fffdf9ee;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px)
}

.nav {
	height: 78px;
	display: flex;
	align-items: center;
	gap: 28px
}

.actions {
	display: flex;
	gap: 5px
}

.actions a, .actions button {
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: var(--g);
	display: grid;
	place-items: center;
	border-radius: 50%;
	position: relative
}

.actions a:hover, .actions button:hover {
	background: var(--s)
}

.count em {
	position: absolute;
	right: -1px;
	top: -1px;
	background: var(--g);
	color: #fff;
	border-radius: 20px;
	font: 8px Arial;
	padding: 3px 5px
}

.searchbar {
	padding: 12px 0;
	border-bottom: 1px solid var(--l);
	background: #fff
}

.searchbar .container {
	display: flex;
	align-items: center;
	border: 1px solid var(--l);
	height: 43px;
	border-radius: 8px
}

.searchbar input {
	flex: 1;
	border: 0;
	outline: 0;
	padding: 0 10px
}

.searchbar button {
	height: 100%;
	border: 0;
	background: var(--g);
	color: #fff;
	padding: 0 15px
}

.crumb {
	display: flex;
	gap: 8px;
	color: #909890;
	/* font-size: 10px; */
	margin-bottom: 28px
}

.crumb a {
	color: var(--g)
}

.product {
	padding: 35px 0 75px
}

.layout {
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	gap: 65px
}

.main-image {
	height: 570px;
	background: #edf1e8;
	border-radius: 18px;
	overflow: hidden;
	position: relative
}

.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.main-image>span {
	position: absolute;
	z-index: 2;
	left: 16px;
	top: 16px;
	background: var(--g);
	color: #fff;
	border-radius: 5px;
	padding: 7px 9px;
	font-size: 8px;
	font-weight: 800
}

.main-image button {
	position: absolute;
	z-index: 2;
	right: 15px;
	top: 15px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--g)
}

.thumbs {
	display: flex;
	gap: 9px;
	margin-top: 10px
}

.thumb {
	width: 76px;
	height: 76px;
	border: 2px solid transparent;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #edf1e8
}

.thumb.active {
	border-color: var(--g)
}

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

.eyebrow {
	/* font-size: 9px; */
	letter-spacing: .17em;
	font-weight: 800;
	color: var(--gold)
}

.info h1 {
	font: clamp(30px, 3vw, 50px) "Playfair Display", serif;
	line-height: 1;
	color: var(--g);
	margin: 8px 0
}

.subtitle {
	font-size: 14px;
	color: #626b62;
	line-height: 1.7
}

.rating {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	font-size: 12px
}

.rating>span, .reviewhead span, .reviews article>div>span {
	color: var(--gold);
	letter-spacing: 1px
}

.rating a {
	text-decoration: underline;
	color: var(--g)
}

.rating i {
	width: 1px;
	height: 13px;
	background: var(--l)
}

.rating small {
	color: #999
}

.price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px
}

.price strong {
	font: 26px "Playfair Display", serif;
	color: var(--g)
}

.price del {
	color: #999
}

.price b {
	background: #e5f0df;
	color: #37633e;
	padding: 5px 7px;
	border-radius: 5px;
	font-size: 9px
}

.tax {
	color: #929890;
	font-size: 10px
}

.offer {
	display: flex;
	gap: 10px;
	background: #f4f1e3;
	border: 1px dashed #d6c38d;
	border-radius: 9px;
	padding: 12px;
	margin: 17px 0
}

.offer>i {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	color: var(--gold);
	display: grid;
	place-items: center
}

.offer b, .offer span {
	display: block
}

.offer b {
	font-size: 10px;
	color: var(--g)
}

.offer span {
	font-size: 10px;
	color: #777
}

.stock {
	display: flex;
	gap: 6px;
	align-items: center;
	font-size: 14px;
	color: #777;
	margin: 18px 0
}

.stock i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4e9a52
}

.stock b {
	color: #37633e
}

.qtyrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 17px
}

.qtyrow>b {
	font-size: 10px;
	color: var(--g)
}

.qtyrow>div {
	display: flex;
	height: 38px;
	border: 1px solid #d6ddd3;
	border-radius: 7px;
	overflow: hidden
}

.qtyrow button {
	width: 35px;
	border: 0;
	background: #f4f6f1;
	color: var(--g);
	font-size: 17px
}

.qtyrow input {
	width: 35px;
	text-align: center;
	border: 0;
	border-left: 1px solid #dfe4dc;
	border-right: 1px solid #dfe4dc
}

.qtyrow small {
	font-size: 8px;
	color: #999
}

.buyrow {
	display: flex;
	gap: 7px
}

.buyrow button {
	height: 47px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-size: 10px;
	font-weight: 800
}

.buyrow a {
	height: 47px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-size: 12px;
	font-weight: 800
}

.add {
	background: var(--g);
	color: #fff;
	flex: 1
}

.buy {
	background: var(--gold);
	color: #fff;
	flex: 1
}

.wishbtn {
	width: 48px;
	background: #fff;
	color: var(--g);
	border-color: rgb(165, 29, 45) !important;
	font-size: 18px
}

.wishbtn.active {
	color: #a35f52;
	background: #f5e8e5
}

.trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	border-top: 1px solid var(--l);
	border-bottom: 1px solid var(--l);
	padding: 15px 0;
	margin-top: 20px
}

.trust span {
	font-size: 12px;
	color: #697269;
	display: flex;
	align-items: center;
	gap: 5px
}

.trust i {
	color: var(--g);
	font-size: 15px
}

.delivery {
	margin-top: 18px
}

.delivery>b {
	font-size: 10px;
	color: var(--g);
	display: block;
	margin-bottom: 7px
}

.delivery>div {
	height: 39px;
	border: 1px solid #d6ddd3;
	border-radius: 7px;
	display: flex;
	overflow: hidden
}

.delivery input {
	border: 0;
	outline: 0;
	flex: 1;
	padding: 0 10px;
	font-size: 10px
}

.delivery button {
	border: 0;
	background: var(--s);
	color: var(--g);
	font-size: 9px;
	font-weight: 800;
	padding: 0 15px
}

.delivery small {
	font-size: 8px
}

.tabs {
	border-top: 1px solid var(--l);
	padding-bottom: 80px
}

.tabnav {
	display: flex;
	gap: 30px;
	overflow: auto;
	border-bottom: 1px solid var(--l)
}

.tabnav button {
	white-space: nowrap;
	border: 0;
	background: none;
	padding: 20px 0 15px;
	border-bottom: 2px solid transparent;
	color: #777f76;
	font-size: 14px;
	font-weight: 800
}

.tabnav button.active {
	color: var(--g);
	border-color: var(--g)
}

.tabnav em {
	font-style: normal;
	background: var(--s);
	padding: 3px 6px;
	border-radius: 20px;
	font-size: 7px
}

.tab {
	display: none;
	padding-top: 43px
}

.tab.active {
	display: block
}

.twocol {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 70px
}

.twocol h2, .tab h2 {
	font: 32px "Playfair Display", serif;
	color: var(--g);
	line-height: 1.2;
	margin: 6px 0 12px
}

.twocol p, .tab p {
	font-size: 11px;
	color: var(--m);
	line-height: 1.9
}

.highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 30px
}

.highlights div {
	background: var(--c);
	padding: 18px;
	text-align: center;
	border-radius: 10px
}

.highlights i {
	display: block;
	font-size: 21px;
	color: var(--g);
	margin-bottom: 8px
}

.highlights b, .highlights span {
	display: block
}

.highlights b {
	font: 17px "Playfair Display", serif;
	color: var(--g)
}

.highlights span {
	font-size: 8px;
	color: #858c84
}

.specs {
	border-top: 1px solid var(--l);
	display: grid;
	grid-template-columns: 1fr 1fr
}

.specs div {
	padding: 15px 5px;
	border-bottom: 1px solid var(--l);
	display: flex;
	justify-content: space-between
}

.specs span {
	font-size: 9px;
	color: #8b928a
}

.specs b {
	font-size: 10px;
	color: var(--g)
}

.ingredient {
	border-top: 1px solid var(--l)
}

.ingredient div {
	display: grid;
	grid-template-columns: 150px 1fr;
	border-bottom: 1px solid var(--l);
	padding: 15px 0
}

.ingredient b {
	font: 17px "Playfair Display", serif;
	color: var(--g)
}

.ingredient span {
	font-size: 9px;
	color: var(--m)
}

.tab aside {
	margin-top: 22px;
	padding: 13px;
	background: #f0f4eb;
	border-radius: 8px;
	font-size: 9px;
	color: #687068
}

.usage {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px
}

.usage article {
	background: var(--c);
	padding: 27px;
	border-radius: 13px
}

.usage i {
	font-size: 25px;
	color: var(--g)
}

.usage h3 {
	font: 21px "Playfair Display", serif;
	color: var(--g)
}

.usage p {
	margin: 0
}

.reviewhead {
	display: flex;
	justify-content: space-between
}

.reviewhead h2 {
	margin-top: 5px
}

.reviewhead>div:last-child {
	text-align: right
}

.reviewhead>div:last-child strong, .reviewhead>div:last-child span,
	.reviewhead>div:last-child small {
	display: block
}

.reviewhead strong {
	font: 38px "Playfair Display", serif;
	color: var(--g)
}

.reviewhead small {
	font-size: 8px;
	color: #999
}

.reviewsummary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--c);
	padding: 20px;
	border-radius: 10px;
	margin: 25px 0
}

.reviewsummary p {
	font-size: 8px;
	margin: 4px 0
}

.reviewsummary p span {
	display: inline-block;
	width: 250px;
	height: 5px;
	background: #dce2d8;
	border-radius: 5px;
	margin: 0 8px;
	vertical-align: middle
}

.reviewsummary p i {
	display: block;
	height: 100%;
	background: var(--gold)
}

.review {
	background: var(--g);
	color: #fff;
	border: 0;
	padding: 11px 15px;
	border-radius: 7px;
	font-size: 9px;
	font-weight: 800
}

.reviews {
	border-top: 1px solid var(--l)
}

.reviews article {
	display: flex;
	gap: 13px;
	padding: 18px 0;
	border-bottom: 1px solid var(--l)
}

.reviews article>b {
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background: var(--s);
	color: var(--g);
	display: grid;
	place-items: center;
	font-size: 9px;
	flex: none
}

.reviews article strong {
	font-size: 11px;
	color: var(--g)
}

.reviews article small {
	font-size: 7px;
	color: #4f8352;
	margin-left: 7px
}

.reviews article h3 {
	font: 17px "Playfair Display", serif;
	color: var(--g);
	margin: 3px 0
}

.reviews article p {
	margin: 0
}

.related {
	background: var(--c);
	padding: 75px 0
}

.heading {
	text-align: center;
	max-width: 650px;
	margin: 0 auto 35px
}

.heading h2 {
	font: 36px "Playfair Display", serif;
	color: var(--g);
	margin: 6px 0
}

.heading p {
	font-size: 10px;
	color: var(--m)
}

.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px
}

.products article {
	background: #fff;
	border: 1px solid var(--l);
	border-radius: 12px;
	padding-bottom: 14px;
	overflow: hidden
}

.products img {
	width: 100%;
	height: 240px;
	object-fit: cover
}

.products article>small, .products article>h3, .products article>span,
	.products article>b {
	display: block;
	margin-left: 13px
}

.products article>small {
	color: var(--gold);
	font-size: 7px;
	font-weight: 800;
	margin-top: 12px
}

.products h3 {
	font: 19px "Playfair Display", serif;
	color: var(--g);
	margin-top: 3px;
	margin-bottom: 3px
}

.products span {
	/* font-size: 8px; */
	color: var(--gold)
}

.products b {
	font-size: 14px;
	color: var(--g);
	margin-top: 8px
}

.relcart {
	margin: 10px 13px 0;
	width: calc(100% - 26px);
	border: 1px solid #cbd5c8;
	background: #fff;
	color: var(--g);
	border-radius: 7px;
	padding: 8px;
	font-size: 9px;
	font-weight: 800
}

#lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: #102619e8;
	z-index: 3000;
	align-items: center;
	justify-content: center
}

#lightbox.open {
	display: flex
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain
}

#lightbox button {
	position: absolute;
	right: 20px;
	top: 20px;
	border: 0;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	background: #fff;
	color: var(--g);
	font-size: 25px
}

#toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: var(--g);
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(10px);
	transition: .2s;
	z-index: 4000;
	font-size: 10px
}

#toast.show {
	opacity: 1;
	transform: none
}

#toast i {
	color: #dbc77e;
	margin-right: 6px
}

@media ( max-width :900px) {
	.layout {
		grid-template-columns: 1fr;
		gap: 40px
	}
	.main-image {
		height: 500px
	}
	.products {
		grid-template-columns: repeat(2, 1fr)
	}
	.products img {
		height: 220px
	}
	.twocol {
		grid-template-columns: 1fr;
		gap: 25px
	}
}

@media ( max-width :560px) {
	.container {
		width: calc(100% - 28px)
	}
	.header, .nav {
		height: 68px
	}
	.brand>b {
		width: 35px;
		height: 35px
	}
	.brand strong {
		font-size: 22px
	}
	.product {
		padding-top: 25px
	}
	.main-image {
		height: 390px
	}
	.thumb {
		width: 65px;
		height: 65px;
		flex: none
	}
	.thumbs {
		overflow: auto
	}
	.info h1 {
		font-size: 43px
	}
	.trust {
		grid-template-columns: 1fr
	}
	.buyrow {
		position: sticky;
		bottom: 8px;
		z-index: 20;
		background: #fff;
		padding: 8px;
		border-radius: 9px;
		box-shadow: 0 8px 25px #0002
	}
	.tabnav {
		gap: 20px
	}
	.highlights {
		grid-template-columns: 1fr 1fr
	}
	.specs {
		grid-template-columns: 1fr
	}
	.specs div {
		display: block
	}
	.specs b {
		display: block;
		margin-top: 4px
	}
	.ingredient div {
		grid-template-columns: 1fr
	}
	.usage {
		grid-template-columns: 1fr
	}
	.reviewsummary {
		display: block
	}
	.reviewsummary p span {
		width: calc(100% - 75px)
	}
	.reviewhead {
		display: block
	}
	.reviewhead>div:last-child {
		text-align: left;
		margin-top: 12px
	}
	.products {
		gap: 9px
	}
	.products img {
		height: 180px
	}
	.products h3 {
		font-size: 16px
	}
}