/* ==========================================================================
   HASMUKHA NATURAL PRODUCT — Design System
   Brand colours sampled directly from the printed packaging:
     logo green  #00492E   |  Khatta Mettha orange #D2570F  |  pack sage #D8ECE1
   Loaded on top of Woodmart 8.4.1. Everything is scoped so a Woodmart update
   never wipes it.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
	/* Brand */
	--hm-green:        #00492E;
	--hm-green-700:    #06603C;
	--hm-green-500:    #12805A;
	--hm-green-100:    #D8ECE1;
	--hm-green-50:     #EDF6F1;

	--hm-saffron:      #D2570F;
	--hm-saffron-600:  #B8480A;
	--hm-saffron-300:  #E87A2E;
	--hm-saffron-50:   #FDF1E7;

	--hm-maroon:       #7E2233;
	--hm-gold:         #B08A3E;

	--hm-whatsapp:      #25D366;
	--hm-whatsapp-dark: #1DA851;

	/* Surfaces */
	--hm-cream:        #FBF7EE;
	--hm-cream-deep:   #F3EADA;
	--hm-white:        #FFFFFF;

	/* Text */
	--hm-ink:          #16261D;
	--hm-body:         #4A4741;
	--hm-muted:        #7C776E;
	--hm-line:         #E7DFD1;

	/* Type */
	--hm-font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
	--hm-font-body:    "DM Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Rhythm */
	--hm-radius:       18px;
	--hm-radius-sm:    12px;
	--hm-radius-pill:  999px;
	--hm-shadow:       0 10px 40px rgba(0, 73, 46, .08);
	--hm-shadow-lg:    0 24px 70px rgba(0, 73, 46, .13);
	--hm-section-y:    clamp(56px, 7vw, 104px);
	--hm-container:    1240px;
}

/* --------------------------------------------------------------------------
   2. BASE — override Woodmart's defaults
   -------------------------------------------------------------------------- */
body,
body.woodmart-page {
	background-color: var(--hm-cream);
	color: var(--hm-body);
	font-family: var(--hm-font-body);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.title, .woocommerce-loop-product__title {
	font-family: var(--hm-font-display);
	color: var(--hm-ink);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.18;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

a { color: var(--hm-green); }
a:hover { color: var(--hm-saffron); }

/* Our own components always size border-box, whatever the parent theme does. */
[class^="hm-"], [class*=" hm-"],
[class^="hm-"] *, [class*=" hm-"] * { box-sizing: border-box; }

.hm-container {
	width: 100%;
	max-width: var(--hm-container);
	margin-inline: auto;
	padding-inline: 20px;
}

.hm-section { padding-block: var(--hm-section-y); }
.hm-section--cream { background: var(--hm-cream-deep); }
.hm-section--white { background: var(--hm-white); }
.hm-section--green { background: var(--hm-green); color: #E3EFE8; }
.hm-section--green h2,
.hm-section--green h3 { color: var(--hm-white); }

/* Shared section heading block */
.hm-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 56px); }
.hm-head__eyebrow {
	display: inline-block;
	font-family: var(--hm-font-body);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--hm-saffron);
	background: var(--hm-saffron-50);
	padding: 7px 16px;
	border-radius: var(--hm-radius-pill);
	margin-bottom: 18px;
}
.hm-head__title { margin: 0 0 14px; }
.hm-head__sub { margin: 0; color: var(--hm-muted); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.hm-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--hm-font-body);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .02em;
	padding: 15px 32px;
	border-radius: var(--hm-radius-pill);
	border: 2px solid transparent;
	text-transform: none;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.hm-btn:hover,
.hm-btn:focus-visible { text-decoration: none; }
.hm-btn:focus-visible {
	outline: 3px solid var(--hm-saffron);
	outline-offset: 3px;
}

.hm-btn--primary,
.woocommerce .single_add_to_cart_button,
.woocommerce a.button.add_to_cart_button {
	background: var(--hm-green) !important;
	color: var(--hm-white) !important;
	box-shadow: 0 8px 22px rgba(0, 73, 46, .22);
}
.hm-btn--primary:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce a.button.add_to_cart_button:hover {
	background: var(--hm-green-700) !important;
	color: var(--hm-white) !important;
	transform: translateY(-2px);
}

.hm-btn--saffron{
	background: var(--hm-saffron) !important;
	color: var(--hm-white) !important;
	box-shadow: 0 8px 22px rgba(210, 87, 15, .26);
}
.hm-btn--saffron:hover{
	background: var(--hm-saffron-600) !important;
	color: var(--hm-white) !important;
	transform: translateY(-2px);
}

.hm-btn--ghost {
	background: transparent;
	color: var(--hm-green);
	border-color: var(--hm-green);
}
.hm-btn--ghost:hover { background: var(--hm-green); color: var(--hm-white); }

/* WhatsApp ordering — the brand green is close to WhatsApp's, so the button
   is given the official green to read unmistakably as "message us". */
.hm-btn--whatsapp {
	background: var(--hm-whatsapp) !important;
	color: var(--hm-white) !important;
	box-shadow: 0 8px 22px rgba(37, 211, 102, .3);
	width: 100%;
}
.hm-btn--whatsapp:hover {
	background: var(--hm-whatsapp-dark) !important;
	color: var(--hm-white) !important;
	transform: translateY(-2px);
}
.hm-wa-icon { flex: none; }

.hm-wa-order { margin-top: 14px; }
.hm-wa-order__note {
	margin: 10px 0 0;
	font-size: .82rem;
	color: var(--hm-muted);
	text-align: center;
}

/* --------------------------------------------------------------------------
   4. HEADER — clean, centred wordmark, cream ground
   -------------------------------------------------------------------------- */








/* Brand logo — the wordmark is ~3.4:1, so height drives the sizing */
.hm-logo{ display: inline-flex; align-items: center; }

.hm-logo__img{
	height: clamp(38px, 4.4vw, 54px);
	width: auto;
	max-width: 100%;
	display: block;
}

/* Fallback if no logo has been uploaded yet */
.hm-logo__text {
	font-family: var(--hm-font-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--hm-green);
	line-height: 1;
	display: block;
}
.hm-logo__text small {
	display: block;
	font-family: var(--hm-font-body);
	font-size: .6rem;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--hm-muted);
	margin-top: 4px;
}

/* Announcement strip */
.hm-topbar {
	background: var(--hm-green);
	color: #DCEAE3;
	font-size: .82rem;
	letter-spacing: .06em;
	text-align: center;
	padding: 9px 16px;
	font-weight: 500;
}
.hm-topbar strong { color: #FFD79A; font-weight: 700; }

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hm-hero {
	position: relative;
	background: linear-gradient(135deg, #F6EFE2 0%, #FBF7EE 46%, #EAF2EC 100%);
	overflow: hidden;
}
.hm-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
	min-height: clamp(460px, 62vw, 640px);
	padding-block: clamp(40px, 5vw, 72px);
}
.hm-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--hm-green);
	background: rgba(255, 255, 255, .75);
	border: 1px solid var(--hm-green-100);
	padding: 8px 18px;
	border-radius: var(--hm-radius-pill);
	margin-bottom: 22px;
}
.hm-hero__title {
	font-size: clamp(2.2rem, 5vw, 4rem);
	margin: 0 0 18px;
	color: var(--hm-ink);
	text-wrap: balance;
}
.hm-hero__title em {
	font-style: normal;
	color: var(--hm-saffron);
}
.hm-hero__text {
	font-size: clamp(1rem, 1.4vw, 1.14rem);
	color: var(--hm-body);
	max-width: 46ch;
	margin: 0 0 30px;
}
.hm-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hm-hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .88rem; font-weight: 600; color: var(--hm-green); }
.hm-hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hm-hero__media { position: relative; text-align: center; }
.hm-hero__media img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 30px 50px rgba(0, 73, 46, .22));
}

/* --------------------------------------------------------------------------
   6. STAT COUNTER STRIP
   -------------------------------------------------------------------------- */
.hm-stats { background: var(--hm-cream-deep); border-block: 1px solid var(--hm-line); }
.hm-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-block: clamp(34px, 4vw, 54px);
	text-align: center;
}
.hm-stats__num {
	font-family: var(--hm-font-display);
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 800;
	color: var(--hm-green);
	line-height: 1;
	display: block;
}
.hm-stats__label {
	font-size: .82rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--hm-muted);
	margin-top: 10px;
	display: block;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. USP BAR (icons row)
   -------------------------------------------------------------------------- */
.hm-usp { background: var(--hm-white); border-bottom: 1px solid var(--hm-line); }
.hm-usp__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-block: 26px;
}
.hm-usp__item {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: center;
	font-size: .9rem;
	font-weight: 600;
	color: var(--hm-ink);
}
.hm-usp__icon {
	flex: none;
	width: 44px; height: 44px;
	display: grid; place-items: center;
	background: var(--hm-green-50);
	border-radius: 50%;
	font-size: 20px;
}

/* --------------------------------------------------------------------------
   8. PRODUCT CARDS (Woodmart loop override)
   -------------------------------------------------------------------------- */

.hm-products .product {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 14px 14px 20px;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	text-align: center;
}

.hm-products .product:hover {
	transform: translateY(-4px);
	box-shadow: var(--hm-shadow);
	border-color: var(--hm-green-100);
}


.woocommerce-loop-product__title {
	font-size: 1.06rem !important;
	font-weight: 700;
	margin: 14px 0 6px;
}




.woocommerce ul.products li.product .price {
	color: var(--hm-green) !important;
	font-family: var(--hm-font-display);
	font-weight: 700;
	font-size: 1.16rem;
}

.woocommerce ul.products li.product .price del {
	color: var(--hm-muted) !important;
	font-size: .92rem;
	font-weight: 500;
	opacity: .8;
}


/* Sale / feature badges */
.product-labels .product-label,
.woocommerce span.onsale {
	background: var(--hm-saffron) !important;
	color: #fff !important;
	border-radius: var(--hm-radius-pill) !important;
	font-family: var(--hm-font-body);
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: .04em;
	padding: 6px 14px !important;
	min-height: 0 !important;
	line-height: 1.3 !important;
}
.product-labels .product-label.new { background: var(--hm-green) !important; }

/* Star ratings */
.star-rating span::before{ color: var(--hm-gold); }

/* --------------------------------------------------------------------------
   9. HOMEPAGE FEATURED BUY BOX (mymukhwas-style, product sold from home)
   -------------------------------------------------------------------------- */
.hm-buybox { background: var(--hm-white); }
.hm-buybox__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}
.hm-buybox__gallery {
	background: var(--hm-cream);
	border-radius: var(--hm-radius);
	padding: 26px;
	text-align: center;
}
.hm-buybox__gallery img { max-width: 100%; height: auto; border-radius: var(--hm-radius-sm); }
.hm-buybox__rating {
	display: flex; align-items: center; gap: 10px;
	font-size: .88rem; color: var(--hm-muted); margin-bottom: 14px;
}
.hm-buybox__stars { color: var(--hm-gold); letter-spacing: 2px; font-size: 1rem; }
.hm-buybox__title { margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.hm-buybox__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.hm-buybox__price-now { font-family: var(--hm-font-display); font-size: 2rem; font-weight: 800; color: var(--hm-green); }
.hm-buybox__price-was { font-size: 1.1rem; color: var(--hm-muted); text-decoration: line-through; }
.hm-buybox__price-off {
	background: var(--hm-saffron-50); color: var(--hm-saffron);
	font-weight: 700; font-size: .8rem; padding: 4px 12px; border-radius: var(--hm-radius-pill);
}
.hm-buybox__unit { font-size: .84rem; color: var(--hm-muted); margin-bottom: 20px; }
.hm-buybox__points { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.hm-buybox__points li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: .95rem; font-weight: 500; color: var(--hm-body);
}
.hm-buybox__points li::before {
	content: "✓";
	flex: none;
	width: 22px; height: 22px;
	display: grid; place-items: center;
	background: var(--hm-green-100); color: var(--hm-green);
	border-radius: 50%; font-size: .74rem; font-weight: 800;
	margin-top: 2px;
}

/* Pack-size selector */
.hm-variants { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 22px; }
.hm-variant {
	position: relative;
	border: 2px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	padding: 14px 16px;
	cursor: pointer;
	transition: border-color .18s ease, background-color .18s ease;
	background: var(--hm-white);
}
.hm-variant:hover { border-color: var(--hm-green-100); }
.hm-variant.is-active { border-color: var(--hm-green); background: var(--hm-green-50); }
.hm-variant__size { display: block; font-weight: 700; color: var(--hm-ink); font-size: .96rem; }
.hm-variant__price { display: block; font-family: var(--hm-font-display); font-weight: 700; color: var(--hm-green); font-size: 1.06rem; margin-top: 4px; }
.hm-variant__was { font-size: .8rem; color: var(--hm-muted); text-decoration: line-through; margin-left: 6px; }
.hm-variant__off {
	position: absolute; top: -10px; right: 10px;
	background: var(--hm-saffron); color: #fff;
	font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: var(--hm-radius-pill);
}

/* --------------------------------------------------------------------------
   10. HOW IT'S MADE (numbered steps)
   -------------------------------------------------------------------------- */
.hm-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.hm-step {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 34px 28px;
	position: relative;
}
.hm-step__num {
	position: absolute; top: -20px; left: 28px;
	width: 44px; height: 44px;
	display: grid; place-items: center;
	background: var(--hm-green); color: #fff;
	border-radius: 50%;
	font-family: var(--hm-font-display); font-weight: 800; font-size: 1.1rem;
	box-shadow: 0 6px 16px rgba(0, 73, 46, .28);
}
.hm-step h3 { margin: 14px 0 10px; font-size: 1.24rem; }
.hm-step p { margin: 0; color: var(--hm-muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.hm-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hm-why__card {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 30px 24px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}
.hm-why__card:hover { transform: translateY(-4px); box-shadow: var(--hm-shadow); }
.hm-why__icon {
	width: 60px; height: 60px; margin: 0 auto 18px;
	display: grid; place-items: center;
	background: var(--hm-green-50); border-radius: 50%; font-size: 26px;
}
.hm-why__card h3 { font-size: 1.12rem; margin: 0 0 10px; }
.hm-why__card p { font-size: .92rem; color: var(--hm-muted); margin: 0; }

/* --------------------------------------------------------------------------
   12. INGREDIENT BLEND (Royal Paan "A Royal Blend of Flavours")
   -------------------------------------------------------------------------- */
.hm-blend__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.hm-blend__item {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	padding: 22px 20px;
	text-align: center;
}
.hm-blend__name { font-family: var(--hm-font-display); font-weight: 700; color: var(--hm-green); font-size: 1.04rem; display: block; }
.hm-blend__note { font-size: .85rem; color: var(--hm-muted); font-style: italic; }

/* --------------------------------------------------------------------------
   13. REVIEWS
   -------------------------------------------------------------------------- */
.hm-reviews__summary { text-align: center; margin-bottom: 40px; }
.hm-reviews__score { font-family: var(--hm-font-display); font-size: 3rem; font-weight: 800; color: var(--hm-green); line-height: 1; }
.hm-reviews__stars { color: var(--hm-gold); font-size: 1.4rem; letter-spacing: 3px; margin: 8px 0; }
.hm-reviews__count { color: var(--hm-muted); font-size: .92rem; }
.hm-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hm-review {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 26px 24px;
}
.hm-review__stars { color: var(--hm-gold); letter-spacing: 2px; margin-bottom: 12px; }
.hm-review__text { font-size: .96rem; color: var(--hm-body); margin: 0 0 18px; }
.hm-review__who { display: flex; align-items: center; gap: 12px; }
.hm-review__avatar {
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--hm-green-100); color: var(--hm-green);
	display: grid; place-items: center;
	font-family: var(--hm-font-display); font-weight: 800;
}
.hm-review__name { font-weight: 700; color: var(--hm-ink); font-size: .92rem; line-height: 1.3; }
.hm-review__meta { font-size: .78rem; color: var(--hm-muted); }

/* --------------------------------------------------------------------------
   14. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.hm-faq { max-width: 860px; margin-inline: auto; }
.hm-faq__item {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	margin-bottom: 12px;
	overflow: hidden;
}
.hm-faq__q {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: none; border: 0;
	padding: 20px 24px;
	font-family: var(--hm-font-display);
	font-size: 1.04rem; font-weight: 700; color: var(--hm-ink);
	text-align: left; cursor: pointer;
}
.hm-faq__q:hover { color: var(--hm-green); }
.hm-faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.hm-faq__icon::before,
.hm-faq__icon::after {
	content: ""; position: absolute; inset: 50% 0 auto 0;
	height: 2px; background: var(--hm-green); border-radius: 2px;
	transition: transform .22s ease;
}
.hm-faq__icon::after { transform: rotate(90deg); }
.hm-faq__item.is-open .hm-faq__icon::after { transform: rotate(0deg); }
.hm-faq__a {
	max-height: 0; overflow: hidden;
	transition: max-height .3s ease;
}
.hm-faq__a-inner { padding: 0 24px 22px; color: var(--hm-body); font-size: .96rem; }
.hm-faq__a-inner ul { margin: 10px 0 0 18px; }

/* --------------------------------------------------------------------------
   15. SINGLE PRODUCT PAGE
   -------------------------------------------------------------------------- */
.single-product .product_title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 12px; }
.single-product .woocommerce-product-gallery { background: var(--hm-white); border-radius: var(--hm-radius); padding: 18px; }
.single-product p.price,
.single-product .summary .price {
	font-family: var(--hm-font-display);
	font-size: 2rem !important;
	font-weight: 800;
	color: var(--hm-green) !important;
}
.single-product .summary .price del { font-size: 1.1rem; color: var(--hm-muted) !important; font-weight: 500; }
.single-product .woocommerce-product-details__short-description { font-size: 1rem; color: var(--hm-body); }

/* Trust strip under add-to-cart */
.hm-trust-strip {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--hm-line);
}
.hm-trust-strip__item { display: flex; align-items: center; gap: 10px; font-size: .84rem; font-weight: 600; color: var(--hm-ink); }
.hm-trust-strip__item span:first-child { font-size: 20px; }

/* Product info table (net weight, FSSAI, shelf life…) */
.hm-specs { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .93rem; }
.hm-specs th, .hm-specs td { padding: 12px 14px; border-bottom: 1px solid var(--hm-line); text-align: left; }
.hm-specs th { width: 40%; color: var(--hm-muted); font-weight: 600; }
.hm-specs td { color: var(--hm-ink); font-weight: 500; }

/* Woo tabs */
.woocommerce-tabs .wc-tabs li a { font-family: var(--hm-font-display); font-weight: 700; }
.woocommerce-tabs .wc-tabs li.active a { color: var(--hm-green); }

/* Sticky mobile add-to-cart */
.hm-sticky-atc {
	position: fixed; inset: auto 0 0 0; z-index: 400;
	background: var(--hm-white);
	border-top: 1px solid var(--hm-line);
	padding: 10px 16px;
	display: none;
	align-items: center; justify-content: space-between; gap: 14px;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
}
.hm-sticky-atc__price { font-family: var(--hm-font-display); font-weight: 800; color: var(--hm-green); font-size: 1.15rem; }
.hm-sticky-atc .hm-btn { padding: 13px 26px; }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.hm-footer { background: var(--hm-green); color: #C9DED4; padding-top: clamp(48px, 6vw, 76px); }
.hm-footer a { color: #C9DED4; }
.hm-footer a:hover { color: #FFD79A; }
.hm-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(24px, 3vw, 48px); }
.hm-footer h4 {
	color: var(--hm-white); font-size: 1rem; margin: 0 0 18px;
	font-family: var(--hm-font-body); font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase;
}
.hm-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .92rem; }
/* The wordmark is dark green, so on the green footer it sits on a white
   plate rather than disappearing. */
.hm-footer__logo {
	display: inline-block;
	background: var(--hm-white);
	padding: 14px 20px;
	border-radius: var(--hm-radius-sm);
	margin-bottom: 20px;
}
.hm-footer__logo img { height: 46px; width: auto; display: block; }
.hm-footer__about { font-size: .92rem; line-height: 1.7; }
.hm-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.hm-footer__bottom {
	margin-top: clamp(36px, 4vw, 56px);
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding-block: 22px;
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
	font-size: .84rem;
}
.hm-footer__fssai {
	display: inline-block; margin-top: 14px;
	background: rgba(255, 255, 255, .1); border-radius: var(--hm-radius-sm);
	padding: 8px 14px; font-size: .78rem; letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   17. WHATSAPP FLOAT
   -------------------------------------------------------------------------- */
.hm-wa {
	position: fixed; right: 18px; bottom: 18px; z-index: 500;
	width: 54px; height: 54px; border-radius: 50%;
	background: var(--hm-whatsapp); color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
	transition: transform .2s ease;
}
.hm-wa:hover { transform: scale(1.08); color: #fff; }
.hm-wa svg { width: 28px !important; height: 28px !important; }
.hm-wa:focus-visible { outline: 3px solid var(--hm-green); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   18. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hm-why__grid,
	.hm-usp__grid { grid-template-columns: repeat(2, 1fr); }
	.hm-steps__grid,
	.hm-reviews__grid { grid-template-columns: 1fr; }
	.hm-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.hm-hero__inner,
	.hm-buybox__inner { grid-template-columns: 1fr; }
	.hm-hero__inner { text-align: center; min-height: 0; }
	.hm-hero__cta, .hm-hero__trust { justify-content: center; }
	.hm-hero__text { margin-inline: auto; }
	.hm-hero__media { order: -1; }
	.hm-hero__media img { max-width: 320px; }
	.hm-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
	.hm-sticky-atc { display: flex; }
	body.single-product { padding-bottom: 78px; }
}

@media (max-width: 560px) {
	.hm-usp__grid { grid-template-columns: 1fr; }
	.hm-why__grid { grid-template-columns: 1fr; }
	.hm-footer__grid { grid-template-columns: 1fr; }
	.hm-variants { grid-template-columns: 1fr; }
	.hm-head__sub { font-size: .96rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

/* --------------------------------------------------------------------------
   19. HOMEPAGE PRODUCT SLIDER
   One product at a time — mukhwas, masala, papad.
   -------------------------------------------------------------------------- */
.hm-slider { background: var(--hm-white); }
.hm-slider__frame { position: relative; }

/* All slides occupy the same grid cell, so the track is as tall as the
   tallest one and the page never jumps as it cycles. */
.hm-slider__track {
	display: grid;
	background: var(--hm-cream);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	overflow: hidden;
}

.hm-slide {
	grid-area: 1 / 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	padding: clamp(24px, 3.5vw, 48px);

	/* visibility (not display) so hidden slides leave the tab order but
	   still contribute their height to the track. */
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity .4s ease, transform .4s ease, visibility .4s;
}

.hm-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.hm-slide__gallery {
	position: relative;
	background: var(--hm-white);
	border-radius: var(--hm-radius);
	padding: 24px;
	text-align: center;
}
.hm-slide__gallery img { max-width: 100%; height: auto; border-radius: var(--hm-radius-sm); }
.hm-slide__badge {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	background: var(--hm-saffron); color: var(--hm-white);
	font-size: .75rem; font-weight: 700; letter-spacing: .03em;
	padding: 6px 14px; border-radius: var(--hm-radius-pill);
}

.hm-slide__cat {
	display: inline-block;
	font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--hm-saffron); background: var(--hm-saffron-50);
	padding: 6px 14px; border-radius: var(--hm-radius-pill); margin-bottom: 14px;
}
.hm-slide__title { margin: 0 0 10px; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.hm-slide__title a { color: var(--hm-ink); text-decoration: none; }
.hm-slide__title a:hover { color: var(--hm-green); }
.hm-slide__rating {
	display: flex; align-items: center; gap: 10px;
	font-size: .86rem; color: var(--hm-muted); margin-bottom: 12px;
}
.hm-slide__price {
	font-family: var(--hm-font-display); font-size: 1.9rem;
	font-weight: 800; color: var(--hm-green); margin-bottom: 4px;
}
.hm-slide__price del { font-size: 1rem; font-weight: 500; color: var(--hm-muted); opacity: .8; margin-right: 8px; }
.hm-slide__price ins { text-decoration: none; }
.hm-slide__text { color: var(--hm-muted); font-size: .95rem; margin: 12px 0 22px; }
.hm-slide__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hm-slide__cta .hm-btn { flex: 1 1 auto; }

/* Arrows */
.hm-slider__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--hm-white); color: var(--hm-green);
	border: 1px solid var(--hm-line);
	font-size: 1.6rem; line-height: 1; cursor: pointer;
	display: grid; place-items: center;
	box-shadow: var(--hm-shadow);
	transition: background-color .18s ease, color .18s ease;
}
.hm-slider__nav:hover { background: var(--hm-green); color: var(--hm-white); }
.hm-slider__nav:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }
.hm-slider__nav--prev { left: -22px; }
.hm-slider__nav--next { right: -22px; }

/* Dots double as product names, so people know what they are switching to */
.hm-slider__dots {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 10px; margin-top: 26px;
}
.hm-slider__dot {
	background: var(--hm-white); border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-pill);
	padding: 9px 18px;
	font-family: var(--hm-font-body); font-size: .84rem; font-weight: 600;
	color: var(--hm-muted); cursor: pointer;
	transition: all .18s ease;
	max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hm-slider__dot:hover { border-color: var(--hm-green-100); color: var(--hm-ink); }
.hm-slider__dot.is-active {
	background: var(--hm-green); border-color: var(--hm-green); color: var(--hm-white);
}
.hm-slider__dot:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   20. INSTAGRAM REELS
   -------------------------------------------------------------------------- */
.hm-reels__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	align-items: start;
}
.hm-reels__item {
	background: var(--hm-cream);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	overflow: hidden;
	min-height: 420px;
}
.hm-reels__item .instagram-media {
	margin: 0 !important;
	min-width: 0 !important;
	max-width: 100% !important;
	border-radius: var(--hm-radius) !important;
	border: 0 !important;
	box-shadow: none !important;
}
.hm-reels__placeholder {
	background: var(--hm-cream);
	border: 2px dashed var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 40px 28px;
	text-align: center;
}
.hm-reels__placeholder-icon { font-size: 34px; display: block; margin-bottom: 14px; }
.hm-reels__placeholder h3 { font-size: 1.1rem; margin: 0 0 10px; }
.hm-reels__placeholder p { font-size: .9rem; color: var(--hm-muted); margin: 0; }
.hm-reels__follow { text-align: center; margin: 36px 0 0; }

/* --------------------------------------------------------------------------
   21. SHOP / COLLECTION PAGE
   -------------------------------------------------------------------------- */
.hm-archive-head {
	background: linear-gradient(135deg, #F6EFE2 0%, #FBF7EE 50%, #EAF2EC 100%);
	padding-block: clamp(40px, 5vw, 72px);
	text-align: center;
	margin-bottom: clamp(28px, 3vw, 44px);
}
.hm-archive-head h1 { margin: 0 0 14px; }
.hm-archive-head__text {
	max-width: 680px; margin: 0 auto;
	color: var(--hm-body); font-size: 1.02rem;
}
.hm-archive-head__text p { margin: 0 0 10px; }
.hm-archive-head__usps {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 10px 20px; margin-top: 22px;
	font-size: .84rem; font-weight: 600; color: var(--hm-green);
}
.hm-archive-head__usps span {
	background: rgba(255, 255, 255, .7);
	border: 1px solid var(--hm-green-100);
	border-radius: var(--hm-radius-pill);
	padding: 7px 16px;
}

/* Card badges */
.hm-card__badges {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
	pointer-events: none;
}
.hm-badge {
	font-size: .68rem; font-weight: 700; letter-spacing: .04em;
	padding: 5px 11px; border-radius: var(--hm-radius-pill);
	line-height: 1.3; white-space: nowrap;
}
.hm-badge--sale   { background: var(--hm-saffron); color: var(--hm-white); }
.hm-badge--weight { background: var(--hm-green); color: var(--hm-white); }
.hm-badge--ship   { background: var(--hm-green-100); color: var(--hm-green); }


.hm-products .product { position: relative; }

.hm-card__reviews {
	font-size: .78rem; color: var(--hm-muted);
	margin: 4px 0 8px;
}
.hm-card__reviews span:first-child { color: var(--hm-gold); letter-spacing: 1px; }

.hm-card__buy { margin-top: 8px; width: 100%; padding: 12px 20px; font-size: .88rem; }

/* Woo sorting + result count */
.woocommerce .woocommerce-ordering select {
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-pill);
	padding: 10px 18px;
	font-family: var(--hm-font-body); font-size: .88rem;
	background: var(--hm-white); color: var(--hm-ink);
}
.woocommerce .woocommerce-result-count {
	color: var(--hm-muted); font-size: .88rem;
}

/* --------------------------------------------------------------------------
   22. CART
   -------------------------------------------------------------------------- */
.hm-cart { position: relative; }
.hm-cart.is-busy { pointer-events: none; }
.hm-cart.is-busy .hm-cart__items,
.hm-cart.is-busy .hm-cart__summary { opacity: .5; transition: opacity .15s ease; }

.hm-cart__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr);
	gap: clamp(24px, 3vw, 48px);
	align-items: start;
}

.hm-cart__notices:empty { display: none; }
.hm-cart__notices {
	background: var(--hm-green-50);
	border: 1px solid var(--hm-green-100);
	border-radius: var(--hm-radius-sm);
	padding: 14px 18px;
	margin-bottom: 20px;
	font-size: .92rem;
}
.hm-cart__notices ul { list-style: none; margin: 0; padding: 0; }
.hm-cart__notices a { font-weight: 700; text-decoration: underline; }

/* Table -------------------------------------------------------------- */
.hm-cart__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	overflow: hidden;
}
.hm-cart__table thead th {
	font-family: var(--hm-font-body);
	font-size: .72rem; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--hm-muted);
	text-align: left;
	padding: 16px 14px;
	background: var(--hm-cream);
	border-bottom: 1px solid var(--hm-line);
}
.hm-cart__table thead th.product-subtotal,
.hm-cart__table thead th.product-remove { text-align: right; }
.hm-cart__table td {
	padding: 18px 14px;
	border-bottom: 1px solid var(--hm-line);
	vertical-align: middle;
}
.hm-cart__table tr:last-child td { border-bottom: 0; }

.hm-cart__table .product-thumbnail { width: 96px; }
.hm-cart__table .product-thumbnail img {
	width: 76px; height: 76px; object-fit: cover;
	border-radius: var(--hm-radius-sm);
	background: var(--hm-cream);
	display: block;
}
.hm-cart__name {
	font-family: var(--hm-font-display);
	font-size: 1.04rem; font-weight: 700;
	color: var(--hm-ink); text-decoration: none;
	display: block; margin-bottom: 4px;
}
.hm-cart__name:hover { color: var(--hm-green); }
.hm-cart__meta,
.hm-cart__unit { display: block; font-size: .82rem; color: var(--hm-muted); }
.hm-cart__table .variation {
	margin: 4px 0 0; font-size: .82rem; color: var(--hm-muted);
}
.hm-cart__table .variation dt,
.hm-cart__table .variation dd { display: inline; margin: 0; }
.hm-cart__table .variation dd::after { content: ""; display: block; }

.hm-cart__table .product-subtotal {
	text-align: right;
	font-family: var(--hm-font-display);
	font-weight: 700; font-size: 1.06rem;
	color: var(--hm-green);
	white-space: nowrap;
}
.hm-cart__table .product-remove { width: 52px; text-align: right; }

.hm-cart__remove {
	display: inline-grid; place-items: center;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--hm-cream);
	color: var(--hm-muted);
	font-size: 1.3rem; line-height: 1;
	text-decoration: none;
	transition: background-color .18s ease, color .18s ease;
}
.hm-cart__remove:hover { background: #F6E2E2; color: #B23B3B; }
.hm-cart__remove:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }

/* Quantity stepper ---------------------------------------------------- */
.hm-qty {
	display: inline-flex; align-items: center;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-pill);
	background: var(--hm-white);
	overflow: hidden;
}
.hm-qty__btn {
	width: 36px; height: 40px;
	border: 0; background: none;
	font-size: 1.15rem; line-height: 1; color: var(--hm-green);
	cursor: pointer;
	transition: background-color .15s ease;
}
.hm-qty__btn:hover { background: var(--hm-green-50); }
.hm-qty__btn:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: -3px; }
.hm-qty input.qty,
.hm-qty .input-text {
	width: 46px; height: 40px;
	border: 0; border-inline: 1px solid var(--hm-line);
	text-align: center;
	font-family: var(--hm-font-body); font-size: .95rem; font-weight: 700;
	color: var(--hm-ink); background: var(--hm-white);
	-moz-appearance: textfield;
	appearance: textfield;
}
.hm-qty input.qty::-webkit-outer-spin-button,
.hm-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hm-qty input.qty:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: -3px; }

/* Actions row --------------------------------------------------------- */
.hm-cart__actions td { background: var(--hm-cream); }
.hm-cart__actions-inner {
	display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
	justify-content: space-between;
}
.hm-cart__coupon { display: flex; gap: 8px; flex: 1 1 260px; max-width: 380px; }
.hm-cart__coupon .input-text {
	flex: 1; min-width: 0;
	padding: 12px 16px;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-pill);
	font-family: inherit; font-size: .9rem;
	background: var(--hm-white);
}
.hm-cart__coupon .hm-btn { padding: 12px 22px; }
/* Redundant once AJAX is running, but it is the no-JS fallback. */
.hm-cart__update { padding: 12px 22px; }

/* Summary ------------------------------------------------------------- */
.hm-cart__summary { position: sticky; top: 96px; display: grid; gap: 18px; }
.hm-summary {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 26px;
}
.hm-summary__title { margin: 0 0 18px; font-size: 1.2rem; }
.hm-summary__rows { display: grid; gap: 12px; }
.hm-summary__row {
	display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
	font-size: .95rem;
}
.hm-summary__row > span:last-child { font-weight: 600; color: var(--hm-ink); text-align: right; }
.hm-summary__row--total {
	border-top: 1px solid var(--hm-line);
	padding-top: 14px; margin-top: 4px;
	font-size: 1.15rem;
}
.hm-summary__row--total > span:last-child {
	font-family: var(--hm-font-display);
	font-weight: 800; color: var(--hm-green); font-size: 1.35rem;
}
.hm-summary .woocommerce-shipping-methods { list-style: none; margin: 0; padding: 0; font-size: .9rem; }
.hm-summary .wc-proceed-to-checkout { margin-top: 22px; display: grid; gap: 10px; }
.hm-summary .wc-proceed-to-checkout .checkout-button { width: 100%; }

/* Suggestions --------------------------------------------------------- */
.hm-cart__suggest { margin-top: 40px; }
.hm-cart__suggest h2 { font-size: 1.25rem; margin: 0 0 18px; }
.hm-cart__suggest-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
}
.hm-cart__suggest-item {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 16px; text-align: center;
	display: grid; gap: 8px; align-content: start;
}
.hm-cart__suggest-item a { text-decoration: none; }
.hm-cart__suggest-item img {
	width: 100%; aspect-ratio: 1; object-fit: cover;
	border-radius: var(--hm-radius-sm); background: var(--hm-cream);
}
.hm-cart__suggest-name {
	display: block; margin-top: 10px;
	font-family: var(--hm-font-display); font-weight: 700; font-size: .95rem;
	color: var(--hm-ink);
}
.hm-cart__suggest-price { font-weight: 700; color: var(--hm-green); font-size: .92rem; }
.hm-cart__suggest-item .hm-btn { padding: 10px 18px; font-size: .84rem; }

/* Empty state --------------------------------------------------------- */
.hm-empty-cart {
	text-align: center;
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: clamp(40px, 6vw, 72px) 28px;
}
.hm-empty-cart__icon { font-size: 48px; display: block; margin-bottom: 18px; }
.hm-empty-cart h2 { margin: 0 0 10px; }
.hm-empty-cart p { color: var(--hm-muted); margin: 0 0 26px; }
.hm-empty-cart__cta {
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.hm-empty-cart__cta .hm-btn--whatsapp { width: auto; }

/* Free-shipping progress ---------------------------------------------- */
.hm-ship-bar {
	background: var(--hm-green-50);
	border: 1px solid var(--hm-green-100);
	border-radius: var(--hm-radius-sm);
	padding: 16px 18px;
}
.hm-ship-bar__text { margin: 0 0 10px; font-size: .9rem; color: var(--hm-green); font-weight: 600; }
.hm-ship-bar__track {
	height: 8px; background: var(--hm-white);
	border-radius: var(--hm-radius-pill); overflow: hidden;
}
.hm-ship-bar__fill {
	display: block; height: 100%;
	background: linear-gradient(90deg, var(--hm-green-500), var(--hm-green));
	border-radius: var(--hm-radius-pill);
	transition: width .4s ease;
}

/* --------------------------------------------------------------------------
   22b. CHECKOUT & THANK YOU
   -------------------------------------------------------------------------- */
.woocommerce table.shop_table {
	border: 1px solid var(--hm-line) !important;
	border-radius: var(--hm-radius) !important;
	background: var(--hm-white);
}
.woocommerce-checkout h3 { font-size: 1.25rem; }

.woocommerce-checkout #payment { background: var(--hm-cream) !important; border-radius: var(--hm-radius); }
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--hm-line); }
.woocommerce-checkout #payment ul.payment_methods li { padding: 6px 0; }
.woocommerce-checkout #payment ul.payment_methods label { font-weight: 600; color: var(--hm-ink); }

/* The locked "coming soon" online payment row */
.hm-payment-extra { border: 0 !important; padding-top: 0 !important; margin-top: -6px; list-style: none; }
.hm-payment-locked {
	opacity: .58;
	cursor: not-allowed;
	padding: 10px 0 !important;
}
.hm-payment-locked input { cursor: not-allowed; }
.hm-payment-locked label { cursor: not-allowed; color: var(--hm-muted) !important; }
.hm-payment-locked__tag {
	display: inline-block; margin-left: 8px;
	background: var(--hm-line); color: var(--hm-body);
	font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	padding: 3px 10px; border-radius: var(--hm-radius-pill);
	vertical-align: middle;
}
.hm-payment-locked__note {
	font-size: .82rem; color: var(--hm-muted);
	margin: 6px 0 0 28px;
}

.hm-checkout-trust {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px; margin-top: 22px; padding-top: 20px;
	border-top: 1px solid var(--hm-line);
}
.hm-checkout-help {
	margin: 18px 0 0; font-size: .88rem; color: var(--hm-muted);
	background: var(--hm-green-50); border-radius: var(--hm-radius-sm); padding: 14px 18px;
}

.hm-thankyou {
	background: var(--hm-cream); border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius); padding: 32px; margin: 30px 0;
}
.hm-thankyou h2 { margin-top: 0; font-size: 1.35rem; }
.hm-thankyou__steps { margin: 0 0 18px; padding-left: 20px; display: grid; gap: 8px; }
.hm-thankyou .hm-btn--whatsapp { width: auto; }

/* --------------------------------------------------------------------------
   23. STATIC PAGES (About, Contact, policies)
   -------------------------------------------------------------------------- */
.hm-page-hero {
	background: linear-gradient(135deg, #F6EFE2 0%, #FBF7EE 50%, #EAF2EC 100%);
	padding-block: clamp(48px, 6vw, 84px);
	text-align: center;
}
.hm-page-hero h1 { margin: 0 0 16px; }
.hm-page-hero__lead {
	max-width: 640px; margin: 0 auto;
	font-size: 1.05rem; color: var(--hm-body);
}

.hm-prose { max-width: 760px; }
.hm-prose h2 { margin: 36px 0 14px; }
.hm-prose h3 { margin: 28px 0 10px; }
.hm-prose p, .hm-prose li { color: var(--hm-body); }
.hm-prose ul, .hm-prose ol { padding-left: 22px; display: grid; gap: 8px; }
.hm-prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
.hm-prose th, .hm-prose td {
	padding: 12px 14px; border-bottom: 1px solid var(--hm-line); text-align: left;
}
.hm-prose th { color: var(--hm-muted); font-weight: 600; }

.hm-contact__grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.hm-contact__card {
	background: var(--hm-cream); border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius); padding: 28px 24px;
	text-align: center; text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hm-contact__card:hover {
	transform: translateY(-4px); box-shadow: var(--hm-shadow);
	border-color: var(--hm-green-100);
}
.hm-contact__icon { font-size: 30px; display: block; margin-bottom: 14px; }
.hm-contact__card h2 { font-size: 1.1rem; margin: 0 0 8px; }
.hm-contact__card p { font-size: .88rem; color: var(--hm-muted); margin: 0 0 14px; }
.hm-contact__value { font-weight: 700; color: var(--hm-green); font-size: .92rem; word-break: break-word; }

.hm-contact__lower { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.hm-contact__address {
	background: var(--hm-white); border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius); padding: 30px 26px;
}
.hm-contact__address h2 { margin-top: 0; font-size: 1.2rem; }
.hm-contact__address h3 { font-size: 1.02rem; margin: 24px 0 8px; }
.hm-contact__address p { font-size: .92rem; }

/* --------------------------------------------------------------------------
   24. RESPONSIVE FOR THE NEW SECTIONS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.hm-slider__nav--prev { left: 6px; }
	.hm-slider__nav--next { right: 6px; }
}

@media (max-width: 900px) {
	.hm-contact__lower { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.hm-slide { grid-template-columns: 1fr; }
	.hm-slide__gallery { order: -1; }
	.hm-slider__nav { top: auto; bottom: -8px; transform: none; }
	.hm-slider__dot { max-width: 150px; }
	.hm-checkout-trust { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	.hm-slide__cta { flex-direction: column; }
	.hm-slide__cta .hm-btn { width: 100%; }
	.hm-slider__nav--prev { left: 0; }
	.hm-slider__nav--next { right: 0; }
	.hm-reels__item { min-height: 0; }
}

/* --------------------------------------------------------------------------
   25. CART — RESPONSIVE
   A five-column table at 375px is unusable, so each row becomes a card.
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hm-cart__layout { grid-template-columns: 1fr; }
	.hm-cart__summary { position: static; }
}

@media (max-width: 720px) {
	.hm-cart__table,
	.hm-cart__table tbody,
	.hm-cart__table tr,
	.hm-cart__table td { display: block; width: 100%; }

	.hm-cart__table { border: 0; background: none; overflow: visible; }
	.hm-cart__table thead { display: none; }

	.hm-cart__table tbody tr.woocommerce-cart-form__cart-item {
		position: relative;
		background: var(--hm-white);
		border: 1px solid var(--hm-line);
		border-radius: var(--hm-radius);
		padding: 16px 16px 16px 108px;
		margin-bottom: 14px;
		min-height: 116px;
	}

	.hm-cart__table tbody tr.woocommerce-cart-form__cart-item td {
		border: 0;
		padding: 0;
	}

	.hm-cart__table .product-thumbnail {
		position: absolute;
		left: 16px;
		top: 16px;
		width: 76px;
	}

	.hm-cart__table .product-name { padding-right: 40px !important; }

	.hm-cart__table .product-quantity {
		margin-top: 12px;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}
	/* The label the desktop table puts in <thead>. */
	.hm-cart__table .product-quantity::before {
		content: attr(data-title);
		font-size: .72rem; font-weight: 700;
		letter-spacing: .1em; text-transform: uppercase;
		color: var(--hm-muted);
	}

	.hm-cart__table .product-subtotal {
		margin-top: 10px;
		display: flex !important;
		align-items: baseline;
		justify-content: space-between;
		text-align: left;
		padding-top: 10px !important;
		border-top: 1px solid var(--hm-line) !important;
	}
	.hm-cart__table .product-subtotal::before {
		content: attr(data-title);
		font-size: .72rem; font-weight: 700;
		letter-spacing: .1em; text-transform: uppercase;
		color: var(--hm-muted);
	}

	.hm-cart__table .product-remove {
		position: absolute;
		top: 12px;
		right: 12px;
		width: auto;
	}

	.hm-cart__actions td {
		background: none;
		padding: 0 !important;
	}
	.hm-cart__actions-inner {
		flex-direction: column;
		align-items: stretch;
		background: var(--hm-cream);
		border-radius: var(--hm-radius);
		padding: 18px;
	}
	.hm-cart__coupon { max-width: none; }
	.hm-cart__actions-inner .hm-btn { width: 100%; }
	.hm-cart__coupon .hm-btn { width: auto; }
}

/* --------------------------------------------------------------------------
   26. SINGLE PRODUCT PAGE
   -------------------------------------------------------------------------- */
.hm-crumb {
	font-size: .84rem;
	color: var(--hm-muted);
	padding-block: 18px;
}
.hm-crumb a { color: var(--hm-muted); text-decoration: none; }
.hm-crumb a:hover { color: var(--hm-green); }
.hm-crumb__sep { opacity: .5; margin-inline: 4px; }

.single-product .product_title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 8px 0 12px; }

.single-product .woocommerce-product-gallery {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 18px;
}
.single-product .woocommerce-product-gallery img { border-radius: var(--hm-radius-sm); }

.single-product .summary p.price,
.single-product .summary .price {
	font-family: var(--hm-font-display);
	font-size: 2rem !important;
	font-weight: 800;
	color: var(--hm-green) !important;
	margin-bottom: 2px;
}
.single-product .summary .price del {
	font-size: 1.05rem; font-weight: 500;
	color: var(--hm-muted) !important; opacity: .85;
}
.single-product .summary .price ins { text-decoration: none; }

.hm-product__unit {
	font-size: .86rem;
	color: var(--hm-muted);
	margin: 0 0 20px;
}
.hm-product__points { margin-bottom: 24px; }

.single-product .woocommerce-product-details__short-description {
	font-size: 1rem;
	color: var(--hm-body);
	padding-block: 4px 20px;
	border-top: 1px solid var(--hm-line);
}

/* Pack-size cards --------------------------------------------------- */
.hm-variants__label {
	font-size: .78rem; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--hm-muted);
	margin: 0 0 10px;
}
.hm-variants {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}
.hm-variant {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	border: 2px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	padding: 14px 16px;
	background: var(--hm-white);
	font-family: var(--hm-font-body);
	cursor: pointer;
	transition: border-color .18s ease, background-color .18s ease;
}
.hm-variant:hover:not(.is-out) { border-color: var(--hm-green-100); }
.hm-variant.is-active { border-color: var(--hm-green); background: var(--hm-green-50); }
.hm-variant:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }
.hm-variant.is-out { opacity: .45; cursor: not-allowed; }
.hm-variant.is-out::after {
	content: attr(data-out-label);
	display: block; font-size: .72rem; color: var(--hm-muted); margin-top: 4px;
}
.hm-variant__size { display: block; font-weight: 700; color: var(--hm-ink); font-size: .96rem; }
.hm-variant__price {
	display: block; margin-top: 4px;
	font-family: var(--hm-font-display); font-weight: 700;
	color: var(--hm-green); font-size: 1.06rem;
}
.hm-variant__price .amount { font-size: inherit; }
.hm-variant__was {
	font-size: .8rem; font-weight: 500;
	color: var(--hm-muted); text-decoration: line-through; margin-left: 6px;
}
.hm-variant__off {
	position: absolute; top: -10px; right: 10px;
	background: var(--hm-saffron); color: var(--hm-white);
	font-size: .66rem; font-weight: 700;
	padding: 3px 9px; border-radius: var(--hm-radius-pill);
}
/* The real <select> stays for the no-JS path and for Woo's own logic. */
.hm-variants__select { display: none; }
.no-js .hm-variants { display: none; }
.no-js .hm-variants__select { display: block; }

/* Delivery estimate -------------------------------------------------- */
.hm-delivery {
	background: var(--hm-cream);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 22px;
	margin-top: 24px;
}
.hm-delivery__title {
	font-family: var(--hm-font-body);
	font-size: .78rem; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--hm-muted);
	margin: 0 0 14px;
}
.hm-delivery__form { display: flex; gap: 10px; }
.hm-delivery__input {
	flex: 1; min-width: 0;
	padding: 13px 16px;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-pill);
	font-family: inherit; font-size: .95rem;
	letter-spacing: .06em;
	background: var(--hm-white);
}
.hm-delivery__input:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }
.hm-delivery__form .hm-btn { padding: 13px 26px; flex: none; }
.hm-delivery__result { margin: 12px 0 0; font-size: .9rem; font-weight: 600; min-height: 1.2em; }
.hm-delivery__result.is-ok { color: var(--hm-green); }
.hm-delivery__result.is-error { color: #B23B3B; }
.hm-delivery__facts {
	list-style: none; margin: 16px 0 0; padding: 16px 0 0;
	border-top: 1px solid var(--hm-line);
	display: grid; gap: 8px;
	font-size: .86rem; color: var(--hm-body);
}

/* What's inside ------------------------------------------------------ */
.hm-pack { background: var(--hm-cream-deep); padding-block: var(--hm-section-y); }
.hm-pack__list {
	max-width: 860px; margin: 0 auto;
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	overflow: hidden;
}
.hm-pack__row {
	display: grid;
	grid-template-columns: minmax(180px, 240px) 1fr;
	gap: 20px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--hm-line);
}
.hm-pack__row:last-child { border-bottom: 0; }
.hm-pack__list dt {
	display: flex; align-items: center; gap: 10px;
	font-weight: 700; color: var(--hm-ink); font-size: .92rem;
	margin: 0;
}
.hm-pack__icon { font-size: 17px; }
.hm-pack__list dd { margin: 0; color: var(--hm-body); font-size: .95rem; }

/* Tabs ---------------------------------------------------------------- */
.woocommerce-tabs .wc-tabs { border-bottom: 1px solid var(--hm-line) !important; }
.woocommerce-tabs .wc-tabs li { background: none !important; border: 0 !important; }
.woocommerce-tabs .wc-tabs li a {
	font-family: var(--hm-font-display); font-weight: 700;
	color: var(--hm-muted) !important; padding: 12px 0 !important;
	margin-right: 28px;
}
.woocommerce-tabs .wc-tabs li.active a {
	color: var(--hm-green) !important;
	box-shadow: inset 0 -2px 0 var(--hm-saffron);
}

/* Related products ---------------------------------------------------- */
.related.products > h2,
.upsells.products > h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 24px; }

@media (max-width: 720px) {
	.hm-pack__row { grid-template-columns: 1fr; gap: 6px; }
	.hm-delivery__form { flex-direction: column; }
	.hm-delivery__form .hm-btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   27. HOMEPAGE BANNER
   Copy left, product right. Structure stays plain; the backdrop carries it.
   -------------------------------------------------------------------------- */
.hm-banner {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(110% 90% at 78% 20%, #FFFDF8 0%, transparent 58%),
		linear-gradient(150deg, #F7EFE0 0%, #FBF7EE 45%, #E9F2EC 100%);
}

/* Backdrop ------------------------------------------------------------ */
.hm-banner__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hm-banner__glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.hm-banner__glow--sage {
	width: min(52vw, 620px); aspect-ratio: 1;
	right: 4%; top: 46%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(0, 73, 46, .18) 0%, rgba(0, 73, 46, 0) 68%);
}
.hm-banner__glow--gold {
	width: min(38vw, 400px); aspect-ratio: 1;
	right: -4%; top: -12%;
	background: radial-gradient(circle, rgba(210, 87, 15, .15) 0%, rgba(210, 87, 15, 0) 70%);
}

.hm-banner__motifs { position: absolute; inset: 0; width: 100%; height: 100%; }
.hm-banner__seeds  { fill: var(--hm-green); opacity: .09; }
.hm-banner__petals { fill: var(--hm-saffron); opacity: .12; }
.hm-banner__motifs use { animation: hm-drift 16s ease-in-out infinite alternate; }
.hm-banner__motifs use:nth-child(even) { animation-duration: 21s; animation-delay: -7s; }
.hm-banner__motifs use:nth-child(3n)   { animation-duration: 25s; animation-delay: -12s; }

@keyframes hm-drift {
	from { transform: translateY(0)     rotate(0deg); }
	to   { transform: translateY(-20px) rotate(7deg); }
}

/* Layout -------------------------------------------------------------- */
.hm-banner__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	align-items: center;
	gap: clamp(24px, 5vw, 64px);
	min-height: clamp(460px, 60vw, 620px);
	padding-block: clamp(44px, 6vw, 76px);
}

/* Copy ---------------------------------------------------------------- */
.hm-banner__eyebrow {
	display: inline-block;
	margin: 0 0 20px;
	font-size: .74rem; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase;
	color: var(--hm-green);
	background: rgba(255, 255, 255, .8);
	border: 1px solid var(--hm-green-100);
	border-radius: var(--hm-radius-pill);
	padding: 9px 20px;
}

.hm-banner__title {
	margin: 0 0 18px;
	font-size: clamp(2.6rem, 6.4vw, 5rem);
	line-height: .95;
	letter-spacing: -0.03em;
	color: var(--hm-ink);
	text-wrap: balance;
}
.hm-banner__title em {
	display: block;
	font-style: normal;
	background: linear-gradient(100deg, var(--hm-saffron) 0%, var(--hm-gold) 55%, var(--hm-green-500) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
/* Gradient text needs a solid fallback where background-clip is unsupported. */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
	.hm-banner__title em { color: var(--hm-saffron); }
}

.hm-banner__sub {
	margin: 0 0 30px;
	max-width: 46ch;
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	color: var(--hm-body);
}

.hm-banner__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hm-banner__cta .hm-btn { padding-inline: 40px; }

.hm-banner__trust {
	list-style: none;
	margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: 10px 24px;
	font-size: .88rem; font-weight: 600;
	color: var(--hm-green);
}
.hm-banner__trust li::before { content: "\2713"; margin-right: 7px; font-weight: 800; }

/* Product ------------------------------------------------------------- */
.hm-banner__media { position: relative; text-align: center; }
.hm-banner__media img {
	max-width: min(100%, 460px);
	height: auto;
	display: inline-block;
	filter: drop-shadow(0 30px 46px rgba(0, 73, 46, .26));
}

@media (max-width: 860px) {
	.hm-banner__inner {
		grid-template-columns: 1fr;
		text-align: center;
		min-height: 0;
	}
	/* Product first on a phone: it says what the brand is faster than copy. */
	.hm-banner__media { order: -1; }
	.hm-banner__media img { max-width: min(72%, 300px); }
	.hm-banner__sub { margin-inline: auto; }
	.hm-banner__cta,
	.hm-banner__trust { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.hm-banner__motifs use { animation: none; }
}

/* --------------------------------------------------------------------------
   28. PRODUCT GALLERY
   -------------------------------------------------------------------------- */
.hm-gallery { display: grid; gap: 14px; }

.hm-gallery__stage {
	position: relative;
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	overflow: hidden;
	/* Square stage: pack shots vary in aspect, and a fixed frame stops the
	   page reflowing every time the image changes. */
	aspect-ratio: 1;
}

.hm-gallery__frames { position: relative; width: 100%; height: 100%; }

.hm-gallery__frame {
	position: absolute;
	inset: 0;
	margin: 0;
	display: grid;
	place-items: center;
	padding: 22px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s;
}
.hm-gallery__frame.is-active { opacity: 1; visibility: visible; }

.hm-gallery__image {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--hm-radius-sm);
}

.hm-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border: 1px solid var(--hm-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--hm-green);
	font-size: 1.5rem; line-height: 1;
	cursor: pointer;
	box-shadow: var(--hm-shadow);
	transition: background-color .18s ease, color .18s ease;
}
.hm-gallery__nav:hover { background: var(--hm-green); color: var(--hm-white); }
.hm-gallery__nav:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }
.hm-gallery__nav--prev { left: 12px; }
.hm-gallery__nav--next { right: 12px; }

.hm-gallery__counter {
	position: absolute;
	bottom: 12px; right: 12px;
	background: rgba(0, 73, 46, .82);
	color: var(--hm-white);
	font-size: .74rem; font-weight: 700;
	letter-spacing: .06em;
	padding: 5px 12px;
	border-radius: var(--hm-radius-pill);
	font-variant-numeric: tabular-nums;
}

/* Thumbnail rail ------------------------------------------------------ */
.hm-gallery__rail {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}
.hm-gallery__thumb {
	flex: 0 0 auto;
	width: 78px; height: 78px;
	padding: 5px;
	background: var(--hm-white);
	border: 2px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	cursor: pointer;
	transition: border-color .18s ease;
}
.hm-gallery__thumb img {
	width: 100%; height: 100%;
	object-fit: contain;
	display: block;
}
.hm-gallery__thumb:hover { border-color: var(--hm-green-100); }
.hm-gallery__thumb.is-active { border-color: var(--hm-green); }
.hm-gallery__thumb:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }

@media (max-width: 560px) {
	.hm-gallery__thumb { width: 62px; height: 62px; }
	.hm-gallery__nav { width: 36px; height: 36px; font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   29. REVIEW SUMMARY & GUARANTEES
   -------------------------------------------------------------------------- */
.hm-reviews-summary {
	display: grid;
	grid-template-columns: minmax(170px, 220px) 1fr;
	gap: clamp(20px, 3vw, 44px);
	align-items: center;
	background: var(--hm-cream);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 26px;
	margin-bottom: 30px;
}
.hm-reviews-summary__score { text-align: center; }
.hm-reviews-summary__number {
	display: block;
	font-family: var(--hm-font-display);
	font-size: 3rem; font-weight: 800; line-height: 1;
	color: var(--hm-green);
	font-variant-numeric: tabular-nums;
}
.hm-reviews-summary__stars {
	display: block; margin: 8px 0 6px;
	color: var(--hm-gold); font-size: 1.25rem; letter-spacing: 3px;
}
.hm-reviews-summary__count { display: block; font-size: .84rem; color: var(--hm-muted); }

.hm-reviews-summary__bars { display: grid; gap: 8px; }
.hm-reviews-summary__row {
	display: grid;
	grid-template-columns: 42px 1fr 32px;
	align-items: center;
	gap: 12px;
	font-size: .82rem;
	color: var(--hm-muted);
}
.hm-reviews-summary__label { white-space: nowrap; font-variant-numeric: tabular-nums; }
.hm-reviews-summary__track {
	height: 8px;
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-pill);
	overflow: hidden;
}
.hm-reviews-summary__fill {
	display: block; height: 100%;
	background: var(--hm-gold);
	border-radius: var(--hm-radius-pill);
}
.hm-reviews-summary__value { text-align: right; font-variant-numeric: tabular-nums; }

.hm-reviews-summary__empty { grid-column: 1 / -1; text-align: center; }
.hm-reviews-summary__empty h3 { margin: 6px 0 8px; font-size: 1.15rem; }
.hm-reviews-summary__empty p { margin: 0; color: var(--hm-muted); font-size: .92rem; }
.hm-reviews-summary__empty .hm-reviews-summary__stars { color: var(--hm-line); }

/* Guarantees ---------------------------------------------------------- */
.hm-guarantee { background: var(--hm-white); padding-block: clamp(28px, 4vw, 44px); border-block: 1px solid var(--hm-line); }
.hm-guarantee__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 22px;
}
.hm-guarantee__item { text-align: center; display: grid; gap: 4px; }
.hm-guarantee__icon { font-size: 26px; }
.hm-guarantee__title { font-family: var(--hm-font-display); font-weight: 700; color: var(--hm-ink); font-size: 1rem; }
.hm-guarantee__note { font-size: .84rem; color: var(--hm-muted); }

@media (max-width: 560px) {
	.hm-reviews-summary { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   30. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.hm-reviews-section__actions {
	display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
	margin-bottom: 30px;
}
.hm-reviews-section__note { margin: 0; font-size: .84rem; color: var(--hm-muted); }
.hm-reviews-section__note.is-ok { color: var(--hm-green); font-weight: 600; }
.hm-reviews-section__note.is-error { color: #B23B3B; font-weight: 600; }

/* WooCommerce's own review list, restyled ------------------------------ */
.hm-reviews-section .woocommerce-Reviews-title { display: none; }
.hm-reviews-section ol.commentlist {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
	display: grid;
	gap: 16px;
}
.hm-reviews-section ol.commentlist li {
	background: var(--hm-cream);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 22px 24px;
	margin: 0;
}
.hm-reviews-section .comment_container {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 16px;
	align-items: start;
}
.hm-reviews-section .hm-review__avatar {
	width: 46px; height: 46px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--hm-green-100);
	color: var(--hm-green);
	font-family: var(--hm-font-display);
	font-weight: 800;
	font-size: 1.05rem;
}
.hm-reviews-section .comment_container img.avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	margin: 0;
	position: static;
	border: 0;
	padding: 0;
	background: var(--hm-green-100);
}
.hm-reviews-section .comment-text { margin: 0; border: 0; padding: 0; }
.hm-reviews-section .woocommerce-review__author {
	font-family: var(--hm-font-display);
	font-weight: 700; color: var(--hm-ink); font-size: 1rem;
}
.hm-reviews-section .woocommerce-review__published-date {
	display: block;
	font-size: .8rem; color: var(--hm-muted); margin-top: 2px;
}
.hm-reviews-section .woocommerce-review__verified {
	display: inline-block;
	margin-left: 8px;
	background: var(--hm-green-100); color: var(--hm-green);
	font-size: .68rem; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase;
	padding: 3px 9px; border-radius: var(--hm-radius-pill);
}
.hm-reviews-section .comment-text .star-rating {
	margin: 8px 0; float: none;
	color: var(--hm-gold); letter-spacing: 2px; font-size: 1rem;
}
.hm-reviews-section .description { color: var(--hm-body); font-size: .96rem; }
.hm-reviews-section .description p:last-child { margin-bottom: 0; }
.hm-reviews-section .woocommerce-noreviews { color: var(--hm-muted); }

/* The form ------------------------------------------------------------ */
.hm-reviews-section #review_form_wrapper {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 26px;
}
.hm-reviews-section #review_form_wrapper[hidden] { display: none; }
.hm-reviews-section #reply-title {
	font-family: var(--hm-font-display);
	font-size: 1.2rem; font-weight: 700;
	display: block; margin-bottom: 6px;
}
.hm-reviews-section .comment-notes,
.hm-reviews-section .comment-form-cookies-consent label {
	font-size: .86rem; color: var(--hm-muted);
}
.hm-reviews-section .comment-form label {
	display: block;
	font-size: .78rem; font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--hm-muted);
	margin-bottom: 6px;
}
.hm-reviews-section .comment-form input[type="text"],
.hm-reviews-section .comment-form input[type="email"],
.hm-reviews-section .comment-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	font-family: inherit; font-size: .95rem;
	background: var(--hm-white);
	color: var(--hm-ink);
}
.hm-reviews-section .comment-form textarea { min-height: 130px; resize: vertical; }
.hm-reviews-section .comment-form p { margin-bottom: 16px; }
.hm-reviews-section .comment-form-cookies-consent { display: flex; gap: 8px; align-items: flex-start; }
.hm-reviews-section .comment-form-cookies-consent input { margin-top: 3px; }
.hm-reviews-section .comment-form-cookies-consent label { text-transform: none; letter-spacing: 0; font-weight: 400; }
.hm-reviews-section .comment-form-rating select { display: none; }
.hm-reviews-section .stars {
	display: flex; gap: 6px; font-size: 1.5rem; margin: 0 0 16px;
}
.hm-reviews-section .stars a { color: var(--hm-line); text-decoration: none; }
.hm-reviews-section .stars a:hover,
.hm-reviews-section .stars.selected a.active,
.hm-reviews-section .stars.selected a:not(.active) { color: var(--hm-gold); }
.hm-reviews-section .form-submit input[type="submit"] {
	background: var(--hm-green); color: var(--hm-white);
	border: 0; border-radius: var(--hm-radius-pill);
	padding: 14px 34px;
	font-family: var(--hm-font-body); font-weight: 700; font-size: .95rem;
	cursor: pointer;
}
.hm-reviews-section .form-submit input[type="submit"]:hover { background: var(--hm-green-700); }

.hm-product__review-link {
	display: inline-block;
	margin: 0 0 10px;
	font-size: .84rem; font-weight: 600;
	color: var(--hm-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.hm-product__review-link:hover { color: var(--hm-green); }

@media (max-width: 560px) {
	.hm-reviews-section .comment_container { grid-template-columns: 1fr; }
	.hm-reviews-section .hm-review__avatar {
	width: 46px; height: 46px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--hm-green-100);
	color: var(--hm-green);
	font-family: var(--hm-font-display);
	font-weight: 800;
	font-size: 1.05rem;
}
.hm-reviews-section .comment_container img.avatar { display: none; }
}

/* --------------------------------------------------------------------------
   31. ORDER RECEIVED
   -------------------------------------------------------------------------- */
.hm-thanks {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 44px);
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
}
.hm-thanks__head { text-align: center; margin-bottom: 28px; }
.hm-thanks__icon { font-size: 46px; display: block; margin-bottom: 14px; }
.hm-thanks__head h1 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.hm-thanks__head p { margin: 0; color: var(--hm-muted); }
.hm-thanks__head--failed h1 { color: #B23B3B; }

.hm-thanks__meta {
	list-style: none;
	margin: 0 0 24px;
	padding: 22px;
	background: var(--hm-cream);
	border-radius: var(--hm-radius-sm);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 18px;
}
.hm-thanks__meta li { display: grid; gap: 4px; }
.hm-thanks__meta span {
	font-size: .72rem; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--hm-muted);
}
.hm-thanks__meta strong { font-family: var(--hm-font-display); font-size: 1.05rem; color: var(--hm-ink); }

.hm-thanks__cod {
	background: var(--hm-saffron-50);
	border: 1px solid rgba(210, 87, 15, .22);
	border-radius: var(--hm-radius-sm);
	padding: 14px 18px;
	margin: 0 0 24px;
	font-size: .92rem;
	font-weight: 600;
	color: var(--hm-saffron-600);
}

.hm-thanks__subhead { font-size: 1.15rem; margin: 0 0 12px; }
.hm-thanks__steps { margin: 0 0 26px; padding-left: 20px; display: grid; gap: 8px; color: var(--hm-body); }
.hm-thanks__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hm-thanks__actions .hm-btn--whatsapp { width: auto; }

/* WooCommerce's own order table and address block below */
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details { max-width: 720px; margin: 30px auto 0; }
.woocommerce-order .woocommerce-order-details__title,
.woocommerce-order .woocommerce-column__title { font-size: 1.15rem; }

/* Checkout blocked ---------------------------------------------------- */
.hm-checkout-blocked {
	background: #FBEDED;
	border: 1px solid #E9C6C6;
	border-radius: var(--hm-radius);
	padding: 22px 24px;
	margin-bottom: 26px;
}
.hm-checkout-blocked p { margin: 0 0 10px; color: #7A2E2E; }
.hm-checkout-blocked .hm-btn--whatsapp { width: auto; }

/* Preview-only banner, so a mock page is never mistaken for the live site. */
.hm-preview-note {
	background: #FFF6E5;
	border: 1px solid #EFD9A8;
	border-radius: var(--hm-radius-sm);
	padding: 14px 18px;
	margin: 0 0 22px;
	font-size: .86rem;
	color: #7A5A1E;
}

/* --------------------------------------------------------------------------
   32. HEADER, NAVIGATION AND BASE LAYOUT
   Previously supplied by the parent theme. This theme stands alone, so it
   provides all of it.
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img, svg, video { max-width: 100%; height: auto; }

.hm-site { display: flex; flex-direction: column; min-height: 100vh; }
.hm-site__main { flex: 1 0 auto; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
	position: fixed !important; top: 10px; left: 10px;
	width: auto; height: auto; z-index: 9999;
	clip: auto; clip-path: none;
	background: var(--hm-green); color: #fff;
	padding: 12px 20px; border-radius: var(--hm-radius-pill);
}

/* Header -------------------------------------------------------------- */
.hm-header {
	position: sticky; top: 0; z-index: 300;
	background: var(--hm-white);
	border-bottom: 1px solid var(--hm-line);
}
.hm-header__inner {
	display: flex; align-items: center; gap: 22px;
	padding-block: 14px;
}
.hm-header__brand { flex: 0 0 auto; }
.hm-header__tools { margin-left: auto; display: flex; align-items: center; gap: 16px; }

.hm-header__cart {
	position: relative;
	font-size: 20px; line-height: 1;
	text-decoration: none; color: var(--hm-ink);
}
.hm-header__count {
	position: absolute; top: -8px; right: -10px;
	min-width: 18px; height: 18px; padding: 0 5px;
	background: var(--hm-saffron); color: #fff;
	border-radius: 9px;
	font-family: var(--hm-font-body);
	font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
}
.hm-header__cta { padding: 11px 24px; font-size: .88rem; }

/* Navigation ---------------------------------------------------------- */
.hm-nav__list {
	display: flex; align-items: center; gap: 28px;
	list-style: none; margin: 0; padding: 0;
}
.hm-nav__list li { position: relative; }
.hm-nav__list a {
	display: inline-block;
	font-family: var(--hm-font-body);
	font-size: .86rem; font-weight: 600;
	letter-spacing: .07em; text-transform: uppercase;
	color: var(--hm-ink); text-decoration: none;
	padding-block: 6px;
	border-bottom: 2px solid transparent;
}
.hm-nav__list a:hover,
.hm-nav__list .current-menu-item > a {
	color: var(--hm-green);
	border-bottom-color: var(--hm-saffron);
}
.hm-nav__list .sub-menu {
	display: none;
	position: absolute; left: 0; top: 100%;
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	box-shadow: var(--hm-shadow);
	list-style: none; margin: 8px 0 0; padding: 8px 0;
	min-width: 210px; z-index: 10;
}
.hm-nav__list li:hover > .sub-menu,
.hm-nav__list li:focus-within > .sub-menu { display: block; }
.hm-nav__list .sub-menu a {
	display: block; padding: 9px 18px;
	text-transform: none; letter-spacing: 0; font-size: .9rem;
	border-bottom: 0;
}

/* Burger -------------------------------------------------------------- */
.hm-burger {
	display: none;
	width: 42px; height: 42px;
	background: none;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius-sm);
	cursor: pointer; position: relative;
}
.hm-burger__bar,
.hm-burger__bar::before,
.hm-burger__bar::after {
	position: absolute; left: 50%;
	width: 20px; height: 2px;
	background: var(--hm-ink); border-radius: 2px;
	transform: translateX(-50%);
	transition: transform .2s ease, background-color .2s ease;
}
.hm-burger__bar { top: 50%; margin-top: -1px; }
.hm-burger__bar::before { content: ""; top: -6px; }
.hm-burger__bar::after  { content: ""; top: 6px; }
.hm-burger[aria-expanded="true"] .hm-burger__bar { background: transparent; }
.hm-burger[aria-expanded="true"] .hm-burger__bar::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.hm-burger[aria-expanded="true"] .hm-burger__bar::after  { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }
.hm-burger:focus-visible { outline: 3px solid var(--hm-saffron); outline-offset: 2px; }

@media (max-width: 900px) {
	.hm-header__inner { flex-wrap: wrap; }
	.hm-burger { display: block; order: 3; margin-left: auto; }
	.hm-header__cta { display: none; }
	.hm-header__tools { order: 2; margin-left: auto; }

	.hm-nav {
		display: none; order: 4;
		flex-basis: 100%;
		border-top: 1px solid var(--hm-line);
		margin-top: 12px; padding-top: 8px;
	}
	.hm-nav.is-open { display: block; }
	.hm-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.hm-nav__list a { display: block; padding: 13px 2px; border-bottom: 1px solid var(--hm-line); }
	.hm-nav__list .sub-menu {
		position: static; display: block;
		border: 0; box-shadow: none; padding: 0 0 0 16px; margin: 0;
	}
}

/* Blog ---------------------------------------------------------------- */
.hm-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.hm-post-card {
	background: var(--hm-white);
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	overflow: hidden;
	display: flex; flex-direction: column;
}
.hm-post-card__image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.hm-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hm-post-card__title { font-size: 1.2rem; margin: 0; }
.hm-post-card__title a { color: var(--hm-ink); text-decoration: none; }
.hm-post-card__title a:hover { color: var(--hm-green); }
.hm-post-card__excerpt { color: var(--hm-muted); font-size: .92rem; margin: 0; flex: 1; }
.hm-post-card__more { font-weight: 700; font-size: .88rem; text-decoration: none; }
.hm-post__meta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--hm-muted); margin: 0 0 8px; }
.hm-post__image { margin-bottom: 26px; }
.hm-post__image img { width: 100%; border-radius: var(--hm-radius); }

.hm-search { display: flex; gap: 10px; }
.hm-search__input {
	flex: 1; min-width: 0; padding: 13px 18px;
	border: 1px solid var(--hm-line); border-radius: var(--hm-radius-pill);
	font-family: inherit; font-size: .95rem; background: var(--hm-white);
}

.hm-woo { padding-block: clamp(28px, 4vw, 52px); }
.hm-empty { text-align: center; color: var(--hm-muted); padding: 40px 0; }

.navigation.pagination { margin-top: 40px; display: flex; justify-content: center; }
.navigation.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.navigation.pagination .page-numbers {
	display: grid; place-items: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	border: 1px solid var(--hm-line); border-radius: var(--hm-radius-pill);
	text-decoration: none; color: var(--hm-ink); font-weight: 600;
}
.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: var(--hm-green); border-color: var(--hm-green); color: #fff;
}

.hm-comments { margin-top: 46px; }
.hm-comments__title { font-size: 1.25rem; margin-bottom: 18px; }
.hm-comments__closed { color: var(--hm-muted); font-size: .9rem; }

/* --------------------------------------------------------------------------
   33. SINGLE PRODUCT LAYOUT
   WooCommerce lays this out by floating .woocommerce-product-gallery and
   .summary. Our gallery override renames that wrapper to .hm-gallery, so those
   floats stop applying and the summary drops below a full-width gallery.
   Owning the layout with a grid is more robust than matching their selector:
   everything the hooks add below the summary is also inside div.product, and a
   grid can span those across both columns without more float clearing.
   -------------------------------------------------------------------------- */
.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
}

/* Default: anything hooked in below spans the full width. */
.single-product div.product > * { grid-column: 1 / -1; min-width: 0; }

.single-product div.product > .hm-gallery,
.single-product div.product > .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
}
.single-product div.product > .summary {
	grid-column: 2;
	grid-row: 1;
	/* Undo woocommerce-layout.css, which floats this at 48%. */
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
}

/* The sections our hooks add run edge to edge, so they escape the container's
   padding and set their own. */
.single-product div.product > .hm-guarantee,
.single-product div.product > .hm-pack,
.single-product div.product > .hm-reviews-section,
.single-product div.product > .hm-section {
	margin-inline: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}

.single-product div.product > .woocommerce-tabs,
.single-product div.product > .related,
.single-product div.product > .upsells { margin-top: 10px; }

/* WooCommerce's own sale flash sits over the gallery. */
.single-product div.product > .onsale {
	grid-column: 1; grid-row: 1;
	justify-self: start; align-self: start;
	z-index: 3; margin: 14px 0 0 14px;
	background: var(--hm-saffron); color: var(--hm-white);
	border-radius: var(--hm-radius-pill);
	padding: 6px 16px; font-size: .75rem; font-weight: 700;
}

@media (max-width: 860px) {
	.single-product div.product { grid-template-columns: 1fr; }
	.single-product div.product > .hm-gallery,
	.single-product div.product > .woocommerce-product-gallery,
	.single-product div.product > .summary { grid-column: 1; }
	.single-product div.product > .summary { grid-row: auto; }
}
