/* ==========================================================================
   SANATAANI Design System
   Ancient Bharat × Premium Luxury × Modern Technology
   ========================================================================== */

:root {
	--maroon: #4A0B12;
	--maroon-deep: #35080d;
	--saffron: #E87516;
	--gold: #D9A441;
	--gold-soft: #e8c887;
	--ivory: #FFF9EF;
	--charcoal: #17120F;
	--sand: #E9DDCA;
	--sand-dark: #d5c5aa;
	--ink: #2a221c;

	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Inter", -apple-system, sans-serif;

	--container: 1180px;
	--radius: 4px;
	--shadow-soft: 0 18px 50px -22px rgba(23, 18, 15, .35);
	--ease-lux: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--charcoal); }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }

.skip-link {
	position: absolute; left: -9999px; top: 0; background: var(--charcoal); color: var(--ivory);
	padding: .6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Typography helpers ---------- */
.san-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--saffron);
	margin-bottom: .8rem;
}
.san-section-title {
	font-size: clamp(1.9rem, 4.5vw, 2.9rem);
	margin-bottom: 1.4rem;
	position: relative;
}
.san-section-title--light { color: var(--ivory); }

/* ---------- Buttons ---------- */
.san-btn {
	display: inline-block;
	padding: .95rem 2.2rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-decoration: none;
	text-align: center;
	border: 1px solid transparent;
	border-radius: var(--radius);
	transition: transform .35s var(--ease-lux), box-shadow .35s var(--ease-lux), background .3s;
	min-height: 48px;
}
.san-btn:hover { transform: translateY(-2px); }
.san-btn--gold {
	background: linear-gradient(135deg, var(--gold) 0%, #c08a2c 100%);
	color: var(--charcoal);
	box-shadow: 0 12px 30px -12px rgba(217, 164, 65, .55);
}
.san-btn--gold:hover { box-shadow: 0 18px 40px -12px rgba(217, 164, 65, .7); }
.san-btn--maroon {
	background: var(--maroon);
	color: var(--ivory);
	box-shadow: 0 12px 30px -14px rgba(74, 11, 18, .6);
}
.san-btn--maroon:hover { background: var(--maroon-deep); }
.san-btn--ghost {
	background: transparent;
	color: var(--ivory);
	border-color: rgba(255, 249, 239, .45);
}
.san-btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.san-btn--ghost-dark { color: var(--charcoal); border-color: rgba(23,18,15,.35); }
.san-btn--ghost-dark:hover { border-color: var(--saffron); color: var(--saffron); }

/* ---------- Header ---------- */
.san-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 249, 239, .92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(217, 164, 65, .25);
	transition: background .3s;
}
body.san-over-hero .san-header {
	background: linear-gradient(rgba(23,18,15,.55), rgba(23,18,15,0));
	border-bottom-color: transparent;
}
body.san-over-hero .san-header a,
body.san-over-hero .san-header .san-logo__text,
body.san-over-hero .san-header__icon { color: var(--ivory); }
body.san-over-hero .san-header__menu-btn span { background: var(--ivory); }

.san-header__inner {
	display: flex; align-items: center; gap: 1.5rem;
	min-height: 68px;
}
.san-logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.san-logo__mark { width: 30px; height: 30px; color: var(--gold); }
.san-logo__mark svg { width: 100%; height: 100%; }
.san-logo__text {
	font-family: var(--font-display);
	font-size: 1.45rem; font-weight: 700; letter-spacing: .14em; color: var(--charcoal);
}
.san-logo__text--footer { font-size: 1.7rem; color: var(--ivory); letter-spacing: .18em; }

.san-nav { margin-left: auto; }
.san-nav__list { display: flex; gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.san-nav__list a {
	text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--ink);
	padding: .3rem 0; position: relative;
}
.san-nav__list a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
	background: var(--gold); transition: width .3s var(--ease-lux);
}
.san-nav__list a:hover::after { width: 100%; }
.san-nav__highlight a { color: var(--saffron); font-weight: 600; }

.san-header__actions { display: flex; align-items: center; gap: .9rem; }
.san-header__icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--charcoal); }
.san-header__icon svg { width: 22px; height: 22px; }
.san-header__cart { position: relative; }
.san-header__cart-count {
	position: absolute; top: 2px; right: 0;
	background: var(--saffron); color: #fff; font-size: .68rem; font-weight: 700;
	min-width: 17px; height: 17px; border-radius: 999px;
	display: grid; place-items: center; padding-inline: 4px;
}

.san-header__menu-btn {
	display: none;
	width: 44px; height: 44px; background: none; border: 0; padding: 10px;
	flex-direction: column; justify-content: center; gap: 5px;
}
.san-header__menu-btn span { display: block; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .3s; }

.san-mobile-menu { border-top: 1px solid rgba(217,164,65,.25); background: var(--ivory); }
.san-mobile-menu__list { list-style: none; margin: 0; padding: .6rem 1.4rem 1.2rem; }
.san-mobile-menu__list a {
	display: block; padding: .9rem 0; text-decoration: none;
	font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--charcoal);
	border-bottom: 1px solid rgba(217,164,65,.18);
}

/* ---------- Hero ---------- */
.san-hero {
	position: relative;
	min-height: 100svh;
	display: flex; align-items: center; justify-content: center;
	background: var(--charcoal);
	overflow: hidden;
	margin-top: -68px; /* under transparent header */
}
.san-hero__media { position: absolute; inset: 0; }
.san-hero__video {
	width: 100%; height: 100%; object-fit: cover;
	opacity: .85;
}
.san-hero__veil {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 50% 72%, rgba(232, 117, 22, .16), transparent 55%),
		linear-gradient(180deg, rgba(23,18,15,.55) 0%, rgba(23,18,15,.25) 45%, rgba(23,18,15,.78) 100%);
}
.san-hero__particles { position: absolute; inset: 0; pointer-events: none; }
.san-particle {
	position: absolute; bottom: -8px;
	width: 4px; height: 4px; border-radius: 50%;
	background: radial-gradient(circle, rgba(232,200,135,.95), rgba(232,200,135,0));
	will-change: transform, opacity;
}

.san-hero__content { position: relative; text-align: center; color: var(--ivory); padding-block: 7rem 5rem; }
.san-hero__diya { width: 54px; margin: 0 auto 1.2rem; color: var(--gold); position: relative; opacity: 0; }
.san-hero__diya svg { width: 100%; height: auto; }
.san-hero__flame {
	position: absolute; left: 50%; top: -14px; translate: -50% 0;
	width: 10px; height: 16px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
	background: radial-gradient(circle at 50% 80%, #fff6d8 0%, #f5b942 45%, rgba(232,117,22,.15) 90%);
	filter: blur(.4px);
	animation: flame 2.4s ease-in-out infinite;
	transform-origin: 50% 100%;
}
@keyframes flame {
	0%, 100% { transform: scale(1) rotate(-1.5deg); opacity: .95; }
	50% { transform: scale(1.12) rotate(1.5deg); opacity: 1; }
}

.san-hero__title {
	font-size: clamp(2.6rem, 9vw, 5.4rem);
	font-weight: 700;
	letter-spacing: .22em;
	margin: 0 0 1rem;
	color: var(--ivory);
	text-shadow: 0 4px 40px rgba(217, 164, 65, .35);
	opacity: 0;
}
.san-hero__line {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 3.4vw, 1.75rem);
	font-style: italic;
	color: var(--gold-soft);
	margin: 0 0 .9rem;
	opacity: 0;
}
.san-hero__pillars {
	font-size: .85rem; letter-spacing: .3em; text-transform: uppercase;
	color: rgba(255,249,239,.75);
	margin: 0 0 2.3rem;
	opacity: 0;
}
.san-hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; }

.san-hero__scroll {
	position: absolute; bottom: 1.6rem; left: 50%; translate: -50% 0;
	width: 44px; height: 44px; border: 0; background: none;
}
.san-hero__scroll span {
	display: block; width: 22px; height: 34px; margin: auto;
	border: 1.5px solid rgba(255,249,239,.5); border-radius: 12px; position: relative;
}
.san-hero__scroll span::after {
	content: ""; position: absolute; top: 6px; left: 50%; translate: -50% 0;
	width: 3px; height: 7px; border-radius: 3px; background: var(--gold);
	animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Kumbh Amrit feature ---------- */
.san-kumbh {
	position: relative;
	background: linear-gradient(180deg, var(--maroon-deep) 0%, var(--maroon) 60%, #5c1019 100%);
	color: var(--ivory);
	padding: clamp(4rem, 9vw, 7.5rem) 0;
	overflow: hidden;
}
.san-kumbh__water {
	position: absolute; inset: auto 0 0 0; height: 42%;
	background:
		radial-gradient(ellipse 90% 60% at 50% 100%, rgba(232, 200, 135, .12), transparent 70%),
		repeating-linear-gradient(180deg, transparent 0 14px, rgba(255,249,239,.02) 14px 15px);
	mask-image: linear-gradient(180deg, transparent, #000 40%);
	pointer-events: none;
}
.san-kumbh__grid {
	position: relative;
	display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.san-kumbh__visual { margin: 0; position: relative; display: grid; place-items: center; }
.san-kumbh__bottle { max-height: 520px; width: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); position: relative; z-index: 2; }
.san-kumbh__glow {
	position: absolute; inset: 10% 15%;
	background: radial-gradient(ellipse, rgba(217,164,65,.35), transparent 65%);
	filter: blur(10px);
}
.san-kumbh__title {
	font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: .12em; color: var(--ivory); margin-bottom: .2em;
}
.san-kumbh__sub { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--gold-soft); margin: 0 0 1rem; }
.san-kumbh__story { max-width: 46ch; color: rgba(255,249,239,.85); margin-bottom: 1.6rem; }

.san-offer {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem;
	padding: 1.1rem 1.3rem;
	border: 1px solid rgba(217,164,65,.4);
	border-radius: var(--radius);
	background: rgba(23,18,15,.25);
	margin-bottom: 1.4rem;
}
.san-offer__mrp { font-size: .95rem; color: rgba(255,249,239,.65); }
.san-offer__price { font-size: 2.2rem; font-weight: 700; font-family: var(--font-display); color: var(--gold-soft); }
.san-offer__note { flex-basis: 100%; font-size: .88rem; color: rgba(255,249,239,.8); }

.san-kumbh__badges { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1.7rem; }
.san-kumbh__badges span { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; color: rgba(255,249,239,.9); }
.san-kumbh__badges svg { width: 20px; height: 20px; color: var(--gold); }
.san-kumbh__ritual-note { font-size: .82rem; color: rgba(255,249,239,.6); margin-top: 1rem; }

/* ---------- Story ---------- */
.san-story { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--ivory); position: relative; }
.san-story::before {
	content: ""; position: absolute; top: 0; left: 50%; translate: -50% 0;
	width: min(720px, 80%); height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.san-story__steps {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
	counter-reset: step;
	text-align: center;
}
.san-story__step { position: relative; }
.san-story__step:not(:last-child)::after {
	content: "→"; position: absolute; right: -1.4rem; top: 22px;
	color: var(--gold); font-size: 1.2rem;
}
.san-story__icon { display: inline-grid; place-items: center; width: 54px; height: 54px; color: var(--saffron); margin-bottom: .6rem; }
.san-story__icon svg { width: 34px; height: 34px; }
.san-story__step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.san-story__step p { font-size: .92rem; color: #6b5d4e; margin: 0; }

/* ---------- Category & product grids ---------- */
.san-cats, .san-featured { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.san-cats { background: var(--sand); }
.san-grid { display: grid; gap: 1.6rem; }
.san-grid--3 { grid-template-columns: repeat(3, 1fr); }
.san-grid--cats { grid-template-columns: repeat(4, 1fr); }
.san-grid--why { grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }

.san-cat-card {
	position: relative; display: block; aspect-ratio: 4 / 5;
	border-radius: var(--radius); overflow: hidden; text-decoration: none;
	background: linear-gradient(160deg, var(--maroon) 0%, var(--charcoal) 100%);
	box-shadow: var(--shadow-soft);
}
.san-cat-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-lux); opacity: .88; }
.san-cat-card:hover .san-cat-card__img { transform: scale(1.06); }
.san-cat-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(217,164,65,.5); }
.san-cat-card__placeholder svg { width: 64px; height: 64px; }
.san-cat-card__name {
	position: absolute; inset: auto 0 0 0;
	padding: 2.2rem 1.1rem .95rem;
	background: linear-gradient(transparent, rgba(23,18,15,.85));
	color: var(--ivory);
	font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
}

.san-card {
	display: flex; flex-direction: column; gap: .35rem;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(217,164,65,.25);
	border-radius: var(--radius);
	padding: 0 0 1.2rem;
	overflow: hidden;
	transition: transform .4s var(--ease-lux), box-shadow .4s var(--ease-lux);
}
.san-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.san-card__imgwrap { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.san-card__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-lux); }
.san-card:hover .san-card__imgwrap img { transform: scale(1.05); }
.san-card__cat { padding: .9rem 1.1rem 0; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--saffron); font-weight: 600; }
.san-card__title { padding: 0 1.1rem; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--charcoal); }
.san-card__price { padding: 0 1.1rem; font-weight: 600; color: var(--maroon); }
.san-card__price del { color: #9b8b76; font-weight: 400; margin-right: .4rem; }

/* ---------- Why ---------- */
.san-why { background: linear-gradient(180deg, var(--charcoal), #241b15); color: var(--ivory); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.san-why__item h3 { color: var(--ivory); font-size: 1.3rem; margin-bottom: .3rem; }
.san-why__item p { color: rgba(255,249,239,.7); font-size: .95rem; margin: 0; }
.san-why__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; color: var(--gold); margin-bottom: .7rem; }
.san-why__icon svg { width: 30px; height: 30px; }

/* ---------- Future / knowledge / final ---------- */
.san-future { padding: clamp(3.5rem, 7vw, 5.5rem) 0; background: var(--sand); text-align: center; }
.san-future__note { max-width: 60ch; margin-inline: auto; color: #6b5d4e; }
.san-knowledge { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.san-article-card {
	display: block; text-decoration: none;
	border-radius: var(--radius); overflow: hidden;
	background: #fff; border: 1px solid rgba(217,164,65,.25);
	transition: transform .4s var(--ease-lux), box-shadow .4s var(--ease-lux);
}
.san-article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.san-article-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.san-article-card__title { display: block; padding: 1rem 1.2rem 1.3rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); }

.san-final {
	position: relative; text-align: center;
	background: radial-gradient(ellipse at 50% 120%, #5c1019, var(--maroon-deep) 55%, var(--charcoal));
	color: var(--ivory);
	padding: clamp(5rem, 11vw, 8.5rem) 0;
	overflow: hidden;
}
.san-final__glow {
	position: absolute; left: 50%; bottom: -30%; translate: -50% 0;
	width: 620px; height: 420px;
	background: radial-gradient(ellipse, rgba(217,164,65,.22), transparent 65%);
	pointer-events: none;
}
.san-final__line { font-size: clamp(2rem, 6vw, 3.4rem); color: var(--ivory); margin-bottom: .3em; }
.san-final__sub { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-soft); margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.san-footer { background: var(--charcoal); color: rgba(255,249,239,.8); }
.san-footer__ornament {
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--saffron) 50%, var(--gold) 70%, transparent);
}
.san-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem;
	padding: 3.5rem 0 2.5rem;
}
.san-footer__tag { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); margin: .8rem 0 .4rem; }
.san-footer__pillars { font-size: .78rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,249,239,.55); }
.san-footer h3 { color: var(--ivory); font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.san-footer__list { list-style: none; margin: 0; padding: 0; }
.san-footer__list li { margin-bottom: .55rem; }
.san-footer__list a { color: rgba(255,249,239,.75); text-decoration: none; font-size: .93rem; }
.san-footer__list a:hover { color: var(--gold-soft); }
.san-footer__legal-entity { font-size: .8rem; color: rgba(255,249,239,.5); margin-top: 1rem; }
.san-footer__bottom { border-top: 1px solid rgba(255,249,239,.12); padding: 1.4rem 0; font-size: .82rem; color: rgba(255,249,239,.5); }
.san-footer__bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.san-footer__note { max-width: 60ch; }

/* ---------- WhatsApp float ---------- */
.san-wa {
	position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
	display: inline-flex; align-items: center; gap: .6rem;
	background: #1faa53; color: #fff;
	padding: .7rem 1.1rem .7rem .8rem;
	border-radius: 999px;
	text-decoration: none; font-weight: 600; font-size: .92rem;
	box-shadow: 0 14px 34px -12px rgba(31, 170, 83, .65);
	transition: transform .3s var(--ease-lux);
}
.san-wa:hover { transform: translateY(-3px); }
.san-wa__icon { width: 24px; height: 24px; display: grid; place-items: center; }
.san-wa__icon svg { width: 24px; height: 24px; }

/* ---------- Shop / product ---------- */
.san-shop { padding: 2.5rem 0 4rem; }
.san-shop ul.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.san-shop ul.products li.product {
	background: #fff; border: 1px solid rgba(217,164,65,.25); border-radius: var(--radius);
	overflow: hidden; padding-bottom: 1.1rem;
	transition: transform .4s var(--ease-lux), box-shadow .4s var(--ease-lux);
	display: flex; flex-direction: column;
}
.san-shop ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.san-shop ul.products li.product > a img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.san-shop ul.products li.product .san-card__cat { padding-top: .9rem; }
.san-shop ul.products li.product .san-card__title { font-size: 1.25rem; margin: 0; padding: 0 1.1rem; }
.san-shop ul.products li.product .price { padding: .2rem 1.1rem 0; font-weight: 600; color: var(--maroon); }
.san-shop ul.products li.product .price del { color: #9b8b76; font-weight: 400; margin-right: .35rem; }
.san-shop ul.products li.product .button {
	margin: .8rem 1.1rem 0; text-align: center;
	background: var(--maroon); color: var(--ivory); border: 0; border-radius: var(--radius);
	padding: .75rem 1rem; text-decoration: none; font-weight: 600;
}
.san-shop ul.products li.product .button:hover { background: var(--maroon-deep); }
.woocommerce-result-count, .woocommerce-ordering { font-size: .9rem; color: #6b5d4e; }
.woocommerce-ordering select { padding: .5rem .8rem; border: 1px solid var(--sand-dark); border-radius: var(--radius); background: #fff; }

/* Single product */
.single-product div.product { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; padding-top: 1.5rem; }
.single-product div.product .woocommerce-product-gallery { position: sticky; top: 92px; }
.single-product div.product .woocommerce-product-gallery img { border-radius: var(--radius); }
.single-product div.product .product_title { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.single-product div.product p.price { font-size: 1.6rem; font-weight: 700; color: var(--maroon); font-family: var(--font-display); }
.single-product div.product p.price del { color: #9b8b76; font-weight: 400; font-size: 1.1rem; }
.single-product div.product form.cart { display: flex; gap: 1rem; align-items: stretch; margin: 1.5rem 0; flex-wrap: wrap; }
.single-product div.product form.cart .quantity input {
	width: 76px; height: 52px; text-align: center; font-size: 1.1rem;
	border: 1px solid var(--sand-dark); border-radius: var(--radius);
}
.single-product div.product form.cart .single_add_to_cart_button {
	flex: 1; min-width: 220px; min-height: 52px;
	background: linear-gradient(135deg, var(--gold) 0%, #c08a2c 100%);
	color: var(--charcoal); font-weight: 700; font-size: 1.05rem;
	border: 0; border-radius: var(--radius);
}
.single-product div.product form.cart .single_add_to_cart_button:hover { filter: brightness(1.06); }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 1.5rem; padding: 0; border-bottom: 1px solid var(--sand-dark); }
.woocommerce-tabs ul.tabs li a { display: block; padding: .7rem 0; text-decoration: none; font-weight: 600; color: #6b5d4e; }
.woocommerce-tabs ul.tabs li.active a { color: var(--maroon); box-shadow: inset 0 -2px 0 var(--gold); }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	list-style: none; margin: 1rem 0; padding: 1rem 1.2rem;
	border-radius: var(--radius); border: 1px solid;
	font-size: .95rem;
}
.woocommerce-message { background: #f3f9f0; border-color: #b7d9a8; color: #2c5e1a; }
.woocommerce-info { background: #f6efe3; border-color: var(--gold); color: #7a5a1e; }
.woocommerce-error { background: #fbf0ef; border-color: #e0a9a2; color: #8c2f24; }

/* Cart & checkout */
.woocommerce-cart-form table.shop_table, table.shop_table.woocommerce-checkout-review-order-table {
	width: 100%; border-collapse: collapse; background: #fff; border: 1px solid rgba(217,164,65,.3); border-radius: var(--radius);
}
table.shop_table th, table.shop_table td { padding: .95rem 1rem; border-bottom: 1px solid var(--sand); text-align: left; }
table.shop_table img { width: 72px; border-radius: var(--radius); }
.woocommerce-cart-form .quantity input { width: 68px; height: 46px; text-align: center; border: 1px solid var(--sand-dark); border-radius: var(--radius); }
.cart_totals h2, #order_review_heading { font-size: 1.5rem; }
.wc-proceed-to-checkout .checkout-button, #place_order {
	display: block; width: 100%;
	background: linear-gradient(135deg, var(--gold) 0%, #c08a2c 100%);
	color: var(--charcoal); font-weight: 700; font-size: 1.1rem;
	padding: 1.05rem; border: 0; border-radius: var(--radius); text-align: center; text-decoration: none;
	min-height: 54px;
}
.wc-proceed-to-checkout .checkout-button:hover, #place_order:hover { filter: brightness(1.06); }

.woocommerce-checkout .col2-set { display: grid; gap: 2rem; }
.woocommerce form .form-row { margin-bottom: 1.05rem; }
.woocommerce form .form-row label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .35rem; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row select, .woocommerce form .form-row textarea {
	width: 100%; padding: .85rem 1rem; font-size: 1.05rem;
	border: 1px solid var(--sand-dark); border-radius: var(--radius); background: #fff;
	min-height: 50px;
}
.woocommerce form .form-row input.input-text:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.sanataani-hidden-field { display: none !important; }
#payment { background: #fff; border: 1px solid rgba(217,164,65,.3); border-radius: var(--radius); padding: 1.2rem; }
#payment .payment_method_cod label { font-weight: 700; font-size: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; }
#payment .payment_box { background: var(--sand); border-radius: var(--radius); padding: .9rem 1.1rem; margin-top: .6rem; font-size: .95rem; }

/* Order received */
.woocommerce-order { text-align: center; padding: 3rem 0; }
.woocommerce-thankyou-order-received {
	font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 600; color: var(--maroon);
	max-width: 26ch; margin: 0 auto 2rem;
}
.woocommerce-order-overview {
	list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
	padding: 1.4rem; margin: 0 auto 2.5rem; max-width: 760px;
	background: #fff; border: 1px solid rgba(217,164,65,.35); border-radius: var(--radius);
}
.woocommerce-order-overview li { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: #6b5d4e; }
.woocommerce-order-overview li strong { display: block; font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: var(--charcoal); margin-top: .2rem; }

/* Cross-sell / mini cards */
.san-crosssell { margin-top: 2.5rem; }
.san-crosssell__title { font-size: 1.6rem; }
.san-mini-card { display: block; text-decoration: none; background: #fff; border: 1px solid rgba(217,164,65,.25); border-radius: var(--radius); overflow: hidden; padding-bottom: 1rem; }
.san-mini-card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.san-mini-card__name { display: block; padding: .8rem 1rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--charcoal); }
.san-mini-card__price { display: block; padding: 0 1rem; color: var(--maroon); font-weight: 600; }

/* FAQ */
.san-faq { margin: 1.5rem 0; }
.san-faq__item { border: 1px solid rgba(217,164,65,.3); border-radius: var(--radius); background: #fff; margin-bottom: .7rem; }
.san-faq__item summary {
	list-style: none; cursor: pointer; padding: 1rem 1.2rem; font-weight: 600; position: relative;
}
.san-faq__item summary::after { content: "+"; position: absolute; right: 1.1rem; color: var(--saffron); font-size: 1.3rem; }
.san-faq__item[open] summary::after { content: "–"; }
.san-faq__a { padding: 0 1.2rem 1.1rem; color: #5d5142; }

/* Pages / prose */
.san-page, .san-generic { padding: 3rem 0 4.5rem; }
.san-page-head { margin-bottom: 2rem; }
.san-prose__content { max-width: 74ch; }
.san-prose__content h2 { margin-top: 2.2rem; }
.san-prose__meta { color: #8a7a66; font-size: .9rem; }
.san-prose__hero img { border-radius: var(--radius); margin-bottom: 2rem; }

/* 404 */
.san-404 { min-height: 55vh; display: grid; place-items: center; text-align: center; padding: 4rem 0; }
.san-404__icon { display: inline-block; width: 54px; color: var(--gold); margin-bottom: 1rem; }

/* Reveal animation base state (JS adds motion; must be visible without JS) */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.no-js [data-reveal], [data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.san-grid--cats { grid-template-columns: repeat(3, 1fr); }
	.san-story__steps { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
	.san-story__step:not(:last-child)::after { display: none; }
	.san-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
	.san-nav { display: none; }
	.san-header__menu-btn { display: flex; }
	.san-kumbh__grid { grid-template-columns: 1fr; text-align: center; }
	.san-kumbh__copy { display: flex; flex-direction: column; align-items: center; }
	.san-kumbh__bottle { max-height: 380px; }
	.san-offer { justify-content: center; text-align: center; }
	.san-grid--3, .san-grid--why { grid-template-columns: repeat(2, 1fr); }
	.san-shop ul.products { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.single-product div.product { grid-template-columns: 1fr; }
	.single-product div.product .woocommerce-product-gallery { position: static; }
}

@media (max-width: 560px) {
	body { font-size: 16.5px; }
	.container { width: calc(100% - 2rem); }
	.san-grid--cats { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
	.san-grid--3, .san-grid--why { grid-template-columns: 1fr; }
	.san-shop ul.products { grid-template-columns: 1fr 1fr; }
	.san-card__title { font-size: 1.15rem; }
	.san-story__steps { grid-template-columns: 1fr; }
	.san-hero__ctas { flex-direction: column; align-items: stretch; }
	.san-hero__ctas .san-btn { width: 100%; }
	.san-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
	.san-wa__label { display: none; }
	.san-wa { padding: .85rem; }
	table.shop_table th, table.shop_table td { padding: .7rem .6rem; font-size: .92rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.js [data-reveal] { opacity: 1; transform: none; }
	.san-hero__video { display: none; }
}

/* ---------- Product page polish ---------- */
.single-product span.onsale {
	position: absolute; z-index: 5; margin: 1rem;
	background: var(--saffron); color: #fff;
	font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	padding: .45rem .9rem; border-radius: 999px;
}
.single-product span.onsale::after { content: ""; }
.single-product div.product .product_meta { font-size: .85rem; color: #8a7a66; margin-top: 1.2rem; }
.single-product div.product .product_meta a { color: var(--saffron); }
.single-product .woocommerce-product-details__short-description { font-size: 1.05rem; }
.single-product div.product form.cart .quantity input { -moz-appearance: textfield; }
.single-product .related.products h2 { font-size: 1.6rem; margin-top: 3rem; }
.woocommerce-Reviews #review_form_wrapper { max-width: 640px; }
@media (max-width: 560px) {
	.single-product div.product form.cart { flex-direction: column; }
	.single-product div.product form.cart .quantity input { width: 100%; }
}
