/*
 * Haider Perfumes — New Design System
 * Soft pink/cream luxury feminine fragrance brand.
 */

/* =============================================
   1. DESIGN TOKENS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Dancing+Script:wght@500;600&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
	/* Colors */
	--hp-cream:       #FDF8F4;
	--hp-blush:       #F2D8C8;
	--hp-blush-light: #FAF0EA;
	--hp-blush-mid:   #E8C5B4;
	--hp-rose:        #D4856A;
	--hp-gold:        #C89B4F;
	--hp-gold-light:  #E5C17A;
	--hp-charcoal:    #2C2020;
	--hp-ink:         #3A2E2E;
	--hp-muted:       #8A7070;
	--hp-white:       #FFFFFF;
	--hp-border:      rgba(212, 133, 106, 0.18);
	--hp-border-light: rgba(212, 133, 106, 0.10);

	/* Shadows */
	--hp-shadow-sm:   0 4px 16px rgba(44, 32, 32, 0.08);
	--hp-shadow-md:   0 12px 40px rgba(44, 32, 32, 0.12);
	--hp-shadow-rose: 0 16px 48px rgba(212, 133, 106, 0.22);
	--hp-shadow-gold: 0 16px 48px rgba(200, 155, 79, 0.28);

	/* Gradients */
	--hp-gradient-gold:  linear-gradient(135deg, var(--hp-rose) 0%, var(--hp-gold) 100%);
	--hp-gradient-glow:  radial-gradient(circle at 30% 20%, rgba(229, 193, 122, 0.25), transparent 60%);

	/* Layout */
	--hp-width:         1200px;
	--hp-header-height: 100px;
	--hp-radius:        12px;
	--hp-radius-sm:     8px;
	--hp-radius-pill:   999px;

	/* Typography */
	--hp-serif:  'Playfair Display', Georgia, serif;
	--hp-script: 'Dancing Script', cursive;
	--hp-sans:   'Nunito Sans', 'Segoe UI', Arial, sans-serif;

	/* Transitions */
	--hp-fast:   160ms ease;
	--hp-smooth: 300ms ease;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--hp-cream);
	color: var(--hp-ink);
	font-family: var(--hp-sans);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.no-scroll {
	overflow: hidden;
}

img, svg, video {
	display: block;
	max-width: 100%;
	height: auto;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

button, input, select, textarea {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--hp-fast);
}

a:hover {
	color: var(--hp-rose);
}

::selection {
	background: var(--hp-blush);
	color: var(--hp-charcoal);
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	clip: auto;
	padding: .75rem 1rem;
	border-radius: var(--hp-radius-sm);
	background: var(--hp-charcoal);
	color: var(--hp-white);
}

/* =============================================
   3. LAYOUT CONTAINERS
   ============================================= */
.site-header__inner,
.site-footer__inner,
.hp-hero__inner,
.hp-section__inner,
.hp-shop-hero__inner,
.hp-shop-content__inner,
.hp-single-product,
.not-found-page__inner {
	width: min(100% - 2rem, var(--hp-width));
	margin-inline: auto;
}

/* =============================================
   4. TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6, .site-title {
	color: var(--hp-charcoal);
	font-family: var(--hp-serif);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

p { margin: 0 0 1rem; overflow-wrap: anywhere; }

.hp-script-accent {
	font-family: var(--hp-script);
	font-size: 1.35em;
	background: var(--hp-gradient-gold);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--hp-rose);
	display: block;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.hp-section-kicker {
	margin: 0 0 0.5rem;
	color: var(--hp-rose);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: var(--hp-sans);
}

/* =============================================
   5. HEADER & NAVIGATION
   ============================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 9990;
	background: #0a0a0a;
	border-bottom: 1px solid rgba(200, 155, 79, 0.25);
	backdrop-filter: blur(16px);
	transition: background var(--hp-smooth), box-shadow var(--hp-smooth);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
	background: #0a0a0a;
	box-shadow: 0 4px 24px rgba(0,0,0,0.4);
	border-bottom-color: rgba(200, 155, 79, 0.3);
}

.admin-bar .site-header { top: 32px; }

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--hp-header-height);
}

/* Branding */
.site-branding {
	display: flex;
	align-items: center;
}

.site-title {
	font-family: var(--hp-serif);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--hp-gold-light);
	text-decoration: none;
	letter-spacing: 0.02em;
}

.custom-logo {
	max-height: 90px;
	width: auto;
}

/* Golden light sweep effect for logos on dark/black backgrounds */
.custom-logo-link {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-radius: var(--hp-radius-sm);
	isolation: isolate;
}

.custom-logo-link::after {
	content: '';
	position: absolute;
	inset: -50%;
	background: conic-gradient(
		from 0deg,
		transparent 0deg,
		transparent 50deg,
		rgba(232, 193, 122, 0.65) 90deg,
		rgba(255, 226, 160, 0.95) 100deg,
		rgba(232, 193, 122, 0.65) 110deg,
		transparent 150deg,
		transparent 360deg
	);
	mix-blend-mode: screen;
	pointer-events: none;
	animation: hp-logo-glow-sweep 5s linear infinite;
}

@keyframes hp-logo-glow-sweep {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Menu toggle (mobile) */
.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: .5rem .75rem;
	border: 1px solid rgba(200,155,79,0.4);
	border-radius: var(--hp-radius-sm);
	background: transparent;
	color: rgba(255,255,255,0.85);
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--hp-fast), border-color var(--hp-fast);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	background: rgba(200,155,79,0.18);
	border-color: var(--hp-gold);
	color: var(--hp-gold-light);
}

/* Primary Nav */
.primary-navigation {
	position: absolute;
	inset: var(--hp-header-height) 1rem auto;
	display: none;
	padding: 1rem;
	border: 1px solid rgba(200,155,79,0.2);
	border-radius: var(--hp-radius);
	background: #111;
	box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.primary-navigation.is-open {
	display: block;
	animation: hp-menu-open 220ms ease both;
}

.primary-navigation ul,
.footer-navigation ul {
	display: flex;
	flex-direction: column;
	gap: .15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	width: 100%;
	padding: .55rem .75rem;
	border-radius: var(--hp-radius-sm);
	color: rgba(255,255,255,0.85);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--hp-fast), color var(--hp-fast);
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	background: rgba(200,155,79,0.15);
	color: var(--hp-gold-light);
}

.footer-navigation a {
	display: inline-flex;
	align-items: center;
	color: var(--hp-muted);
	font-size: 0.875rem;
	padding: .2rem 0;
	text-decoration: none;
	transition: color var(--hp-fast);
}

.footer-navigation a:hover {
	color: var(--hp-rose);
}

/* Header actions (cart / search icons) */
.hp-header-actions {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.hp-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(200,155,79,0.35);
	border-radius: var(--hp-radius-pill);
	background: transparent;
	color: rgba(255,255,255,0.8);
	cursor: pointer;
	text-decoration: none;
	transition: background var(--hp-fast), border-color var(--hp-fast), color var(--hp-fast);
}

.hp-header-icon:hover {
	background: rgba(200,155,79,0.18);
	border-color: var(--hp-gold);
	color: var(--hp-gold-light);
}

.hp-header-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hp-cart-count {
	position: relative;
}

.hp-cart-count .hp-count-bubble {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hp-rose);
	color: var(--hp-white);
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1;
}

/* =============================================
   6. BUTTONS
   ============================================= */
.button,
button.button,
input[type="submit"].button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	padding: .75rem 1.75rem;
	border: 2px solid transparent;
	border-radius: var(--hp-radius-pill);
	font-family: var(--hp-sans);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--hp-smooth), color var(--hp-smooth), border-color var(--hp-smooth), box-shadow var(--hp-smooth), transform var(--hp-fast);
	position: relative;
	overflow: hidden;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--hp-charcoal);
	color: var(--hp-white);
	border-color: var(--hp-charcoal);
	transition: transform var(--hp-fast), box-shadow var(--hp-smooth), background var(--hp-smooth);
}

.button-primary:hover {
	background: var(--hp-gradient-gold);
	border-color: var(--hp-rose);
	color: var(--hp-white);
	box-shadow: var(--hp-shadow-gold);
	transform: translateY(-2px);
}

.button-secondary {
	background: transparent;
	color: var(--hp-charcoal);
	border-color: var(--hp-charcoal);
}

.button-secondary:hover {
	background: var(--hp-charcoal);
	color: var(--hp-white);
}

.button-rose {
	background: var(--hp-rose);
	color: var(--hp-white);
	border-color: var(--hp-rose);
}

.button-rose:hover {
	background: var(--hp-charcoal);
	border-color: var(--hp-charcoal);
	color: var(--hp-white);
}

/* WhatsApp buttons/links — always official WhatsApp green */
.hp-whatsapp-order,
a.hp-whatsapp-order,
.button.hp-whatsapp-order,
a[href*="wa.me"].button,
a[href*="api.whatsapp.com"].button,
a[href*="wa.me"].hp-whatsapp-order,
a[href*="api.whatsapp.com"].hp-whatsapp-order {
	background: #25D366 !important;
	border-color: #25D366 !important;
	color: #fff !important;
}

.hp-whatsapp-order:hover,
a.hp-whatsapp-order:hover,
.button.hp-whatsapp-order:hover,
a[href*="wa.me"].button:hover,
a[href*="api.whatsapp.com"].button:hover,
a[href*="wa.me"].hp-whatsapp-order:hover,
a[href*="api.whatsapp.com"].hp-whatsapp-order:hover {
	background: #1ebe5d !important;
	border-color: #1ebe5d !important;
	color: #fff !important;
}

.button-ghost {
	background: rgba(253,248,244,0.9);
	color: var(--hp-charcoal);
	border-color: var(--hp-border);
}

.button-ghost:hover {
	background: var(--hp-blush);
	border-color: var(--hp-blush-mid);
}

/* =============================================
   7. SECTIONS SHARED
   ============================================= */
.hp-section {
	padding-block: 5rem;
}

.hp-section--blush {
	background: var(--hp-blush-light);
}

.hp-section--cream {
	background: var(--hp-cream);
}

.hp-section-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.hp-section-heading h2 {
	margin: 0.25rem 0 0;
}

.hp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: center;
}

/* =============================================
   8. HERO SECTION
   ============================================= */
.hp-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--hp-cream) 0%, var(--hp-blush-light) 50%, #F0D8CE 100%);
	padding-block: 5rem 3rem;
}

.hp-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--hp-gradient-glow);
	pointer-events: none;
	z-index: 0;
}

.hp-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

/* Left content */
.hp-hero__content {
	position: relative;
	z-index: 2;
}

.hp-hero__content h1 {
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	line-height: 1.1;
	color: var(--hp-charcoal);
	margin: 0 0 1rem;
}

.hp-hero__tagline {
	font-family: var(--hp-script);
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--hp-rose);
	margin: 0 0 1rem;
	display: block;
}

.hp-hero__text {
	font-size: 1rem;
	color: var(--hp-muted);
	max-width: 42ch;
	margin-bottom: 2rem;
}

.hp-hero__stats {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.hp-hero__stat-badge {
	display: flex;
	align-items: center;
	gap: .65rem;
	padding: .6rem 1rem;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-pill);
	box-shadow: var(--hp-shadow-sm);
	backdrop-filter: blur(10px) saturate(160%);
	-webkit-backdrop-filter: blur(10px) saturate(160%);
	transition: transform var(--hp-fast), box-shadow var(--hp-smooth);
}

.hp-hero__stat-badge:hover {
	transform: translateY(-3px);
	box-shadow: var(--hp-shadow-gold);
}

.hp-hero__stat-avatars {
	display: flex;
}

.hp-hero__stat-avatars span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hp-blush) 0%, var(--hp-blush-mid) 100%);
	border: 2px solid var(--hp-white);
	font-size: .65rem;
	font-weight: 700;
	color: var(--hp-charcoal);
	margin-left: -8px;
}

.hp-hero__stat-avatars span:first-child {
	margin-left: 0;
}

.hp-hero__stat-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.hp-hero__stat-text strong {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--hp-charcoal);
}

.hp-hero__stat-text span {
	font-size: 0.7rem;
	color: var(--hp-muted);
}

/* Right visual */
.hp-hero__visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 3D ambient scene (Three.js) */
.hp-hero__3d {
	position: absolute;
	left: -55%;
	top: 12%;
	width: 60%;
	height: 70%;
	z-index: 3;
	pointer-events: none;
}

@media (max-width: 900px) {
	.hp-hero__3d {
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
}

.hp-hero__3d canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.hp-hero__bottle-stage {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 1.5rem;
}

.hp-hero__bottle-figure {
	position: relative;
}

.hp-hero__bottle-figure--attar {
	order: 2;
	z-index: 2;
}

.hp-hero__bottle-figure--perfume {
	order: 1;
	z-index: 1;
}

/* Oval image frame */
.hp-hero__oval-frame {
	position: relative;
	overflow: hidden;
}

.hp-hero__oval-frame--large {
	width: 240px;
	height: 340px;
	border-radius: 120px;
	background: var(--hp-blush);
	box-shadow: var(--hp-shadow-rose);
}

.hp-hero__oval-frame--small {
	width: 180px;
	height: 260px;
	border-radius: 90px;
	background: #E8D5C8;
	box-shadow: var(--hp-shadow-md);
}

.hp-hero__oval-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Hero badge "20% off" */
.hp-hero__promo-badge {
	position: absolute;
	top: -20px;
	right: -20px;
	z-index: 3;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--hp-charcoal);
	color: var(--hp-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--hp-sans);
	box-shadow: var(--hp-shadow-md);
	animation: hp-badge-spin 12s linear infinite;
}

.hp-hero__promo-badge strong {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.hp-hero__promo-badge span {
	font-size: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.8;
}

/* Hero image (legacy fallback) */
.hp-hero__bottle-image {
	position: relative;
	z-index: 2;
	width: min(100%, 500px);
	margin-inline: auto;
}

.hp-hero__bottle-image img {
	width: 100%;
	max-height: 560px;
	object-fit: contain;
}

/* Falling ingredients */
.hp-falling-ingredients {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

/* =============================================
   9. MARQUEE TICKER
   ============================================= */
.hp-marquee {
	background: var(--hp-charcoal);
	color: var(--hp-white);
	overflow: hidden;
	padding-block: .85rem;
}

.hp-marquee__track {
	display: flex;
	gap: 0;
	animation: hp-marquee-scroll 28s linear infinite;
	width: max-content;
}

.hp-marquee__track:hover {
	animation-play-state: paused;
}

.hp-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 1.5rem;
	white-space: nowrap;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding-inline: 1.5rem;
}

.hp-marquee__item::after {
	content: "★";
	color: var(--hp-gold-light);
	font-size: 0.75rem;
}

@keyframes hp-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* =============================================
   10. TOP SELLERS — Oval Card Row
   ============================================= */
.hp-top-sellers {
	background: var(--hp-cream);
	padding-block: 5rem;
}

.hp-top-sellers__heading {
	text-align: center;
	margin-bottom: 3rem;
}

.hp-top-sellers__heading h2 {
	font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.hp-top-sellers__heading h2 em {
	font-style: italic;
	color: var(--hp-rose);
	font-family: var(--hp-script);
}

.hp-top-sellers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: end;
}

.hp-oval-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	text-decoration: none;
	color: inherit;
	transition: transform var(--hp-smooth);
	will-change: transform;
}

.hp-oval-card__frame {
	position: relative;
	width: 100%;
	padding-bottom: 130%;
	border-radius: 50% 50% 48% 48% / 40% 40% 60% 60%;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 34%, rgba(255,255,255,0.72) 0 18%, rgba(255,255,255,0) 44%),
		linear-gradient(180deg, #fff8f3 0%, var(--hp-blush) 100%);
	box-shadow: var(--hp-shadow-md), inset 0 0 0 1px rgba(200,155,79,0.18);
	transition: transform var(--hp-smooth), box-shadow var(--hp-smooth);
}

.hp-oval-card__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(44,32,32,0.1));
}

.hp-oval-card:hover .hp-oval-card__frame {
	transform: translateY(-8px);
	box-shadow: var(--hp-shadow-rose);
}

.hp-oval-card__frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform var(--hp-smooth);
}

.hp-oval-card__frame.has-home-thumbnail img {
	object-position: center center;
}

.hp-oval-card:hover .hp-oval-card__frame img {
	transform: scale(1.05);
}

.hp-oval-card__name {
	font-family: var(--hp-serif);
	font-size: 1rem;
	font-weight: 600;
	color: var(--hp-charcoal);
}

.hp-oval-card__price {
	font-size: 0.875rem;
	color: var(--hp-muted);
	font-weight: 600;
}

/* Center card is bigger */
.hp-oval-card--featured .hp-oval-card__frame {
	background: linear-gradient(160deg, var(--hp-blush-light) 0%, var(--hp-blush-mid) 100%);
}

/* =============================================
   11. PROMO BANNER
   ============================================= */
.hp-promo-banner {
	background: var(--hp-blush-light);
	padding-block: 5rem;
}

.hp-promo-banner__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hp-promo-banner__image {
	position: relative;
	border-radius: 50% 50% 0 0;
	overflow: hidden;
	max-width: 400px;
}

.hp-promo-banner__image img {
	width: 100%;
	border-radius: inherit;
}

/* Rotated text badge around image */
.hp-circular-badge {
	position: absolute;
	top: -16px;
	left: -16px;
	width: 130px;
	height: 130px;
}

.hp-circular-badge svg {
	width: 100%;
	height: 100%;
	animation: hp-badge-spin 12s linear infinite;
}

.hp-promo-banner__content {
	padding: 1.5rem 0;
}

.hp-promo-banner__content h2 {
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	margin-bottom: 1rem;
}

.hp-promo-banner__content p {
	color: var(--hp-muted);
	margin-bottom: 1.75rem;
}

@keyframes hp-badge-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* =============================================
   12. PRODUCT GRID — Tabbed
   ============================================= */
.hp-products-tabbed {
	background: var(--hp-cream);
	padding-block: 5rem;
}

.hp-product-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5rem;
	margin-bottom: 2.5rem;
}

.hp-tab-btn {
	padding: .55rem 1.4rem;
	border: 1.5px solid var(--hp-border);
	border-radius: var(--hp-radius-pill);
	background: transparent;
	color: var(--hp-muted);
	font-size: 0.8rem;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--hp-fast), color var(--hp-fast), border-color var(--hp-fast);
}

.hp-tab-btn:hover,
.hp-tab-btn.is-active {
	background: var(--hp-charcoal);
	border-color: var(--hp-charcoal);
	color: var(--hp-white);
}

.hp-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* =============================================
   13. PRODUCT CARD
   ============================================= */
.hp-product-card,
.woocommerce ul.products li.product,
.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	gap: .75rem;
	padding: 1rem;
	border: 1px solid var(--hp-border-light);
	border-radius: var(--hp-radius);
	background: var(--hp-white);
	box-shadow: var(--hp-shadow-sm);
	transition: transform var(--hp-smooth), box-shadow var(--hp-smooth);
	text-align: center;
	transform-style: preserve-3d;
	will-change: transform;
	overflow: hidden;
}

.hp-product-card:hover,
.woocommerce ul.products li.product:hover {
	box-shadow: var(--hp-shadow-rose);
}

/* Premium shine sweep */
.hp-product-card::before,
.woocommerce ul.products li.product::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, rgba(232,193,122,0.35) 52%, transparent 70%);
	transform: translateX(-120%);
	pointer-events: none;
	transition: transform 750ms ease;
}

.hp-product-card:hover::before,
.woocommerce ul.products li.product:hover::before {
	transform: translateX(120%);
}

.hp-product-card__image,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product > a:first-of-type {
	display: block;
	width: 100%;
}

.hp-product-card__image,
.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--hp-radius-sm);
	overflow: hidden;
	transition: transform 480ms ease;
	display: block;
}

.hp-product-card:hover .hp-product-card__image,
.woocommerce ul.products li.product:hover a img {
	transform: scale(1.06);
}

.hp-product-card__name {
	font-family: var(--hp-serif);
	font-size: 1rem;
	font-weight: 600;
	color: var(--hp-charcoal);
}

.hp-product-card__price {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--hp-rose);
}

/* Tabs hide/show product items */
.hp-tab-pane {
	display: none;
}

.hp-tab-pane.is-active {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

/* =============================================
   14. BENEFITS SECTION
   ============================================= */
.hp-benefits {
	background: var(--hp-blush-light);
	padding-block: 5rem;
}

.hp-benefits__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* Heading spans full width above both columns */
.hp-featured-products__heading {
	grid-column: 1 / -1;
	text-align: center;
	margin-bottom: 1rem;
}

.hp-benefits__content .hp-script-accent {
	font-size: 1.1rem;
	margin-bottom: .5rem;
}

.hp-benefits__content h2 {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	margin-bottom: 1.5rem;
}

.hp-benefits__content h2 em {
	font-style: italic;
	font-family: var(--hp-script);
	color: var(--hp-rose);
}

.hp-benefit-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: flex-start;
}

.hp-benefit-item__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--hp-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: var(--hp-shadow-sm);
}

.hp-benefit-item__text h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--hp-charcoal);
	margin: 0 0 .25rem;
}

.hp-benefit-item__text p {
	font-size: 0.875rem;
	color: var(--hp-muted);
	margin: 0;
	line-height: 1.6;
}

.hp-benefits__image {
	position: relative;
}

.hp-benefits__image img {
	width: 100%;
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow-rose);
}

.hp-benefits__image-note {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	font-family: var(--hp-script);
	font-size: 1.25rem;
	color: var(--hp-rose);
	text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

/* =============================================
   15. INSTAGRAM / COMMUNITY GRID
   ============================================= */
.hp-instagram {
	background: var(--hp-cream);
	padding-block: 5rem;
}

.hp-instagram__heading {
	text-align: center;
	margin-bottom: 2.5rem;
}

.hp-instagram-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 200px);
	gap: .75rem;
}

.hp-instagram-grid span,
.hp-instagram-grid a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--hp-radius-sm);
	background: var(--hp-blush);
	cursor: pointer;
}

.hp-instagram-grid span img,
.hp-instagram-grid a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hp-smooth);
}

.hp-instagram-grid span:hover img,
.hp-instagram-grid a:hover img {
	transform: scale(1.06);
}

.hp-instagram-grid span::after,
.hp-instagram-grid a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(44, 32, 32, 0.32);
	opacity: 0;
	transition: opacity var(--hp-smooth);
}

.hp-instagram-grid span:hover::after,
.hp-instagram-grid a:hover::after {
	opacity: 1;
}

.hp-instagram-grid em {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--hp-white);
	opacity: 0;
	transition: opacity var(--hp-smooth);
}

.hp-instagram-grid span:hover em,
.hp-instagram-grid a:hover em {
	opacity: 1;
}

.hp-instagram__cta {
	text-align: center;
	margin-top: 2.5rem;
}

/* =============================================
   16. NEWSLETTER
   ============================================= */
.hp-newsletter {
	background: #F5E9E0;
	padding-block: 4rem;
}

.hp-newsletter__inner {
	text-align: center;
	max-width: 600px;
	margin-inline: auto;
}

.hp-newsletter__inner h2 {
	margin-bottom: .75rem;
}

.hp-newsletter__inner p {
	color: var(--hp-muted);
	margin-bottom: 1.75rem;
}

.hp-newsletter-form {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.hp-newsletter-form label {
	display: none;
}

.hp-newsletter-form input[type="email"] {
	flex: 1;
	min-width: 220px;
	padding: .75rem 1.25rem;
	border: 1.5px solid var(--hp-border);
	border-radius: var(--hp-radius-pill);
	background: var(--hp-white);
	color: var(--hp-charcoal);
	font-size: 0.9rem;
	outline: none;
	transition: border-color var(--hp-fast);
}

.hp-newsletter-form input[type="email"]:focus {
	border-color: var(--hp-rose);
}

.hp-newsletter-form button,
.hp-newsletter-form .button {
	white-space: nowrap;
}

/* =============================================
   17. ABOUT SECTION
   ============================================= */
.hp-about {
	padding-block: 5rem;
}

.hp-about .hp-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hp-about__copy p {
	color: var(--hp-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.hp-about-dark {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 20%, rgba(200, 155, 79, 0.24), transparent 28%),
		linear-gradient(135deg, #1a1111 0%, var(--hp-charcoal) 58%, #120b0b 100%);
	color: rgba(255, 255, 255, 0.78);
}

.hp-about-dark::after {
	content: "";
	position: absolute;
	inset: auto 8% -70px auto;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(229, 193, 122, 0.18);
	border-radius: 50%;
}

.hp-about-dark__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	gap: 3rem;
	align-items: center;
}

.hp-about-dark h2 {
	max-width: 760px;
	color: var(--hp-white);
}

.hp-about-dark__copy p {
	margin-bottom: 1.25rem;
	font-size: 1.05rem;
}

.hp-about-dark__copy ul {
	display: grid;
	gap: .75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hp-about-dark__copy li {
	padding: .85rem 1rem;
	border: 1px solid rgba(229, 193, 122, 0.2);
	border-radius: var(--hp-radius-sm);
	background: rgba(255, 255, 255, 0.06);
	color: var(--hp-gold-light);
	font-weight: 800;
}

/* =============================================
   18. CATEGORIES SECTION
   ============================================= */
.hp-categories {
	background: var(--hp-blush-light);
	padding-block: 5rem;
}

.hp-category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.hp-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 200px;
	padding: 1.25rem;
	border-radius: var(--hp-radius);
	background: var(--hp-blush);
	overflow: hidden;
	text-decoration: none;
	color: var(--hp-charcoal);
	transition: transform var(--hp-smooth), box-shadow var(--hp-smooth);
}

.hp-category-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hp-shadow-rose);
}

.hp-category-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hp-smooth);
}

.hp-category-card:hover img {
	transform: scale(1.06);
}

.hp-category-card span {
	position: relative;
	z-index: 2;
	font-family: var(--hp-serif);
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	background: rgba(253,248,244,0.88);
	padding: .4rem .9rem;
	border-radius: var(--hp-radius-pill);
	backdrop-filter: blur(4px);
}

.hp-category-card small {
	position: relative;
	z-index: 2;
	font-size: 0.75rem;
	color: var(--hp-muted);
	margin-top: .3rem;
}

/* =============================================
   19. BEST SELLERS & FEATURED PRODUCTS
   ============================================= */
.hp-best-sellers,
.hp-products {
	padding-block: 5rem;
}

/* =============================================
   20. TESTIMONIALS
   ============================================= */
.hp-testimonials {
	background: var(--hp-blush-light);
	padding-block: 4rem 1.25rem;
}

.hp-testimonial-slider {
	position: relative;
	min-height: 210px;
}

.hp-testimonial-card {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 520ms ease, transform 520ms ease;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hp-testimonial-card.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.hp-testimonial-card blockquote {
	max-width: 680px;
	margin: 0;
	padding: 2rem;
	background: var(--hp-white);
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow-sm);
	font-family: var(--hp-serif);
	font-size: 1.05rem;
	font-style: italic;
	color: var(--hp-charcoal);
}

.hp-testimonial-card figcaption {
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--hp-rose);
}

/* =============================================
   21. WHATSAPP CTA
   ============================================= */
.hp-whatsapp-cta {
	background: var(--hp-charcoal);
	color: var(--hp-white);
	padding-block: 5rem;
}

.hp-cta-panel {
	text-align: center;
}

.hp-cta-panel h2 {
	color: var(--hp-white);
	margin-bottom: 1rem;
}

.hp-cta-panel p {
	color: rgba(255,255,255,0.7);
	margin-bottom: 2rem;
}

/* =============================================
   22. FOOTER CTA
   ============================================= */
.hp-footer-cta {
	background: var(--hp-blush-light);
	padding-block: 4rem;
}

.hp-footer-cta__inner {
	text-align: center;
}

/* =============================================
   23. SITE FOOTER
   ============================================= */
.site-footer {
	background: var(--hp-charcoal);
	color: rgba(255,255,255,0.65);
	padding-block: 3rem 1.5rem;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 2rem;
}

.site-footer__brand .site-title {
	color: var(--hp-gold-light);
	font-size: 1.25rem;
	display: block;
	margin-bottom: .5rem;
}

/* Increase footer logo size */
.site-footer__brand .custom-logo,
.site-footer__brand img.custom-logo {
	max-height: 100px;
	width: auto;
	max-width: 200px;
	margin-bottom: .75rem;
}

.site-footer__brand p {
	font-size: 0.85rem;
	line-height: 1.6;
	margin: 0;
}

.site-footer__col h4 {
	color: var(--hp-white);
	font-family: var(--hp-sans);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.site-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__col li {
	margin-bottom: .4rem;
}

.site-footer__col a {
	color: rgba(255,255,255,0.55);
	font-size: 0.875rem;
	transition: color var(--hp-fast);
}

.site-footer__col a:hover {
	color: var(--hp-gold-light);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.site-credit {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.4);
	margin: 0;
}

/* Footer widgets (backward compat) */
.footer-widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

/* =============================================
   24. SHOP PAGE & PRODUCT ARCHIVE
   ============================================= */
.hp-shop-hero {
	background: linear-gradient(135deg, var(--hp-blush-light) 0%, var(--hp-cream) 100%);
	padding-block: 4rem;
	text-align: center;
}

.hp-shop-hero__inner h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: .5rem;
}

.hp-shop-content {
	padding-block: 3rem;
}

.hp-shop-content.hp-reveal,
.hp-shop-page .hp-shop-content {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}

/* =============================================
   25. SINGLE PRODUCT PAGE
   ============================================= */
.hp-single-product {
	padding-block: 4rem;
}

.hp-single-product__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.hp-single-product__gallery img {
	border-radius: var(--hp-radius);
}

.hp-single-product__summary {
	position: sticky;
	top: calc(var(--hp-header-height) + 1.5rem);
}

/* =============================================
   26. EMPTY STATE & MISC
   ============================================= */
.hp-empty-state {
	text-align: center;
	padding: 3rem;
	color: var(--hp-muted);
	font-size: 0.9rem;
}

.hp-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* Ripple effect */
.hp-ripple {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hp-ripple .hp-ripple__circle {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.45);
	transform: translate(-50%,-50%) scale(0);
	animation: hp-ripple 640ms ease-out;
	pointer-events: none;
	z-index: -1;
}

/* WhatsApp float button */
.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 9900;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	font-size: 1.5rem;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(37,211,102,0.45);
	transition: transform var(--hp-smooth), box-shadow var(--hp-smooth);
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(37,211,102,0.55);
	color: #fff;
}


/* Ingredient particle */
.hp-ingredient-particle {
	position: absolute;
	top: -40px;
	pointer-events: none;
	opacity: 0.55;
	animation: hp-ingredient-fall linear forwards;
}

/* =============================================
   28. PAGE IMAGE BANNERS
   ============================================= */
.hp-image-banner {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 340px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	text-align: center;
}

.hp-image-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(44,32,32,0.25) 0%, rgba(44,32,32,0.65) 100%);
}

.hp-image-banner__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding: 2rem;
}

.hp-image-banner__content .hp-section-kicker {
	color: var(--hp-gold-light);
}

.hp-image-banner__content h2 {
	color: var(--hp-white);
}

.hp-image-banner__content p {
	color: rgba(255,255,255,0.85);
	margin-bottom: 0;
}

.hp-split-media {
	position: relative;
	border-radius: var(--hp-radius);
	overflow: hidden;
	box-shadow: var(--hp-shadow-md);
	aspect-ratio: 4 / 5;
}

.hp-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--hp-smooth);
}

.hp-split-media:hover img {
	transform: scale(1.04);
}

/* =============================================
   29. BLOG / JOURNAL LAYOUT
   ============================================= */
.content-layout,
.hp-single-post-page__inner {
	width: min(100% - 2rem, 1440px);
	margin-inline: auto;
	padding-block: 3.5rem 5rem;
}

.content-layout {
	display: grid;
	gap: 3rem;
}

.content-layout:has(.widget-area) {
	grid-template-columns: 1fr 320px;
	align-items: start;
}

.archive-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.archive-header h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
}

.archive-header p,
.archive-description {
	color: var(--hp-muted);
	margin: 0;
}

.content-layout__main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	align-content: start;
}

.content-layout__main > .archive-header,
.content-layout__main > .pagination,
.content-layout__main > nav,
.content-layout__main > .hp-empty-state {
	grid-column: 1 / -1;
}

.content-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--hp-radius);
	overflow: hidden;
	background: var(--hp-white);
	border: 1px solid var(--hp-border-light);
	box-shadow: var(--hp-shadow-sm);
	transition: transform var(--hp-smooth), box-shadow var(--hp-smooth);
}

.content-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hp-shadow-rose);
}

.content-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.content-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 480ms ease;
}

.content-card:hover .content-card__image img {
	transform: scale(1.06);
}

.content-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	flex-grow: 1;
}

.entry-meta {
	display: flex;
	gap: .5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hp-rose);
}

.entry-meta .byline::before {
	content: "•";
	margin-right: .5rem;
	color: var(--hp-border);
}

.entry-title {
	font-size: 1.25rem;
	margin: 0;
}

.entry-title a {
	color: var(--hp-charcoal);
	text-decoration: none;
	transition: color var(--hp-fast);
}

.entry-title a:hover {
	color: var(--hp-rose);
}

.entry-summary p {
	color: var(--hp-muted);
	font-size: 0.9rem;
	margin: 0;
}

.content-card .read-more {
	margin-top: auto;
	align-self: flex-start;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--hp-gold);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: border-color var(--hp-fast), color var(--hp-fast);
}

.content-card .read-more:hover {
	color: var(--hp-rose);
	border-color: var(--hp-rose);
}

.hp-single-post-page {
	background:
		linear-gradient(180deg, var(--hp-cream) 0%, var(--hp-blush-light) 46%, var(--hp-cream) 100%);
}

.hp-single-post-page__inner {
	display: grid;
	gap: 2.5rem;
}

.single-entry {
	display: grid;
	gap: 2rem;
}

.single-entry__hero {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
	gap: 3rem;
	align-items: center;
	padding: 3rem;
	border: 1px solid var(--hp-border-light);
	border-radius: var(--hp-radius);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: var(--hp-shadow-md);
}

.single-entry__hero-copy {
	max-width: 560px;
}

.single-entry__title {
	font-size: clamp(1.2rem, 3vw, 2.5rem);
	line-height: 1.04;
	margin-bottom: 1rem;
}

.single-entry__excerpt {
	color: var(--hp-muted);
	font-size: 1.08rem;
}

.single-entry__image {
	position: relative;
	overflow: hidden;
	border-radius: var(--hp-radius);
	background: var(--hp-blush-light);
	box-shadow: var(--hp-shadow-rose);
}

.single-entry__image img {
	width: 100%;
	height: 100%;
	max-height: 680px;
	object-fit: cover;
}

.single-entry .entry-content {
	margin-top: 1.5rem;
}

.single-entry .entry-content > * + * {
	margin-top: 1.1rem;
}

.single-entry .entry-content h2,
.single-entry .entry-content h3 {
	margin-top: 2rem;
}

.single-entry .entry-footer {
	width: min(100%, var(--hp-width));
	margin-inline: auto;
}

.hp-related-posts,
.hp-single-post-page .post-navigation,
.hp-single-post-page .comments-area {
	width: min(100%, var(--hp-width));
	margin-inline: auto;
	padding: 2rem;
	border: 1px solid var(--hp-border-light);
	border-radius: var(--hp-radius);
	background: var(--hp-white);
	box-shadow: var(--hp-shadow-sm);
}

.hp-related-posts h2 {
	margin-bottom: 1.5rem;
}

.hp-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.hp-related-post-card {
	display: grid;
	gap: .45rem;
	min-height: 150px;
	padding: 1.15rem;
	border-radius: var(--hp-radius-sm);
	background: var(--hp-blush-light);
	border: 1px solid var(--hp-border);
	text-decoration: none;
}

.hp-related-post-card span {
	color: var(--hp-rose);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.hp-related-post-card strong {
	font-family: var(--hp-serif);
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--hp-charcoal);
}

.hp-single-post-page .comment-form-comment textarea {
	width: 100%;
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-sm);
	background: var(--hp-blush-light);
}

/* =============================================
   30. SHOP TOOLBAR & FILTERS
   ============================================= */
.hp-shop-toolbar {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.hp-shop-filters {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
}

.hp-filter-pill {
	display: inline-flex;
	align-items: center;
	padding: .5rem 1.1rem;
	border-radius: var(--hp-radius-pill);
	border: 1px solid var(--hp-border);
	background: var(--hp-white);
	color: var(--hp-charcoal);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--hp-fast);
}

.hp-filter-pill:hover {
	border-color: var(--hp-rose);
	color: var(--hp-rose);
}

.hp-filter-pill.is-active {
	background: var(--hp-gradient-gold);
	border-color: transparent;
	color: var(--hp-white);
	box-shadow: var(--hp-shadow-gold);
}

.hp-shop-toolbar__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--hp-border-light);
}

.woocommerce-result-count {
	order: 1;
	flex: 0 0 auto;
	margin: 0;
	color: var(--hp-muted);
	font-size: 0.9rem;
}

.woocommerce-ordering {
	order: 2;
	margin: 0;
	margin-left: auto;
}

.woocommerce-ordering select {
	appearance: none;
	padding: .55rem 2.25rem .55rem 1rem;
	border-radius: var(--hp-radius-pill);
	border: 1px solid var(--hp-border);
	background: var(--hp-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C89B4F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
	font-family: var(--hp-sans);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--hp-charcoal);
	cursor: pointer;
	transition: border-color var(--hp-fast);
}

.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus {
	border-color: var(--hp-rose);
	outline: none;
}

.woocommerce-pagination {
	margin-top: 1rem;
	grid-column: 1 / -1;
}

.woocommerce-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	gap: .5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 .5rem;
	border-radius: 50%;
	border: 1px solid var(--hp-border);
	color: var(--hp-charcoal);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all var(--hp-fast);
}

.woocommerce-pagination .page-numbers li a:hover,
.woocommerce-pagination .page-numbers li span.current {
	background: var(--hp-gradient-gold);
	border-color: transparent;
	color: var(--hp-white);
}

.woocommerce .star-rating {
	color: var(--hp-gold);
}

.woocommerce ul.products li.product .price {
	color: var(--hp-rose);
	font-weight: 700;
}

.woocommerce ul.products li.product .button {
	margin-top: .5rem;
}

.woocommerce span.onsale {
	background: var(--hp-gradient-gold);
	color: var(--hp-white);
	font-weight: 700;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	border-radius: var(--hp-radius-pill);
	padding: .3rem .75rem;
	position: absolute;
	top: .75rem;
	left: .75rem;
	z-index: 4;
	min-height: auto;
	min-width: auto;
	line-height: 1;
}

/* =============================================
   31. ABOUT — PHILOSOPHY PANEL
   ============================================= */
.hp-philosophy {
	background: linear-gradient(135deg, var(--hp-charcoal) 0%, #3A2A2A 100%);
}

.hp-philosophy .hp-section-kicker {
	color: var(--hp-gold-light);
}

.hp-philosophy h2 {
	color: var(--hp-cream);
}

.hp-philosophy .hp-about__copy p {
	color: rgba(248, 245, 240, 0.8);
}

/* =============================================
   STANDARD PAGES / POLICIES
   ============================================= */
.page-main {
	padding-block: 3.5rem 5rem;
}

.page-entry {
	width: min(100% - 2rem, 920px);
	margin-inline: auto;
	padding: clamp(1.5rem, 4vw, 2.6rem);
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid var(--hp-border-light);
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow-sm);
}

.page-entry__header {
	margin-bottom: 1.5rem;
}

.page-entry__title {
	margin: 0;
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	line-height: 1.12;
}

.page-entry .entry-content {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--hp-ink);
}

.page-entry .entry-content > * {
	margin-top: 0;
	margin-bottom: 0;
}

.page-entry .entry-content > * + * {
	margin-top: 1rem;
}

.page-entry .entry-content h1,
.page-entry .entry-content h2,
.page-entry .entry-content h3 {
	line-height: 1.18;
}

.page-entry .entry-content h1 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.page-entry .entry-content h2 {
	margin-top: 2rem;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.page-entry .entry-content h3 {
	margin-top: 1.5rem;
	font-size: clamp(1.12rem, 2.2vw, 1.35rem);
}

.page-entry .entry-content p,
.page-entry .entry-content li {
	color: var(--hp-muted);
}

.page-entry .entry-content ul,
.page-entry .entry-content ol {
	padding-left: 1.25rem;
}

@media (max-width: 860px) {
	.content-layout__main {
		grid-template-columns: 1fr;
	}

	.content-layout:has(.widget-area) {
		grid-template-columns: 1fr;
	}

	.hp-split-media {
		aspect-ratio: 16 / 10;
	}
}

/* =============================================
   27. KEYFRAMES
   ============================================= */
@keyframes hp-loader-spin {
	to { transform: rotate(360deg); }
}

@keyframes hp-menu-open {
	from { opacity: 0; transform: translateY(-8px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0)  scale(1); }
}

@keyframes hp-ripple {
	to { transform: translate(-50%,-50%) scale(26); opacity: 0; }
}

@keyframes hp-soft-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.28); }
	50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

@keyframes hp-ingredient-fall {
	0%   { transform: translate3d(0,0,0) rotate(0deg) scale(1); opacity: 0; }
	8%   { opacity: 0.6; }
	92%  { opacity: 0.4; }
	100% {
		transform:
			translate3d(var(--hp-sway-amount, 60px), 110vh, 0)
			rotate(var(--hp-rotate-amount, 360deg))
			scale(0.8);
		opacity: 0;
	}
}

@keyframes hp-bottle-rise {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50%       { transform: translate3d(0, -14px, 0); }
}

@keyframes hp-bottle-fall {
	0%, 100% { transform: translate3d(0, -14px, 0); }
	50%       { transform: translate3d(0, 0, 0); }
}

/* =============================================
   28. RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 900px) {
	.hp-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hp-hero__visual {
		order: -1;
	}

	.hp-hero__content h1,
	.hp-hero__text {
		max-width: 100%;
	}

	.hp-actions {
		justify-content: center;
	}

	.hp-hero__stats {
		justify-content: center;
	}

	.hp-top-sellers__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp-promo-banner__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hp-promo-banner__image {
		margin-inline: auto;
	}

	.hp-benefits__inner {
		grid-template-columns: 1fr;
	}

	.hp-instagram-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	.hp-product-grid,
	.hp-tab-pane.is-active {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp-about .hp-split,
	.hp-philosophy .hp-split,
	.hp-split-section .hp-split,
	.hp-contact-content .hp-split {
		grid-template-columns: 1fr;
	}

	.hp-about-dark__inner,
	.single-entry__hero,
	.hp-contact-object {
		grid-template-columns: 1fr;
	}

	.hp-related-posts__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.hp-single-product__layout {
		grid-template-columns: 1fr;
	}

	.hp-single-product__summary {
		position: static;
	}
}

/* =============================================
   29. RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 600px) {
	.hp-section {
		padding-block: 3.5rem;
	}

	.hp-top-sellers__grid {
		grid-template-columns: 1fr;
	}

	.hp-product-grid,
	.hp-tab-pane.is-active {
		grid-template-columns: 1fr;
	}

	.hp-category-grid {
		grid-template-columns: 1fr;
	}

	.hp-instagram-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp-newsletter-form {
		flex-direction: column;
		align-items: stretch;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   30. DESKTOP NAV (≥ 861px)
   ============================================= */
/* =============================================
   30. HOME HERO RESPONSIVENESS
   ============================================= */
@media (max-width: 768px) {
	.hp-hero {
		padding-block: 2.25rem 2.75rem;
		overflow: hidden;
	}

	.hp-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.75rem;
		text-align: center;
		align-items: center;
	}

	.hp-hero__content {
		order: 1;
		width: 100%;
		min-width: 0;
	}

	.hp-hero__visual {
		order: 2;
		width: 100%;
		min-width: 0;
		overflow: visible;
	}

	.hp-hero__content h1 {
		max-width: 11ch;
		margin-inline: auto;
		font-size: clamp(2.05rem, 10vw, 2.9rem);
		line-height: 1.08;
		overflow-wrap: normal;
		word-break: normal;
		text-wrap: balance;
	}

	.hp-hero__tagline {
		font-size: clamp(1.35rem, 7vw, 1.8rem);
	}

	.hp-hero__text {
		max-width: 34ch;
		margin-inline: auto;
		margin-bottom: 1.35rem;
		font-size: .98rem;
	}

	.hp-actions {
		justify-content: center;
	}

	.hp-actions .button {
		min-width: min(100%, 150px);
	}

	.hp-hero__stats {
		flex-direction: column;
		gap: .75rem;
		margin-top: 1.25rem;
	}

	.hp-hero__stat-badge {
		width: min(100%, 300px);
		justify-content: center;
	}

	.hp-hero__3d {
		display: none;
	}

	.hp-hero__bottle-stage {
		width: 100%;
		gap: clamp(.65rem, 4vw, 1rem);
		align-items: flex-end;
		justify-content: center;
		padding-inline: .25rem;
	}

	.hp-hero__oval-frame--large {
		width: clamp(132px, 39vw, 170px);
		height: clamp(190px, 56vw, 242px);
		border-radius: 999px;
	}

	.hp-hero__oval-frame--small {
		width: clamp(104px, 31vw, 136px);
		height: clamp(150px, 45vw, 196px);
		border-radius: 999px;
	}

	.hp-hero__oval-frame img {
		object-fit: contain;
		object-position: center bottom;
		padding: .35rem;
	}

	.hp-hero__promo-badge {
		top: -12px;
		right: -8px;
		width: 54px;
		height: 54px;
	}

	.hp-hero__promo-badge strong {
		font-size: .78rem;
	}

	.hp-hero__promo-badge span {
		font-size: .45rem;
	}
}

@media (max-width: 414px) {
	.hp-hero__content h1 {
		max-width: 10ch;
	}

	.hp-hero__bottle-stage {
		gap: .45rem;
	}

	.hp-hero__oval-frame--large {
		width: clamp(126px, 40vw, 154px);
		height: clamp(184px, 58vw, 224px);
	}

	.hp-hero__oval-frame--small {
		width: clamp(96px, 31vw, 122px);
		height: clamp(142px, 46vw, 178px);
	}
}

@media (max-width: 360px) {
	.hp-hero__content h1 {
		font-size: clamp(1.9rem, 10vw, 2.35rem);
	}

	.hp-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hp-actions .button {
		width: 100%;
	}
}

@media (min-width: 861px) {
	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		position: static;
		display: flex !important;
		padding: 0;
		border: none;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		justify-content: center;
	}

	.primary-navigation ul {
		flex-direction: row;
		gap: .25rem;
	}

	.primary-navigation a {
		width: auto;
		padding: .5rem .85rem;
		font-size: 0.85rem;
		color: rgba(255,255,255,0.85);
	}

	.primary-navigation a:hover,
	.primary-navigation .current-menu-item > a {
		background: rgba(200,155,79,0.15);
		color: var(--hp-gold-light);
	}
}

/* =============================================
   31. REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	body,
	.site-header,
	.hp-reveal,
	.hp-ingredient-particle,
	.hp-oval-card__frame img,
	.hp-hero__oval-frame img,
	.hp-marquee__track,
	.hp-circular-badge svg,
	.hp-hero__promo-badge,
	.custom-logo-link::after {
		animation: none !important;
		transition: none !important;
	}

	.hp-reveal,
	.hp-hero-sequence,
	.hp-hero__bottle-figure,
	[data-split-heading] .hp-letter {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* =============================================
   32. CONTACT FORM (Contact Form 7)
   ============================================= */
.hp-contact-form-container {
	background: var(--hp-white);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius);
	padding: 2.25rem;
	box-shadow: var(--hp-shadow-sm);
}

.hp-contact-content {
	padding-block: 3rem 4rem;
}

.hp-contact-content .hp-split {
	align-items: start;
}

.hp-contact-info {
	display: grid;
	gap: 1.5rem;
	align-content: start;
}

.hp-contact-object {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 1.5rem;
	align-items: center;
	padding: 1.5rem;
	border-radius: var(--hp-radius);
	background:
		radial-gradient(circle at 22% 10%, rgba(229, 193, 122, 0.26), transparent 38%),
		linear-gradient(135deg, #1b1111, var(--hp-charcoal));
	color: var(--hp-white);
	box-shadow: var(--hp-shadow-md);
	overflow: hidden;
}

.hp-contact-object img {
	width: 150px;
	max-height: 240px;
	object-fit: contain;
	filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.34));
}

.hp-contact-object span {
	display: block;
	margin-bottom: .4rem;
	color: var(--hp-gold-light);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hp-contact-object strong {
	display: block;
	font-family: var(--hp-serif);
	font-size: clamp(1.35rem, 3vw, 2.1rem);
	line-height: 1.14;
}

.hp-map {
	padding: 0;
	margin: 0;
	background: var(--hp-cream);
}

.hp-map__inner {
	width: 100%;
	margin: 0;
}

.hp-map .hp-section-heading {
	width: min(100% - 2rem, var(--hp-width));
	margin: 0 auto 2rem;
	padding-top: 3rem;
}

.hp-map-iframe-container {
	width: 100%;
	height: 520px;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	line-height: 0;
}

.hp-map-iframe-container iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.hp-cf7-wrapper {
	margin-top: 0 !important;
}

.hp-cf7-wrapper .wpcf7-form,
.hp-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.hp-cf7-wrapper .wpcf7-form p {
	margin: 0;
}

.hp-cf7-wrapper label,
.hp-newsletter-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-family: var(--hp-sans);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hp-ink);
}

.hp-cf7-wrapper input[type="text"],
.hp-cf7-wrapper input[type="email"],
.hp-cf7-wrapper input[type="tel"],
.hp-cf7-wrapper input[type="url"],
.hp-cf7-wrapper textarea,
.hp-cf7-wrapper select,
.hp-newsletter-form input,
.hp-newsletter-form textarea {
	width: 100%;
	padding: 0.85rem 1.1rem;
	font-family: var(--hp-sans);
	font-size: 1rem;
	color: var(--hp-ink);
	background: var(--hp-blush-light);
	border: 1.5px solid var(--hp-border);
	border-radius: var(--hp-radius-sm);
	transition: border-color var(--hp-fast), box-shadow var(--hp-fast), background var(--hp-fast);
}

.hp-cf7-wrapper textarea,
.hp-newsletter-form textarea {
	min-height: 160px;
	resize: vertical;
	line-height: 1.6;
}

.hp-cf7-wrapper input:focus,
.hp-cf7-wrapper textarea:focus,
.hp-cf7-wrapper select:focus,
.hp-newsletter-form input:focus,
.hp-newsletter-form textarea:focus {
	outline: none;
	background: var(--hp-white);
	border-color: var(--hp-rose);
	box-shadow: 0 0 0 3px rgba(212, 133, 106, 0.15);
}

.hp-cf7-wrapper input::placeholder,
.hp-cf7-wrapper textarea::placeholder {
	color: var(--hp-muted);
}

.hp-cf7-wrapper .wpcf7-submit,
.hp-newsletter-form button[type="submit"],
.hp-newsletter-form .button {
	align-self: flex-start;
	padding: 0.9rem 2.25rem;
	font-family: var(--hp-sans);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--hp-white);
	background: var(--hp-gradient-gold);
	border: none;
	border-radius: var(--hp-radius-pill);
	cursor: pointer;
	box-shadow: var(--hp-shadow-rose);
	transition: transform var(--hp-fast), box-shadow var(--hp-fast), opacity var(--hp-fast);
}

.hp-cf7-wrapper .wpcf7-submit:hover,
.hp-newsletter-form button[type="submit"]:hover,
.hp-newsletter-form .button:hover {
	transform: translateY(-2px);
	box-shadow: var(--hp-shadow-gold);
}

.hp-newsletter .hp-newsletter-form {
	align-items: center;
}

.hp-newsletter .hp-newsletter-form label {
	display: none;
}

.hp-newsletter .hp-newsletter-form input[type="email"] {
	width: min(100%, 440px);
}

.hp-newsletter .hp-newsletter-form button[type="submit"],
.hp-newsletter .hp-newsletter-form .button {
	align-self: center;
}

.hp-cf7-wrapper .wpcf7-spinner {
	margin-left: 0.75rem;
	vertical-align: middle;
}

/* Validation & response messages */
.hp-cf7-wrapper .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.82rem;
	color: var(--hp-rose);
	font-weight: 600;
}

.hp-cf7-wrapper .wpcf7-form-control-wrap {
	display: block;
}

.hp-cf7-wrapper .wpcf7-response-output {
	margin: 0 !important;
	padding: 0.9rem 1.25rem !important;
	border-radius: var(--hp-radius-sm) !important;
	font-size: 0.92rem;
	border: 1.5px solid var(--hp-border) !important;
}

.hp-cf7-wrapper form.sent .wpcf7-response-output {
	border-color: #6fae8d !important;
	background: rgba(111, 174, 141, 0.12);
	color: #2f6b4f;
}

.hp-cf7-wrapper form.failed .wpcf7-response-output,
.hp-cf7-wrapper form.aborted .wpcf7-response-output,
.hp-cf7-wrapper form.invalid .wpcf7-response-output,
.hp-cf7-wrapper form.unaccepted .wpcf7-response-output {
	border-color: var(--hp-rose) !important;
	background: rgba(212, 133, 106, 0.1);
	color: var(--hp-rose);
}

@media (max-width: 640px) {
	.hp-contact-form-container {
		padding: 1.5rem;
	}
}
