/* ==========================================================================
   Jeevan Niti — theme stylesheet
   Celestial gold · cosmic cream · deep burgundy. "Reality over Fear."
   ========================================================================== */

:root {
	--bg:         #f6f0e3;   /* cosmic cream */
	--card:       #ffffff;
	--gold:       #c9a24a;
	--gold-bright:#ddb968;
	--gold-deep:  #b98a2e;
	--burgundy:   #4a1822;
	--charcoal:   #221f1c;
	--mystic:     #373024;
	--ink:        #221f1c;
	--muted:      #7a6e5c;
	--on-dark:    #f6f0e3;
	--line:       rgba(201, 162, 74, 0.28);
	--line-soft:  rgba(201, 162, 74, 0.16);

	--grad-gold: linear-gradient(120deg, #b98a2e 0%, #c9a24a 60%, #ddb968 100%);
	--grad-dark: linear-gradient(140deg, #373024 0%, #221f1c 100%);

	--shadow-soft: 0 12px 40px -18px rgba(55, 48, 36, 0.35);
	--shadow-gold: 0 18px 45px -20px rgba(201, 162, 74, 0.75);

	--font-display: "Playfair Display", serif;
	--font-serif:   "Cormorant Garamond", serif;
	--font-sans:    "DM Sans", ui-sans-serif, system-ui, sans-serif;
	--font-hindi:   "Tiro Devanagari Hindi", serif;
	--font-price:   "Space Grotesk", sans-serif;

	--radius: 16px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2 { font-family: var(--font-display); }
h3, h4 { font-family: var(--font-serif); }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; }
p { margin: 0 0 1em; }
a { color: var(--gold-deep); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden;
	padding: 0; position: absolute; width: 1px;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto; padding: 12px 20px; z-index: 999;
	position: fixed; top: 8px; left: 8px; background: var(--burgundy); color: #fff;
}

/* ---------- Layout helpers ---------- */
.jn-container { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.jn-main { display: block; }

.jn-section { padding: 72px 0; }
.jn-section--white { background: var(--card); }
.jn-section--alt { background: var(--bg); }
.jn-section--big { padding: 120px 0; }

.jn-center { text-align: center; }
.jn-mt-md { margin-top: 24px; }
.jn-mt-lg { margin-top: 40px; }

/* ---------- Typography helpers ---------- */
.jn-text-hindi { font-family: var(--font-hindi); }
.jn-text-price { font-family: var(--font-price); font-weight: 700; }

.jn-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-deep);
}

.jn-heading { max-width: 720px; margin: 0 auto 8px; text-align: center; }
.jn-heading--left { margin-left: 0; text-align: left; }

.jn-heading__title {
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 700;
	color: var(--burgundy);
	margin: 12px 0 0;
}

.jn-heading__sub { font-size: 17px; color: var(--muted); margin: 12px auto 0; max-width: 620px; }
.jn-heading--left .jn-heading__sub { margin-left: 0; }

.jn-divider {
	display: flex; align-items: center; justify-content: center; gap: 12px;
	margin-top: 24px;
}
.jn-heading--left .jn-divider { justify-content: flex-start; }
.jn-divider::before, .jn-divider::after {
	content: ""; height: 1px; width: 64px;
	background: linear-gradient(90deg, transparent, var(--gold));
}
.jn-divider::after { transform: scaleX(-1); }

/* ---------- Buttons ---------- */
.jn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	background: var(--grad-gold);
	color: #fff;
	box-shadow: var(--shadow-gold);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
	line-height: 1;
	white-space: nowrap;
}
.jn-btn:hover { transform: translateY(-2px); filter: brightness(1.07); color: #fff; }
.jn-btn:active { transform: translateY(0) scale(0.97); }
.jn-btn--sm   { height: 40px; padding: 0 20px; font-size: 14px; }
.jn-btn--lg   { height: 54px; padding: 0 36px; font-size: 16px; }
.jn-btn--full { width: 100%; height: 48px; padding: 0 20px; font-size: 15px; }

.jn-btn--outline {
	background: transparent; color: var(--ink); box-shadow: none;
	border: 1.5px solid rgba(201, 162, 74, 0.7);
}
.jn-btn--outline:hover { background: rgba(201, 162, 74, 0.12); color: var(--ink); filter: none; }
.jn-btn--on-dark { color: var(--on-dark); }
.jn-btn--on-dark:hover { color: var(--on-dark); }

.jn-btn--burgundy { background: var(--burgundy); color: #f9f2e3; box-shadow: var(--shadow-soft); }
.jn-btn--burgundy:hover { filter: brightness(1.15); color: #fff; }

/* ---------- Pills ---------- */
.jn-pill {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: var(--grad-gold);
}
.jn-pill--dark { background: var(--burgundy); }

/* ---------- Grid & Card ---------- */
.jn-grid { display: grid; gap: 28px; }
.jn-grid--2 { grid-template-columns: repeat(2, 1fr); }
.jn-grid--3 { grid-template-columns: repeat(3, 1fr); }
.jn-grid--4 { grid-template-columns: repeat(4, 1fr); }

.jn-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}
/* ---------- Topbar (marquee) ---------- */
.jn-topbar {
	position: relative;
	overflow: hidden;
	background: var(--grad-gold);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
}
.jn-topbar__track {
	display: flex;
	width: max-content;
	animation: jn-marquee 38s linear infinite;
}
.jn-topbar__group { padding: 9px 4px; white-space: nowrap; }
.jn-topbar__close {
	position: absolute; right: 6px; top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.12);
	border: 0; color: #fff;
	width: 22px; height: 22px; border-radius: 50%;
	font-size: 14px; line-height: 1;
}
.jn-topbar__close:hover { background: rgba(0, 0, 0, 0.25); }
.jn-topbar.is-hidden { display: none; }

/* ---------- Header / Navbar ---------- */
.jn-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--card);
	border-bottom: 1px solid var(--line-soft);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}
.jn-header.is-scrolled { box-shadow: var(--shadow-soft); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(6px); }

.jn-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}

.jn-logo { display: flex; flex-direction: column; line-height: 1.15; gap: 1px; }
.jn-logo__name {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 800;
	color: var(--burgundy);
	transition: color 0.2s ease;
}
.jn-logo:hover .jn-logo__name { color: var(--gold-deep); }
.jn-logo__tagline { font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }
.jn-logo__tagline-hindi { font-size: 10px; color: var(--gold-deep); }
.jn-logo .custom-logo-link img { max-height: 52px; width: auto; }

.jn-nav__desktop { display: flex; align-items: center; }
.jn-nav__links {
	display: flex; list-style: none; margin: 0; padding: 0; gap: 6px;
}
.jn-nav__links a {
	display: block;
	padding: 8px 14px;
	font-size: 15px;
	font-weight: 500;
	color: rgba(34, 31, 28, 0.82);
	position: relative;
}
.jn-nav__links a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
	height: 2px; background: var(--gold);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s ease;
}
.jn-nav__links a:hover { color: var(--burgundy); }
.jn-nav__links a:hover::after,
.jn-nav__links .current-menu-item > a::after,
.current-menu-item > a::after { transform: scaleX(1); }
.jn-nav__links .current-menu-item > a { color: var(--burgundy); }

.jn-nav__actions { display: flex; align-items: center; gap: 14px; }
.jn-cart { position: relative; color: var(--ink); padding: 6px; }
.jn-cart:hover { color: var(--gold-deep); }
.jn-cart-bubble {
	position: absolute; top: 0; right: 0;
	min-width: 17px; height: 17px; padding: 0 4px;
	border-radius: 999px;
	background: var(--burgundy); color: #fff;
	font-size: 10px; font-weight: 700;
	display: grid; place-items: center;
	opacity: 0; transform: scale(0.6);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.jn-cart-bubble--show { opacity: 1; transform: scale(1); }

.jn-nav__burger {
	display: none;
	background: transparent; border: 0; color: var(--ink);
	padding: 6px;
}
.jn-nav__burger:hover { color: var(--gold-deep); }

/* ---------- Mobile menu ---------- */
.jn-mobile-menu {
	position: fixed; inset: 0; z-index: 90;
	background: var(--grad-dark);
	color: var(--on-dark);
	display: flex; flex-direction: column;
	padding: 22px 26px;
	overflow-y: auto;
}
.jn-mobile-menu[hidden] { display: none; }
.jn-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; }
.jn-mobile-menu__head .jn-logo__name { color: var(--on-dark); }
.jn-nav__close {
	background: transparent; border: 0; color: var(--on-dark);
	font-size: 26px; line-height: 1; padding: 6px 10px;
}
.jn-mobile-menu__links {
	list-style: none; margin: 40px 0 0; padding: 0;
	display: flex; flex-direction: column; gap: 22px;
}
.jn-mobile-menu__links a {
	font-family: var(--font-display);
	font-size: 28px; font-weight: 600;
	color: var(--on-dark);
}
.jn-mobile-menu__links a:hover { color: var(--gold-bright); }
.jn-mobile-menu__call { margin-top: auto; }
/* ---------- Hero ---------- */
.jn-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 88vh;
	overflow: hidden;
	background: var(--grad-dark);
	color: var(--on-dark);
}
.jn-hero__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.jn-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(55, 48, 36, 0.85) 0%, rgba(55, 48, 36, 0.72) 45%, rgba(34, 31, 28, 0.94) 100%);
}
.jn-particles {
	position: absolute; inset: 0; pointer-events: none;
	overflow: hidden;
}
.jn-particles span {
	position: absolute; bottom: -10px;
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--gold-bright);
	opacity: 0;
	animation: jn-rise linear infinite;
}

.jn-hero__content {
	position: relative;
	text-align: center;
	padding: 96px 20px;
}
.jn-hero__eyebrow {
	display: inline-flex;
	align-items: center; gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--gold-bright);
	margin: 0 0 18px;
}
.jn-hero__title {
	font-size: clamp(34px, 5.4vw, 64px);
	font-weight: 800;
	color: var(--on-dark);
	max-width: 900px;
	margin: 0 auto 14px;
	line-height: 1.08;
}
.jn-hero__hindi {
	font-family: var(--font-hindi);
	color: var(--gold-bright);
	font-size: 18px;
	margin: 0 auto 14px;
}
.jn-hero__sub {
	font-size: 17px;
	color: rgba(246, 240, 227, 0.82);
	max-width: 640px;
	margin: 0 auto;
}
.jn-hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px; }
.jn-hero__badges {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 14px 28px;
	list-style: none; margin: 44px 0 0; padding: 0;
	font-size: 14px; color: rgba(246, 240, 227, 0.8);
}
.jn-hero__badges li { position: relative; }
.jn-hero__badges li + li::before {
	content: "•"; position: absolute; left: -18px; color: var(--gold-bright);
}

/* ---------- Product cards ---------- */
.jn-product-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.jn-product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: var(--gold); }

.jn-product-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f1ead9;
}
.jn-product-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.jn-product-card:hover .jn-product-card__media img { transform: scale(1.05); }

.jn-product-card__badges {
	position: absolute; left: 12px; top: 12px; z-index: 2;
	display: flex; gap: 8px; flex-wrap: wrap;
}

.jn-product-card__body {
	display: flex; flex-direction: column; gap: 10px;
	padding: 20px;
	flex: 1;
}
.jn-product-card__name { font-size: 17px; font-weight: 600; color: var(--burgundy); margin: 0; line-height: 1.3; }
.jn-product-card__name a { color: inherit; }
.jn-product-card__name a:hover { color: var(--gold-deep); }
.jn-product-card__hindi { font-size: 14px; color: var(--muted); margin: 0; }

.jn-rating { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); }
.jn-rating__stars { letter-spacing: 2px; font-size: 13px; }
.jn-rating__off { color: rgba(201, 162, 74, 0.3); }
.jn-rating__meta { font-size: 12px; color: var(--muted); }

.jn-product-card__blurb { font-size: 14px; color: var(--muted); margin: 0; }

.jn-product-card__row { display: flex; align-items: baseline; gap: 12px; }
.jn-product-card__price {
	font-family: var(--font-price);
	font-size: 24px; font-weight: 700;
	color: var(--burgundy);
}
.jn-product-card__price ins { text-decoration: none; }
.jn-product-card__mrp { font-size: 14px; color: var(--muted); text-decoration: line-through; }

.jn-product-card__meta {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 4px;
	font-size: 12px; color: var(--muted);
}
.jn-product-card__meta li { display: flex; align-items: center; gap: 8px; }
.jn-product-card__meta svg { color: var(--gold); flex: none; }

.jn-product-card .jn-btn { margin-top: auto; }
/* ---------- Trust cards ---------- */
.jn-trust-card {
	padding: 28px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.jn-trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.jn-trust-card__icon {
	display: grid; place-items: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--grad-gold);
	color: #fff;
	font-size: 18px;
}
.jn-trust-card__title { margin: 16px 0 2px; font-size: 20px; font-weight: 600; color: var(--burgundy); }
.jn-trust-card__hindi { font-size: 14px; color: var(--gold-deep); margin: 0 0 8px; }
.jn-trust-card__body { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Stats strip (brown/dark) ---------- */
.jn-stats {
	position: relative;
	overflow: hidden;
	background: var(--grad-dark);
	padding: 72px 0;
	text-align: center;
}
.jn-stats::before {
	content: ""; position: absolute;
	right: -140px; top: -140px;
	width: 420px; height: 420px; border-radius: 50%;
	background:
		radial-gradient(circle, rgba(201, 162, 74, 0.14) 0%, transparent 55%),
		repeating-conic-gradient(from 0deg, rgba(201, 162, 74, 0.08) 0deg 6deg, transparent 6deg 12deg);
	opacity: 0.6;
	animation: jn-spin 40s linear infinite;
}
.jn-stats__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.jn-stat__value {
	font-size: clamp(32px, 4.6vw, 48px);
	color: var(--gold-bright);
	line-height: 1;
}
.jn-stat__suffix { font-size: 0.62em; }
.jn-stat__label {
	margin: 10px 0 0;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(246, 240, 227, 0.72);
}

/* ---------- Service cards ---------- */
.jn-service-card {
	padding: 30px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jn-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.jn-service-card__head {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	margin-bottom: 14px;
}
.jn-service-card__price { font-size: 22px; color: var(--burgundy); }
.jn-service-card__title { margin: 0 0 4px; font-size: 24px; font-weight: 600; color: var(--burgundy); }
.jn-service-card__hook { font-family: var(--font-serif); font-size: 17px; color: var(--gold-deep); margin: 0 0 8px; }
.jn-service-card__desc { font-size: 14.5px; color: var(--muted); margin: 0 0 14px; }
.jn-service-card__list {
	list-style: none; margin: 0 0 20px; padding: 0;
	display: flex; flex-direction: column; gap: 8px;
	font-size: 14px; color: rgba(34, 31, 28, 0.85);
}
.jn-service-card__list li { display: flex; gap: 10px; align-items: flex-start; }
.jn-service-card__list svg { color: var(--gold); flex: none; margin-top: 3px; }
.jn-service-card__foot { margin-top: auto; }

/* ---------- Testimonials ---------- */
.jn-testi__stage { position: relative; min-height: 210px; margin-top: 40px; }
.jn-testi__slide {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center;
	opacity: 0; transform: translateX(40px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	pointer-events: none;
	margin: 0;
}
.jn-testi__slide.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.jn-testi__quote {
	font-family: var(--font-serif);
	font-size: clamp(18px, 2.6vw, 24px);
	color: var(--ink);
	max-width: 760px;
	margin: 0 auto 18px;
}
.jn-testi__meta { font-size: 14px; color: var(--muted); }
.jn-testi__name { font-weight: 700; color: var(--burgundy); }
.jn-testi__dots { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.jn-testi__dot {
	width: 10px; height: 10px; border-radius: 50%;
	border: 0; background: rgba(201, 162, 74, 0.35);
	transition: background 0.2s ease, width 0.2s ease;
}
.jn-testi__dot.is-active { background: var(--gold); width: 26px; border-radius: 999px; }

/* ---------- Newsletter ---------- */
.jn-newsletter { background: var(--grad-gold); padding: 72px 0; color: #fff; text-align: center; }
.jn-newsletter__title { color: #fff; font-size: clamp(26px, 4vw, 38px); margin: 0 0 8px; }
.jn-newsletter__sub { color: rgba(255, 255, 255, 0.88); margin: 0; }
.jn-newsletter__form {
	display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
	max-width: 640px; margin: 28px auto 0;
}
.jn-newsletter__form input {
	flex: 1 1 200px;
	height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--ink);
	outline: none;
	font-size: 14px;
}
.jn-newsletter__form input:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4); }
.jn-newsletter__note { font-size: 12px; color: rgba(255, 255, 255, 0.85); margin: 16px 0 0; }
.jn-newsletter__success { color: #fff; font-weight: 600; margin: 14px 0 0; }

/* ---------- Call banner ---------- */
.jn-callbanner__inner { text-align: center; max-width: 820px; }
.jn-callbanner__title { font-size: clamp(26px, 4vw, 40px); color: var(--burgundy); margin-top: 26px; }
.jn-callbanner__text { font-size: 17px; color: var(--muted); margin-top: 12px; }
.jn-callbanner__ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 30px; }
/* ---------- Page hero ---------- */
.jn-page-hero {
	position: relative;
	overflow: hidden;
	background: var(--grad-dark);
	color: var(--on-dark);
	padding: 72px 0;
	text-align: center;
}
.jn-page-hero::before {
	content: ""; position: absolute;
	right: -120px; top: -120px;
	width: 380px; height: 380px; border-radius: 50%;
	background:
		radial-gradient(circle, rgba(201, 162, 74, 0.12) 0%, transparent 55%),
		repeating-conic-gradient(from 0deg, rgba(201, 162, 74, 0.07) 0deg 6deg, transparent 6deg 12deg);
	opacity: 0.5;
	animation: jn-spin 45s linear infinite;
}
.jn-page-hero--alt { background: var(--grad-dark); }
.jn-page-hero__inner { position: relative; max-width: 820px; }
.jn-page-hero__title { font-size: clamp(30px, 4.6vw, 52px); color: var(--on-dark); margin: 12px 0 0; }
.jn-page-hero__sub { font-size: 17px; color: rgba(246, 240, 227, 0.8); margin: 14px auto 0; max-width: 640px; }

/* ---------- Page copy ---------- */
.jn-page-copy { max-width: 860px; }
.jn-page-copy h2, .jn-page-copy h3 { color: var(--burgundy); }
.jn-page-copy img { border-radius: var(--radius); }
.jn-page-copy a { text-decoration: underline; }

/* ---------- Forms ---------- */
.jn-form-card { padding: 28px; }
.jn-form-card__title { margin: 0 0 4px; font-size: 24px; color: var(--burgundy); }
.jn-form-card__sub { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.jn-form { display: block; }
.jn-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.jn-field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: rgba(34, 31, 28, 0.85); }
.jn-field--full { grid-column: 1 / -1; }
.jn-input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(201, 162, 74, 0.4);
	border-radius: 10px;
	background: var(--card);
	color: var(--ink);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.jn-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18); }
.jn-textarea { height: auto; padding: 12px 14px; resize: vertical; }

.jn-notice {
	padding: 14px 18px;
	border-radius: 12px;
	margin: 18px 24px 0;
	max-width: 760px;
	border: 1px solid rgba(74, 24, 34, 0.2);
	background: #fbf3e3;
	color: #4a1822;
}
@media (min-width: 768px) {
	.jn-notice { margin-left: auto; margin-right: auto; }
}

/* ---------- Booking / how-it-works ---------- */
.jn-book__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.jn-steps { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.jn-step { display: flex; gap: 16px; align-items: flex-start; }
.jn-step__num {
	flex: none;
	width: 44px; height: 44px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--grad-gold);
	color: #fff;
	font-size: 16px;
}
.jn-step__title { margin: 2px 0 4px; font-size: 18px; color: var(--burgundy); }
.jn-step__desc { margin: 0; font-size: 14px; color: var(--muted); }

/* ---------- Contact page ---------- */
.jn-contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.jn-contact__list { display: flex; flex-direction: column; gap: 14px; }
.jn-contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; }
.jn-contact-card__icon {
	flex: none;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--grad-gold);
	display: grid; place-items: center;
	color: #fff; font-size: 10px;
}
.jn-contact-card__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin: 0; }
.jn-contact-card__value { font-size: 15px; font-weight: 600; color: var(--ink); margin: 2px 0 0; }
a.jn-contact-card__value:hover { color: var(--gold-deep); }
.jn-contact__map { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.jn-contact__map iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.jn-faq__list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }
.jn-faq__item { padding: 20px 24px; }
.jn-faq__item summary {
	cursor: pointer;
	list-style: none;
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 600;
	color: var(--burgundy);
}
.jn-faq__item summary::-webkit-details-marker { display: none; }
.jn-faq__item[open] summary { margin-bottom: 10px; }
.jn-faq__item p { font-size: 14.5px; color: var(--muted); margin: 0; }
/* ---------- Footer ---------- */
.jn-footer { background: var(--grad-dark); color: var(--on-dark); }
.jn-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding: 56px 20px;
}
.jn-footer__logo { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold-bright); }
.jn-footer__tagline { margin: 4px 0 0; font-size: 14px; color: rgba(246, 240, 227, 0.8); }
.jn-footer__tagline-hindi { margin: 0 0 10px; font-size: 13px; color: var(--gold-bright); }
.jn-footer__about { font-size: 14px; color: rgba(246, 240, 227, 0.72); }
.jn-footer__title {
	font-family: var(--font-sans);
	font-size: 12px; font-weight: 600;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--gold-bright);
	margin: 0 0 16px;
}
.jn-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.jn-footer__menu a { color: rgba(246, 240, 227, 0.78); font-size: 14px; }
.jn-footer__menu a:hover { color: var(--gold-bright); }
.jn-footer__menu li { font-size: 14px; color: rgba(246, 240, 227, 0.78); }
.jn-footer__bottom { border-top: 1px solid rgba(201, 162, 74, 0.2); padding: 18px 0; text-align: center; }
.jn-footer__bottom p { margin: 0; font-size: 12px; color: rgba(246, 240, 227, 0.55); }

/* ---------- Blog / posts ---------- */
.jn-post-card { overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.jn-post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.jn-post-card__media { overflow: hidden; aspect-ratio: 16 / 9; background: #efe8d8; }
.jn-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.jn-post-card:hover .jn-post-card__media img { transform: scale(1.04); }
.jn-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.jn-post-card__meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); margin: 0; }
.jn-post-card__title { margin: 0; font-size: 21px; color: var(--burgundy); }
.jn-post-card__title a { color: inherit; }
.jn-post-card__title a:hover { color: var(--gold-deep); }
.jn-post-card__excerpt { margin: 0; font-size: 14px; color: var(--muted); }
.jn-post-card .jn-btn { margin-top: auto; align-self: flex-start; }

.jn-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.jn-pagination .page-numbers {
	display: grid; place-items: center;
	min-width: 40px; height: 40px; padding: 0 10px;
	border-radius: 10px; border: 1px solid var(--line);
	color: var(--ink); background: var(--card); font-size: 14px;
}
.jn-pagination .page-numbers.current { background: var(--grad-gold); color: #fff; border-color: transparent; }
.jn-pagination .page-numbers:hover { border-color: var(--gold); }
.jn-empty { text-align: center; color: var(--muted); padding: 40px 0; }
.jn-postnav { display: flex; justify-content: space-between; gap: 20px; margin: 36px 0; }
.jn-single__thumb img { border-radius: var(--radius); margin: 0 auto 28px; }
.jn-single__tags { color: var(--muted); font-size: 14px; }
.jn-single__tags a { margin-right: 8px; }

/* ---------- Catalog filters ---------- */
.jn-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.jn-filter {
	border: 0; border-radius: 999px; padding: 10px 22px;
	background: transparent; color: rgba(34, 31, 28, 0.7);
	font-size: 14px; font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.jn-filter:hover { color: var(--burgundy); }
.jn-filter.is-active { background: var(--grad-gold); color: #fff; box-shadow: var(--shadow-gold); }
.jn-filter-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.jn-filter-item.is-hidden { display: none; }

/* ---------- 404 ---------- */
.jn-404__code { font-size: 120px; color: var(--gold-deep); margin: 0; line-height: 1; }
.jn-404__text { color: var(--muted); font-size: 17px; }
.jn-404__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* ---------- WooCommerce overrides ---------- */
.woocommerce .woocommerce-breadcrumb { margin: 14px 20px 0; color: var(--muted); font-size: 13px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--gold-deep); }

.woocommerce .woocommerce-notices-wrapper { width: 100%; max-width: 1280px; margin: 18px auto 0; padding: 0 20px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top: 3px solid var(--gold);
	background: var(--card);
	color: var(--ink);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold-deep); }

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: 44px; padding: 0 24px;
	border-radius: 999px;
	background: var(--grad-gold);
	color: #fff;
	font-weight: 600;
	border: 0;
	box-shadow: var(--shadow-gold);
}
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover { filter: brightness(1.06); color: #fff; transform: translateY(-1px); }
.woocommerce .button.alt, .woocommerce .button.checkout-button { background: var(--burgundy); }

/* Single product */
.woocommerce div.product { padding: 48px 20px; max-width: 1280px; margin: 0 auto; }
.woocommerce div.product .product_title { font-size: clamp(28px, 4vw, 44px); color: var(--burgundy); }
.woocommerce div.product p.price { color: var(--burgundy); font-family: var(--font-price); font-size: 30px; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product p.price del { color: var(--muted); font-size: 18px; }
.woocommerce div.product form.cart { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.woocommerce div.product form.cart .qty { height: 44px; width: 64px; text-align: center; border: 1px solid var(--line); border-radius: 10px; }
.woocommerce div.product .woocommerce-tabs { margin-top: 48px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-weight: 600; color: var(--burgundy); }
.woocommerce div.product .woocommerce-tabs .panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--card); }
.woocommerce #reviews #comments ol.commentlist li img.avatar { width: 48px; height: 48px; }

/* Shop pages keep plugin layout but refresh colours */
.woocommerce-ordering select { height: 40px; border: 1px solid var(--line); border-radius: 10px; padding: 0 10px; background: var(--card); }
.woocommerce-result-count { color: var(--muted); font-size: 14px; }
.woocommerce nav.woocommerce-pagination ul.page-numbers li .page-numbers {
	min-width: 40px; height: 40px; line-height: 36px;
	border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li span.current { background: var(--gold); color: #fff; border-color: transparent; }

/* Cart & checkout */
.woocommerce table.shop_table { border-collapse: collapse; background: var(--card); border-radius: var(--radius); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 12px 14px; border: 1px solid var(--line-soft); }
.woocommerce table.shop_table th { background: var(--bg); }
.woocommerce .cart_totals, .woocommerce-checkout #order_review { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
	height: 44px; border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; background: var(--card);
}
.woocommerce form .form-row textarea { height: auto; padding: 10px 12px; }
.woocommerce form .form-row label { font-size: 14px; }

/* Account */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { background: var(--bg); color: var(--burgundy); }
/* ---------- Misc touches ---------- */
.jn-logo .jn-logo__img { max-height: 54px; width: auto; margin-bottom: 2px; }
.search-form { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.search-form .search-field {
	flex: 1; height: 48px; padding: 0 16px;
	border: 1px solid var(--line); border-radius: 999px;
	background: var(--card); color: var(--ink); outline: none; font-size: 15px;
}
.search-form .search-field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18); }
.search-form .search-submit {
	height: 48px; padding: 0 26px; border: 0; border-radius: 999px;
	background: var(--grad-gold); color: #fff; font-weight: 600; box-shadow: var(--shadow-gold);
}

.comments-area { margin-top: 48px; }
.comment-list { list-style: none; padding: 0; }
.comment-body { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.comment-form .form-submit .submit { background: var(--grad-gold); color: #fff; border: 0; border-radius: 999px; padding: 12px 28px; font-weight: 600; cursor: pointer; box-shadow: var(--shadow-gold); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; height: 44px; padding: 0 14px;
	border: 1px solid var(--line); border-radius: 10px; background: var(--card); margin-top: 6px;
}
.comment-form textarea { height: auto; padding: 12px 14px; }

.jn-widget { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.jn-widget__title { font-family: var(--font-serif); font-size: 20px; color: var(--burgundy); }
.jn-sidebar { padding: 48px 0; }

/* WordPress core alignment helpers inside editable content */
.alignleft { float: left; margin: 6px 24px 12px 0; }
.alignright { float: right; margin: 6px 0 12px 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; }
/* ------------------------- Keyframes ------------------------- */
@keyframes jn-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@keyframes jn-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
@keyframes jn-rise {
	0%   { transform: translateY(0); opacity: 0; }
	15%  { opacity: 0.9; }
	100% { transform: translateY(-720px); opacity: 0; }
}

/* ------------------------- Responsive ------------------------- */
@media (max-width: 1024px) {
	.jn-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.jn-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
	.jn-nav__desktop { display: none; }
	.jn-nav__burger { display: inline-flex; }
	.jn-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.jn-book__grid, .jn-contact__grid { grid-template-columns: 1fr; }
	.jn-form__grid { grid-template-columns: 1fr; }
	.jn-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.jn-hero { min-height: 78vh; }
}

@media (max-width: 640px) {
	.jn-grid--2, .jn-grid--3, .jn-grid--4 { grid-template-columns: 1fr; }
	.jn-section { padding: 52px 0; }
	.jn-nav { height: 68px; }
	.jn-nav__call { display: none; }
	.jn-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.jn-testi__stage { min-height: 250px; }
	.jn-404__code { font-size: 84px; }
}

/* Animated counter uses tabular numerals */
.jn-stat__value { font-variant-numeric: tabular-nums; }