/* ==========================================================================
   Holystic Theme — Core Design System
   A mystical, enchanted theme for holistic & spiritual e-commerce
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
	/* Core palette */
	--h-bg-primary: #0a0812;
	--h-bg-secondary: #110d1e;
	--h-bg-card: #1a1530;
	--h-bg-card-hover: #221d45;
	--h-bg-surface: #1e1842;

	/* Accent colors */
	--h-purple: #5b3fa0;
	--h-purple-deep: #2d1b69;
	--h-purple-mid: #5b3fa0;
	--h-purple-light: #9b7fe8;
	--h-purple-glow: rgba(155, 127, 232, 0.3);
	--h-gold: #d4a853;
	--h-gold-bright: #f5c842;
	--h-gold-pale: #fdf3cc;
	--h-orange: #d4a853;
	--h-orange-light: #f5c842;
	--h-orange-glow: rgba(212, 168, 83, 0.2);
	--h-coral: #e8a0b4;
	--h-rose: #e8a0b4;
	--h-rose-deep: #c4687e;
	--h-teal: #4ecdc4;

	/* Text */
	--h-text-primary: #f0eaff;
	--h-text-secondary: #b8a9d9;
	--h-text-muted: #7a6fa0;

	/* Borders */
	--h-border: rgba(180, 140, 255, 0.15);
	--h-border-hover: rgba(180, 140, 255, 0.35);

	/* Gradients */
	--h-gradient-hero: linear-gradient(135deg, #0a0812 0%, #1a0e3e 40%, #2d1b69 70%, #1a0e3e 100%);
	--h-gradient-card: linear-gradient(145deg, rgba(26, 21, 48, 0.8), rgba(10, 8, 18, 0.9));
	--h-gradient-cta: linear-gradient(135deg, #d4a853 0%, #e8703a 100%);
	--h-gradient-cta-hover: linear-gradient(135deg, #e8703a 0%, #d4a853 100%);
	--h-gradient-purple: linear-gradient(135deg, #5b3fa0, #9b7fe8);
	--h-gradient-warm: linear-gradient(135deg, #d4a853, #e8703a);
	--h-gradient-rose: linear-gradient(135deg, #e8a0b4, #c4687e);

	/* Shadows */
	--h-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--h-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
	--h-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
	--h-shadow-glow: 0 0 30px var(--h-purple-glow);
	--h-shadow-glow-gold: 0 0 30px var(--h-orange-glow);

	/* Typography */
	--h-font-display: 'Cormorant Garamond', 'Georgia', serif;
	--h-font-heading: 'Playfair Display', 'Georgia', serif;
	--h-font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;
	--h-font-accent: 'Cinzel', 'Georgia', serif;

	/* Spacing */
	--h-container: 1200px;
	--h-gap: 2rem;

	/* Transitions */
	--h-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--h-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.holystic-theme {
	font-family: var(--h-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--h-text-primary);
	background: var(--h-bg-primary);
	overflow-x: hidden;
}

a {
	color: var(--h-purple-light);
	text-decoration: none;
	transition: color var(--h-transition);
}

a:hover {
	color: var(--h-orange);
}

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

.container {
	max-width: var(--h-container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ---------- Ambient Particles ---------- */
.holystic-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.particle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.15;
	animation: particleFloat 20s infinite ease-in-out;
}

.particle-1 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--h-purple) 0%, transparent 70%);
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.particle-2 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, var(--h-orange) 0%, transparent 70%);
	top: 60%;
	right: -3%;
	animation-delay: -7s;
}

.particle-3 {
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, var(--h-coral) 0%, transparent 70%);
	bottom: 20%;
	left: 30%;
	animation-delay: -14s;
}

.particle-4 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, var(--h-purple-light) 0%, transparent 70%);
	top: 40%;
	left: 50%;
	animation-delay: -3s;
	opacity: 0.08;
}

.particle-5 {
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, var(--h-teal) 0%, transparent 70%);
	top: 80%;
	left: 10%;
	animation-delay: -10s;
	opacity: 0.1;
}

.particle-6 {
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, var(--h-orange) 0%, transparent 70%);
	top: 5%;
	right: 20%;
	animation-delay: -5s;
	opacity: 0.1;
}

@keyframes particleFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -40px) scale(1.1); }
	50% { transform: translate(-20px, 30px) scale(0.95); }
	75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ---------- Grain Texture Overlay ---------- */
body.holystic-theme::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ---------- Sacred Divider ---------- */
.sacred-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2rem 0;
}

.sacred-divider::before,
.sacred-divider::after {
	content: '';
	flex: 1;
	max-width: 200px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--h-gold), transparent);
}

.sacred-divider .divider-glyph {
	color: var(--h-gold);
	font-size: 1.2rem;
}

/* ---------- Announcement Bar ---------- */
.holystic-announcement {
	background: var(--h-purple-deep);
	color: var(--h-gold);
	text-align: center;
	padding: 0.5rem 1rem;
	font-family: var(--h-font-accent);
	font-size: 0.8rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	position: relative;
	z-index: 1001;
}

.holystic-announcement a {
	color: var(--h-gold-bright);
	text-decoration: underline;
}

/* ---------- Global Button Styles ---------- */
.btn-primary,
.holystic-btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 2rem;
	background: var(--h-gradient-cta);
	color: #fff;
	font-family: var(--h-font-accent);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all var(--h-transition);
	text-decoration: none;
}

.btn-primary:hover,
.holystic-btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(212, 168, 83, 0.3);
	color: #fff;
}

.btn-primary::after,
.holystic-btn-cta::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -60%;
	width: 40%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transform: skewX(-25deg);
	transition: left 0.6s ease;
}

.btn-primary:hover::after,
.holystic-btn-cta:hover::after {
	left: 120%;
}

.btn-secondary,
.holystic-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 2rem;
	background: transparent;
	color: var(--h-gold);
	font-family: var(--h-font-accent);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: 1px solid var(--h-gold);
	border-radius: 50px;
	cursor: pointer;
	transition: all var(--h-transition);
	text-decoration: none;
}

.btn-secondary:hover,
.holystic-btn-outline:hover {
	background: var(--h-gold);
	color: var(--h-bg-primary);
	transform: translateY(-2px);
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Header ---------- */
.holystic-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.75rem 0;
	transition: all var(--h-transition);
	background: rgba(10, 8, 18, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--h-border);
}

.header-glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 2px;
	background: var(--h-gradient-cta);
	filter: blur(1px);
	opacity: 0.6;
}

.header-inner {
	max-width: var(--h-container);
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.header-logo .site-title-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--h-text-primary);
	font-family: var(--h-font-accent);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.header-logo .logo-icon {
	font-size: 2rem;
	color: var(--h-gold);
	filter: drop-shadow(0 0 10px var(--h-orange-glow));
}

.header-logo .logo-text {
	background: var(--h-gradient-warm);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.header-nav .nav-menu {
	display: flex;
	list-style: none;
	gap: 0.25rem;
}

.header-nav .nav-menu li a {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--h-text-secondary);
	font-family: var(--h-font-accent);
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 0;
	transition: all var(--h-transition);
	position: relative;
}

.header-nav .nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 1rem;
	right: 1rem;
	height: 1px;
	background: var(--h-gold);
	transform: scaleX(0);
	transition: transform var(--h-transition);
}

.header-nav .nav-menu li a:hover,
.header-nav .nav-menu li.current-menu-item a {
	color: var(--h-gold);
	background: transparent;
}

.header-nav .nav-menu li a:hover::after,
.header-nav .nav-menu li.current-menu-item a::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba(123, 47, 242, 0.1);
	color: var(--h-text-secondary);
	cursor: pointer;
	transition: all var(--h-transition);
}

.header-action-btn:hover {
	background: rgba(123, 47, 242, 0.25);
	color: var(--h-text-primary);
	transform: scale(1.05);
}

.cart-btn {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 18px;
	height: 18px;
	background: var(--h-gold);
	color: var(--h-bg-primary);
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--h-text-primary);
	border-radius: 2px;
	transition: all var(--h-transition);
}

/* Search overlay */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(13, 11, 26, 0.95);
	backdrop-filter: blur(20px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--h-transition);
}

.search-overlay.active {
	opacity: 1;
	visibility: visible;
}

.search-overlay-inner {
	width: 100%;
	max-width: 600px;
	padding: 0 1.5rem;
	position: relative;
}

.search-overlay form {
	display: flex;
	border-bottom: 2px solid var(--h-purple);
}

.search-overlay input {
	flex: 1;
	background: none;
	border: none;
	color: var(--h-text-primary);
	font-family: var(--h-font-heading);
	font-size: 1.5rem;
	padding: 1rem 0;
	outline: none;
}

.search-overlay input::placeholder {
	color: var(--h-text-muted);
}

.search-overlay button[type="submit"] {
	background: none;
	border: none;
	color: var(--h-purple-light);
	cursor: pointer;
	padding: 1rem;
}

.search-close {
	position: absolute;
	top: -60px;
	right: 0;
	background: none;
	border: none;
	color: var(--h-text-secondary);
	font-size: 2rem;
	cursor: pointer;
}

/* ---------- Hero Section ---------- */
.holystic-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: var(--h-gradient-hero);
}

.hero-orbs .orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: orbFloat 12s infinite ease-in-out;
}

.orb-1 {
	width: 400px;
	height: 400px;
	background: rgba(123, 47, 242, 0.2);
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.orb-2 {
	width: 300px;
	height: 300px;
	background: rgba(247, 163, 37, 0.15);
	top: 30%;
	right: 15%;
	animation-delay: -4s;
}

.orb-3 {
	width: 250px;
	height: 250px;
	background: rgba(255, 107, 138, 0.1);
	bottom: 10%;
	left: 40%;
	animation-delay: -8s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
	33% { transform: translate(30px, -20px) scale(1.1); opacity: 0.8; }
	66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.5; }
}

.hero-forest {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.forest-svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Sparkles */
.sparkle {
	position: absolute;
	color: var(--h-orange);
	font-size: 1rem;
	animation: sparkleFloat 6s infinite ease-in-out;
	z-index: 2;
}

.sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; font-size: 1.2rem; }
.sparkle-2 { top: 35%; right: 20%; animation-delay: -1.5s; font-size: 0.8rem; color: var(--h-purple-light); }
.sparkle-3 { top: 50%; left: 30%; animation-delay: -3s; font-size: 1rem; color: var(--h-gold); }
.sparkle-4 { top: 25%; right: 35%; animation-delay: -4.5s; font-size: 0.9rem; }
.sparkle-5 { top: 60%; right: 10%; animation-delay: -2s; font-size: 1.1rem; color: var(--h-coral); }

@keyframes sparkleFloat {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
	50% { transform: translateY(-20px) scale(1.3); opacity: 1; }
}

/* Hero content */
.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 700px;
	padding: 2rem 1.5rem;
}

.hero-title {
	font-family: var(--h-font-display);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0.02em;
	margin-bottom: 1.25rem;
	background: linear-gradient(135deg, var(--h-text-primary) 0%, var(--h-orange-light) 50%, var(--h-purple-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGlow 4s infinite ease-in-out;
}

@keyframes titleGlow {
	0%, 100% { filter: drop-shadow(0 0 20px rgba(247, 163, 37, 0.1)); }
	50% { filter: drop-shadow(0 0 40px rgba(247, 163, 37, 0.3)); }
}

.hero-subtitle {
	font-family: var(--h-font-display);
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	font-style: italic;
	color: var(--h-text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: var(--h-gradient-cta);
	background-size: 200% 200%;
	color: #fff;
	font-family: var(--h-font-accent);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 50px;
	transition: all var(--h-transition);
	box-shadow: 0 4px 25px rgba(247, 163, 37, 0.3);
	animation: ctaShimmer 3s infinite ease-in-out;
}

.hero-cta:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 8px 40px rgba(212, 168, 83, 0.45);
	color: #fff;
}

.hero-ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.hero-trust-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	font-size: 0.8rem;
	color: var(--h-text-muted);
	letter-spacing: 0.5px;
}

.hero-trust-badges span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

@keyframes ctaShimmer {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

/* ---------- Categories Section ---------- */
.holystic-categories {
	position: relative;
	z-index: 10;
	padding: 4rem 0;
	margin-top: -3rem;
}

.categories-row {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.category-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.5rem 1rem;
	min-width: 110px;
	border-radius: 16px;
	background: var(--h-bg-card);
	border: 1px solid rgba(212, 168, 83, 0.2);
	color: var(--h-text-secondary);
	transition: all var(--h-transition);
}

.category-item:hover {
	transform: translateY(-6px);
	border-color: var(--h-gold);
	box-shadow: 0 0 30px var(--h-purple-glow);
	color: var(--h-text-primary);
	background: var(--h-bg-card-hover);
}

.category-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(91, 63, 160, 0.15);
	color: var(--h-gold);
	transition: all var(--h-transition);
}

.category-item:hover .category-icon {
	background: rgba(212, 168, 83, 0.15);
	box-shadow: 0 0 20px rgba(212, 168, 83, 0.2);
}

.category-item span {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.03em;
}

/* ---------- Section Headers ---------- */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-tag {
	display: inline-block;
	font-family: var(--h-font-display);
	font-size: 1rem;
	font-style: italic;
	color: var(--h-orange);
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}

.section-title {
	font-family: var(--h-font-heading);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 600;
	color: var(--h-text-primary);
	margin-bottom: 0.75rem;
	letter-spacing: 0.02em;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--h-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* ---------- Featured Products ---------- */
.holystic-featured {
	position: relative;
	z-index: 10;
	padding: 5rem 0;
}

.section-cta {
	text-align: center;
	margin-top: 3rem;
}

.btn-mystical {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 2rem;
	background: transparent;
	color: var(--h-purple-light);
	border: 1px solid var(--h-purple);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all var(--h-transition);
}

.btn-mystical:hover {
	background: var(--h-purple);
	color: #fff;
	box-shadow: var(--h-shadow-glow);
	transform: translateY(-2px);
}

/* ---------- Bento Grid ---------- */
.holystic-bento {
	position: relative;
	z-index: 10;
	padding: 3rem 0 5rem;
}

.bento-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.5rem;
}

.bento-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--h-border);
	transition: all var(--h-transition-slow);
}

.bento-card:hover {
	border-color: var(--h-border-hover);
	transform: translateY(-3px);
	box-shadow: var(--h-shadow-glow);
}

.bento-large {
	grid-row: 1 / 3;
}

.bento-bg {
	position: absolute;
	inset: 0;
}

.bento-bg-1 {
	background: linear-gradient(145deg, #1a0e3e 0%, #2d1b69 50%, #1a0e3e 100%);
}

.bento-bg-2 {
	background: linear-gradient(145deg, #1a1535 0%, #0d0b1a 100%);
}

.bento-bg-3 {
	background: linear-gradient(145deg, #141028 0%, #1a0e3e 100%);
}

.bento-content {
	position: relative;
	z-index: 2;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.bento-tag {
	display: inline-block;
	font-family: var(--h-font-display);
	font-size: 0.85rem;
	font-style: italic;
	color: var(--h-orange);
	margin-bottom: 0.5rem;
}

.bento-card h3 {
	font-family: var(--h-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--h-text-primary);
	margin-bottom: 0.75rem;
}

.bento-card p {
	color: var(--h-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.bento-link {
	color: var(--h-orange);
	font-weight: 600;
	font-size: 0.9rem;
	transition: all var(--h-transition);
}

.bento-link:hover {
	color: var(--h-orange-light);
	letter-spacing: 0.02em;
}

/* ---------- Testimonials ---------- */
.holystic-testimonials {
	position: relative;
	z-index: 10;
	padding: 5rem 0;
}

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

.testimonial-card {
	background: var(--h-gradient-card);
	border: 1px solid var(--h-border);
	border-radius: 20px;
	padding: 2rem;
	transition: all var(--h-transition);
}

.testimonial-card:hover {
	border-color: var(--h-border-hover);
	box-shadow: var(--h-shadow-glow);
	transform: translateY(-3px);
}

.testimonial-stars {
	color: var(--h-gold);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	letter-spacing: 0.1em;
}

.testimonial-card p {
	color: var(--h-text-secondary);
	font-family: var(--h-font-display);
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--h-gradient-purple);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
}

.testimonial-author strong {
	display: block;
	color: var(--h-text-primary);
	font-size: 0.9rem;
}

.testimonial-author span {
	font-size: 0.75rem;
	color: var(--h-text-muted);
}

/* ---------- Pinterest CTA ---------- */
.holystic-pinterest-cta {
	position: relative;
	z-index: 10;
	padding: 5rem 0;
}

.pinterest-inner {
	display: flex;
	align-items: center;
	gap: 4rem;
	background: var(--h-gradient-card);
	border: 1px solid var(--h-border);
	border-radius: 24px;
	padding: 3.5rem;
	overflow: hidden;
	position: relative;
}

.pinterest-content {
	flex: 1;
}

.pinterest-content h2 {
	font-family: var(--h-font-heading);
	font-size: 2rem;
	color: var(--h-text-primary);
	margin-bottom: 1rem;
}

.pinterest-content p {
	color: var(--h-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.btn-pinterest {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 2rem;
	background: #E60023;
	color: #fff;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all var(--h-transition);
}

.btn-pinterest:hover {
	background: #c1001e;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(230, 0, 35, 0.3);
	color: #fff;
}

.pinterest-visual {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.pin-card {
	width: 120px;
	height: 180px;
	border-radius: 16px;
	background: var(--h-bg-card-hover);
	border: 1px solid var(--h-border);
}

.pin-card:nth-child(2) {
	margin-top: 2rem;
}

/* ---------- Page Header ---------- */
.holystic-page-header {
	padding: 3rem 0 2rem;
	text-align: center;
	background: var(--h-gradient-hero);
	position: relative;
}

.holystic-page-header h1 {
	font-family: var(--h-font-display);
	font-size: clamp(2rem, 4vw, 3.2rem);
	color: var(--h-text-primary);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.holystic-page-header .shop-intro {
	color: var(--h-text-secondary);
	font-family: var(--h-font-display);
	font-style: italic;
	font-size: 1.05rem;
	margin-top: 0.75rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Blog Grid ---------- */
.holystic-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 3rem 0;
}

.blog-card {
	background: var(--h-gradient-card);
	border: 1px solid var(--h-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all var(--h-transition);
}

.blog-card:hover {
	border-color: var(--h-border-hover);
	box-shadow: var(--h-shadow-glow);
	transform: translateY(-3px);
}

.blog-card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-content {
	padding: 1.5rem;
}

.blog-card-meta {
	font-size: 0.8rem;
	color: var(--h-text-muted);
	margin-bottom: 0.75rem;
}

.blog-card h2 {
	font-family: var(--h-font-heading);
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.blog-card h2 a {
	color: var(--h-text-primary);
}

.blog-card h2 a:hover {
	color: var(--h-gold);
}

.blog-card p {
	color: var(--h-text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.blog-read-more {
	color: var(--h-gold);
	font-weight: 600;
	font-size: 0.85rem;
}

.blog-category-badges {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.blog-cat-badge {
	display: inline-block;
	padding: 0.2rem 0.7rem;
	background: rgba(212, 168, 83, 0.12);
	color: var(--h-gold);
	border-radius: 20px;
	font-size: 0.7rem;
	font-family: var(--h-font-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: background var(--h-transition);
}

.blog-cat-badge:hover {
	background: rgba(212, 168, 83, 0.2);
}

/* ---------- Page Content ---------- */
.holystic-page-content {
	padding: 3rem 0;
	max-width: 800px;
	margin: 0 auto;
}

.holystic-page-content h2,
.holystic-page-content h3 {
	font-family: var(--h-font-heading);
	color: var(--h-text-primary);
	margin: 2rem 0 1rem;
}

.holystic-page-content p {
	color: var(--h-text-secondary);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* ---------- Single Post ---------- */
.holystic-single-post {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem 0;
}

.post-featured-image {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.post-featured-image img {
	width: 100%;
	height: auto;
}

.post-content {
	color: var(--h-text-secondary);
	line-height: 1.8;
}

.post-content h2,
.post-content h3 {
	font-family: var(--h-font-heading);
	color: var(--h-text-primary);
	margin: 2rem 0 1rem;
}

.post-content p {
	margin-bottom: 1.5rem;
}

.post-content img {
	border-radius: 12px;
	margin: 2rem 0;
}

/* ---------- Footer ---------- */
.holystic-footer {
	position: relative;
	z-index: 10;
	background: var(--h-bg-primary);
	margin-top: 2rem;
}

.footer-top-border {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--h-gold), transparent);
}

.footer-inner {
	max-width: var(--h-container);
	margin: 0 auto;
	padding: 4rem 1.5rem 2rem;
}

.footer-4col {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 2.5rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-family: var(--h-font-accent);
	font-size: 1.3rem;
}

.footer-logo .logo-icon {
	color: var(--h-gold);
	font-size: 1.5rem;
}

.footer-logo .logo-text {
	color: var(--h-text-primary);
	font-weight: 600;
}

.footer-tagline {
	font-family: var(--h-font-display);
	font-style: italic;
	color: var(--h-gold);
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

.footer-description {
	color: var(--h-text-secondary);
	font-size: 0.85rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.footer-social {
	display: flex;
	gap: 0.6rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(212, 168, 83, 0.3);
	background: transparent;
	color: var(--h-text-secondary);
	transition: all var(--h-transition);
}

.social-link:hover {
	background: var(--h-gold);
	border-color: var(--h-gold);
	color: var(--h-bg-primary);
	transform: translateY(-2px);
}

.footer-col h4 {
	font-family: var(--h-font-accent);
	font-size: 0.85rem;
	color: var(--h-text-primary);
	margin-bottom: 1.25rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.footer-menu {
	list-style: none;
}

.footer-menu li {
	margin-bottom: 0.6rem;
}

.footer-menu a {
	color: var(--h-text-secondary);
	font-size: 0.9rem;
	transition: all var(--h-transition);
}

.footer-menu a:hover {
	color: var(--h-gold);
	padding-left: 5px;
}

.newsletter-desc {
	color: var(--h-text-secondary);
	font-size: 0.85rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.newsletter-form input {
	padding: 0.75rem 1rem;
	background: var(--h-bg-card);
	border: 1px solid var(--h-border);
	border-radius: 50px;
	color: var(--h-text-primary);
	font-family: var(--h-font-body);
	font-size: 0.85rem;
	outline: none;
	transition: border-color var(--h-transition);
}

.newsletter-form input:focus {
	border-color: var(--h-gold);
}

.newsletter-form input::placeholder {
	color: var(--h-text-muted);
}

.newsletter-form .btn-primary {
	padding: 0.75rem 1.5rem;
	font-size: 0.75rem;
}

.footer-bottom {
	border-top: 1px solid var(--h-border);
	padding: 1.25rem 1.5rem;
}

.footer-bottom-inner {
	max-width: var(--h-container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom p {
	color: var(--h-text-muted);
	font-size: 0.75rem;
}

.footer-bottom-links {
	display: flex;
	gap: 0.5rem;
	font-size: 0.75rem;
}

.footer-bottom-links a {
	color: var(--h-text-muted);
}

.footer-bottom-links a:hover {
	color: var(--h-gold);
}

.footer-bottom-links span {
	color: var(--h-text-muted);
}

.footer-payment-icons {
	display: flex;
	gap: 0.5rem;
}

.pay-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem 0.6rem;
	border: 1px solid var(--h-border);
	border-radius: 4px;
	font-size: 0.65rem;
	color: var(--h-text-muted);
	background: rgba(26, 21, 48, 0.5);
	font-family: var(--h-font-body);
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion {
	max-width: 750px;
	margin: 2rem auto;
}

.faq-item {
	border-bottom: 1px solid var(--h-border);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 0;
	background: none;
	border: none;
	color: var(--h-text-primary);
	font-family: var(--h-font-heading);
	font-size: 1.05rem;
	cursor: pointer;
	text-align: left;
	transition: color var(--h-transition);
}

.faq-question:hover {
	color: var(--h-gold);
}

.faq-icon {
	font-size: 1.3rem;
	color: var(--h-gold);
	transition: transform var(--h-transition);
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-bottom: 1.25rem;
}

.faq-answer p {
	color: var(--h-text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* ---------- Homepage Newsletter Section ---------- */
.holystic-newsletter-section {
	padding: 4rem 0;
}

.newsletter-section-inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-section-inner h2 {
	font-family: var(--h-font-heading);
	font-size: 2rem;
	color: var(--h-text-primary);
	margin-bottom: 0.75rem;
}

.newsletter-section-inner > p {
	color: var(--h-text-secondary);
	margin-bottom: 2rem;
	font-size: 1rem;
}

.newsletter-section-form {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin: 0 auto;
}

.newsletter-section-form input {
	flex: 1;
	padding: 0.85rem 1.25rem;
	background: var(--h-bg-card);
	border: 1px solid var(--h-border);
	border-radius: 50px;
	color: var(--h-text-primary);
	font-family: var(--h-font-body);
	font-size: 0.9rem;
	outline: none;
	transition: border-color var(--h-transition);
}

.newsletter-section-form input:focus {
	border-color: var(--h-gold);
}

.newsletter-section-form input::placeholder {
	color: var(--h-text-muted);
}

/* ---------- Holystic Main ---------- */
.holystic-main {
	position: relative;
	z-index: 5;
}



/* ---------- Responsive ---------- */
@media (max-width: 992px) {
	.header-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.header-nav.mobile-active {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(10, 8, 18, 0.98);
		backdrop-filter: blur(30px);
		z-index: 1500;
		padding: 6rem 2rem 2rem;
		align-items: center;
		justify-content: center;
	}

	.header-nav.mobile-active .nav-menu {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.header-nav.mobile-active .nav-menu li a {
		font-family: var(--h-font-display);
		font-size: 1.6rem;
		padding: 0.75rem 2rem;
		letter-spacing: 1px;
	}

	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-large {
		grid-row: auto;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.footer-4col,
	.footer-columns {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.pinterest-inner {
		flex-direction: column;
		text-align: center;
	}

	.pinterest-visual {
		justify-content: center;
	}

	.holystic-blog-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.categories-row {
		gap: 0.75rem;
	}

	.category-item {
		min-width: 80px;
		padding: 1rem 0.75rem;
	}

	.hero-content {
		padding: 1.5rem;
	}

	.holystic-hero {
		min-height: 70vh;
	}

	.bento-content {
		padding: 1.5rem;
	}

	.pinterest-inner {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.categories-row {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-cta {
		padding: 0.85rem 1.75rem;
		font-size: 0.9rem;
	}

	.newsletter-form {
		flex-direction: column;
		gap: 0.75rem;
	}

	.footer-4col,
	.footer-columns {
		grid-template-columns: 1fr;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* ---------- Pagination ---------- */
.holystic-pagination {
	text-align: center;
	padding: 2rem 0;
}

.holystic-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin: 0 0.25rem;
	color: var(--h-text-secondary);
	border: 1px solid var(--h-border);
	transition: all var(--h-transition);
}

.holystic-pagination .page-numbers.current,
.holystic-pagination .page-numbers:hover {
	background: var(--h-purple);
	color: #fff;
	border-color: var(--h-purple);
}

/* ---------- WooCommerce Wrapper ---------- */
.holystic-wc-wrapper {
	padding: 2rem 0 4rem;
}
