/* =========================================================================
   Herbal Hair Care — Main Stylesheet
   Token system: colors set as CSS custom properties (also editable live
   via the Customizer — see inc/theme-settings.php -> hhc_customizer_css_vars)
   ========================================================================= */

:root {
	--hhc-deep-green: #1B4332;
	--hhc-leaf-green: #40916C;
	--hhc-light-green: #B7E4C7;
	--hhc-cream: #FFF8EC;
	--hhc-gold: #D4A24C;
	--hhc-ink: #16241C;
	--hhc-ink-soft: #47594E;
	--hhc-white: #FFFFFF;

	--hhc-font-display: 'Hind Siliguri', 'Poppins', sans-serif;
	--hhc-font-body: 'Hind Siliguri', 'Poppins', sans-serif;
	--hhc-font-accent: 'Poppins', 'Hind Siliguri', sans-serif;

	--hhc-radius: 18px;
	--hhc-radius-sm: 10px;
	--hhc-shadow: 0 20px 45px -20px rgba(27, 67, 50, 0.35);
	--hhc-shadow-soft: 0 10px 30px -12px rgba(27, 67, 50, 0.2);
	--hhc-container: 1180px;
}

/* -------------------------------------------------------------------------
   Reset / base
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
	margin: 0;
	font-family: var(--hhc-font-body);
	color: var(--hhc-ink);
	background: var(--hhc-cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--hhc-font-display); color: var(--hhc-deep-green); margin: 0 0 0.5em; line-height: 1.25; }
p { margin: 0 0 1em; color: var(--hhc-ink-soft); }
button { font-family: inherit; cursor: pointer; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.skip-link { top: -100px; left: 0; position: fixed; z-index: 10000; background: var(--hhc-deep-green); color: #fff; padding: 12px 20px; transition: top .2s; }
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--hhc-gold); outline-offset: 2px; }

.hhc-container { max-width: var(--hhc-container); margin: 0 auto; padding: 0 24px; }

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */
.hhc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--hhc-font-accent);
	font-weight: 600;
	font-size: 16px;
	padding: 14px 30px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
	white-space: nowrap;
}
.hhc-btn-primary { background: var(--hhc-deep-green); color: #fff; box-shadow: var(--hhc-shadow-soft); }
.hhc-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--hhc-shadow); background: var(--hhc-leaf-green); }
.hhc-btn-outline { background: transparent; border-color: var(--hhc-deep-green); color: var(--hhc-deep-green); }
.hhc-btn-outline:hover { background: var(--hhc-deep-green); color: #fff; transform: translateY(-2px); }
.hhc-btn-sm { padding: 10px 20px; font-size: 14px; }
.hhc-btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */
.hhc-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 248, 236, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(27, 67, 50, 0.08);
	transition: box-shadow .3s ease, background .3s ease;
}
.hhc-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(27,67,50,.25); background: rgba(255, 248, 236, 0.97); }
.hhc-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.hhc-logo-text { font-family: var(--hhc-font-display); font-weight: 700; font-size: 22px; color: var(--hhc-deep-green); }
.hhc-nav-menu { display: flex; gap: 26px; }
.hhc-nav-menu a { font-family: var(--hhc-font-accent); font-weight: 500; font-size: 15px; color: var(--hhc-ink); position: relative; padding: 6px 0; }
.hhc-nav-menu a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--hhc-gold); transition: width .25s ease; }
.hhc-nav-menu a:hover::after { width: 100%; }
.hhc-header-actions { display: flex; align-items: center; gap: 18px; }
.hhc-cart-icon { position: relative; color: var(--hhc-deep-green); }
.hhc-cart-count { position: absolute; top: -8px; right: -10px; background: var(--hhc-gold); color: #fff; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hhc-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hhc-menu-toggle span { width: 24px; height: 2px; background: var(--hhc-deep-green); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.hhc-hero { position: relative; padding: 70px 0 40px; overflow: hidden; background: radial-gradient(circle at 80% 10%, var(--hhc-light-green) 0%, transparent 55%), var(--hhc-cream); }
.hhc-hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hhc-hero-title { font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.01em; }
.hhc-hero-subtitle { font-size: 18px; max-width: 520px; }
.hhc-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.hhc-trust-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hhc-trust-badge { font-family: var(--hhc-font-accent); font-size: 13px; font-weight: 600; color: var(--hhc-deep-green); background: rgba(255,255,255,.6); border: 1px solid rgba(27,67,50,.15); padding: 8px 14px; border-radius: 999px; }

.hhc-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hhc-leaf { position: absolute; width: 46px; height: 46px; background: var(--hhc-leaf-green); border-radius: 0 100% 0 100%; opacity: .35; animation: hhc-float 7s ease-in-out infinite; }
.hhc-leaf-1 { top: 12%; left: 4%; animation-delay: 0s; }
.hhc-leaf-2 { top: 60%; left: 12%; width: 30px; height: 30px; animation-delay: 1.5s; }
.hhc-leaf-3 { top: 30%; left: 45%; width: 22px; height: 22px; animation-delay: 3s; opacity: .2; }
.hhc-particle { position: absolute; width: 8px; height: 8px; background: var(--hhc-gold); border-radius: 50%; opacity: .5; animation: hhc-drift 9s ease-in-out infinite; }
.hhc-particle-1 { top: 20%; right: 15%; }
.hhc-particle-2 { top: 55%; right: 30%; animation-delay: 2s; }
.hhc-particle-3 { top: 75%; right: 10%; animation-delay: 4s; }

@keyframes hhc-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-24px) rotate(8deg); } }
@keyframes hhc-drift { 0%, 100% { transform: translate(0,0); opacity: .5; } 50% { transform: translate(-14px,-22px); opacity: 1; } }

.hhc-hero-visual { position: relative; z-index: 1; }
.hhc-bottle-stage { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.hhc-glow-ring { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(183,228,199,.6), transparent 70%); z-index: -1; animation: hhc-pulse 5s ease-in-out infinite; }
@keyframes hhc-pulse { 0%, 100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.12); opacity: 1; } }

.hhc-bottle { position: absolute; max-height: 400px; filter: drop-shadow(0 30px 30px rgba(27,67,50,.35)); animation: hhc-rotate-float 6s ease-in-out infinite; }
.hhc-bottle-oil { left: 8%; transform-origin: bottom center; animation-delay: 0s; }
.hhc-bottle-shampoo { right: 8%; max-height: 360px; animation-delay: 1s; }
@keyframes hhc-rotate-float { 0%, 100% { transform: translateY(0) rotateY(-6deg); } 50% { transform: translateY(-18px) rotateY(6deg); } }

.hhc-bottle-placeholder { width: 150px; height: 340px; border-radius: 60px 60px 20px 20px; background: linear-gradient(160deg, var(--hhc-leaf-green), var(--hhc-deep-green)); box-shadow: inset 0 -10px 30px rgba(0,0,0,.2), 0 30px 30px rgba(27,67,50,.35); position: relative; animation: hhc-rotate-float 6s ease-in-out infinite; }
.hhc-bottle-placeholder::before { content: ''; position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 44px; height: 40px; background: var(--hhc-gold); border-radius: 8px; }
.hhc-bottle-oil.hhc-bottle-placeholder { position: absolute; left: 8%; }
.hhc-bottle-shampoo.hhc-bottle-placeholder { position: absolute; right: 8%; height: 300px; animation-delay: 1s; }

.hhc-hero-scroll-cue { display: flex; justify-content: center; margin-top: 40px; }
.hhc-hero-scroll-cue span { width: 26px; height: 42px; border: 2px solid var(--hhc-deep-green); border-radius: 20px; position: relative; opacity: .5; }
.hhc-hero-scroll-cue span::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--hhc-deep-green); border-radius: 4px; animation: hhc-scroll-dot 1.8s ease-in-out infinite; }
@keyframes hhc-scroll-dot { 0% { top: 6px; opacity: 1; } 80% { top: 22px; opacity: 0; } 100% { top: 6px; opacity: 0; } }

/* -------------------------------------------------------------------------
   Section shell / reveal
   ---------------------------------------------------------------------- */
.hhc-section { padding: 90px 0; }
.hhc-section:nth-of-type(even) { background: var(--hhc-white); }
.hhc-section-head { max-width: 620px; margin: 0 auto 50px; text-align: center; }
.hhc-eyebrow { display: inline-block; font-family: var(--hhc-font-accent); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--hhc-gold); margin-bottom: 10px; }
.hhc-section-head h2 { font-size: clamp(26px, 3vw, 38px); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.hhc-notice, .hhc-admin-hint { text-align: center; color: var(--hhc-ink-soft); background: var(--hhc-light-green); padding: 14px 20px; border-radius: var(--hhc-radius-sm); }

/* -------------------------------------------------------------------------
   About
   ---------------------------------------------------------------------- */
.hhc-about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hhc-about-card { background: var(--hhc-white); border-radius: var(--hhc-radius); padding: 30px 24px; text-align: center; box-shadow: var(--hhc-shadow-soft); transition: transform .3s ease; }
.hhc-about-card:hover { transform: translateY(-6px); }
.hhc-about-icon { font-size: 34px; margin-bottom: 14px; }
.hhc-about-card h3 { font-size: 18px; }
.hhc-about-card p { font-size: 14px; margin: 0; }

/* -------------------------------------------------------------------------
   Product showcase
   ---------------------------------------------------------------------- */
.hhc-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hhc-product-image-stage { background: linear-gradient(160deg, var(--hhc-light-green), var(--hhc-cream)); border-radius: var(--hhc-radius); padding: 40px; display: flex; align-items: center; justify-content: center; }
.hhc-product-image-stage img { animation: hhc-float 6s ease-in-out infinite; }
.hhc-price-regular { text-decoration: line-through; color: var(--hhc-ink-soft); margin-right: 10px; font-size: 16px; }
.hhc-price-sale { font-size: 28px; font-weight: 700; color: var(--hhc-deep-green); font-family: var(--hhc-font-accent); }
.hhc-product-price .hhc-price-regular:only-child { text-decoration: none; font-size: 28px; font-weight: 700; color: var(--hhc-deep-green); }
.hhc-discount-badge { background: var(--hhc-gold); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-left: 10px; vertical-align: middle; }
.hhc-subheading { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--hhc-leaf-green); margin: 20px 0 10px; }
.hhc-check-list li { position: relative; padding-left: 26px; margin-bottom: 8px; color: var(--hhc-ink-soft); }
.hhc-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--hhc-leaf-green); font-weight: 700; }
.hhc-ingredient-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hhc-tag { background: var(--hhc-light-green); color: var(--hhc-deep-green); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }

.hhc-qty-selector { display: inline-flex; align-items: center; border: 1px solid rgba(27,67,50,.2); border-radius: 999px; overflow: hidden; margin: 20px 0 16px; }
.hhc-qty-selector button { background: var(--hhc-cream); border: none; width: 36px; height: 36px; font-size: 18px; color: var(--hhc-deep-green); }
.hhc-qty-input { width: 46px; text-align: center; border: none; font-size: 16px; -moz-appearance: textfield; }
.hhc-qty-input::-webkit-outer-spin-button, .hhc-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hhc-product-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hhc-form-msg { margin-top: 10px; font-size: 14px; font-weight: 600; min-height: 1em; }
.hhc-form-msg.is-success { color: var(--hhc-leaf-green); }
.hhc-form-msg.is-error { color: #b3261e; }

/* -------------------------------------------------------------------------
   Comparison
   ---------------------------------------------------------------------- */
.hhc-compare-table { display: grid; grid-template-columns: 180px repeat(2, 1fr); background: var(--hhc-white); border-radius: var(--hhc-radius); overflow: hidden; box-shadow: var(--hhc-shadow-soft); }
.hhc-compare-col { padding: 20px; border-bottom: 1px solid rgba(27,67,50,.08); display: flex; align-items: center; }
.hhc-compare-head { flex-direction: column; text-align: center; background: var(--hhc-light-green); }
.hhc-compare-head img { width: 60px; margin-bottom: 8px; }
.hhc-compare-label { font-weight: 600; color: var(--hhc-deep-green); background: var(--hhc-cream); }

/* -------------------------------------------------------------------------
   Combo
   ---------------------------------------------------------------------- */
.hhc-combo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.hhc-combo-card { position: relative; background: var(--hhc-white); border: 2px solid var(--hhc-gold); border-radius: var(--hhc-radius); padding: 30px; text-align: center; box-shadow: var(--hhc-shadow-soft); }
.hhc-combo-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--hhc-gold); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; }
.hhc-combo-image img { max-height: 200px; margin: 0 auto 16px; }
.hhc-combo-includes { margin-bottom: 16px; }
.hhc-combo-includes li { font-size: 14px; color: var(--hhc-ink-soft); }
.hhc-combo-includes li::before { content: '+ '; color: var(--hhc-leaf-green); font-weight: 700; }
.hhc-savings { display: block; font-size: 13px; color: var(--hhc-leaf-green); font-weight: 700; margin-top: 4px; }
.hhc-combo-card .hhc-product-buttons { justify-content: center; }

/* -------------------------------------------------------------------------
   Benefits
   ---------------------------------------------------------------------- */
.hhc-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hhc-benefit-card { background: var(--hhc-cream); border-radius: var(--hhc-radius); padding: 28px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.hhc-benefit-card:hover { transform: translateY(-6px); box-shadow: var(--hhc-shadow-soft); }
.hhc-benefit-icon { font-size: 32px; margin-bottom: 12px; }
.hhc-benefit-card h3 { font-size: 17px; }
.hhc-benefit-card p { font-size: 14px; margin: 0; }

/* -------------------------------------------------------------------------
   Ingredients
   ---------------------------------------------------------------------- */
.hhc-ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.hhc-ingredient-card { background: var(--hhc-white); border-radius: var(--hhc-radius); padding: 22px; text-align: center; box-shadow: var(--hhc-shadow-soft); }
.hhc-ingredient-img { width: 70px; height: 70px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; background: var(--hhc-light-green); }
.hhc-ingredient-card h3 { font-size: 16px; }
.hhc-ingredient-card p { font-size: 13px; margin: 0; }

/* -------------------------------------------------------------------------
   How to use
   ---------------------------------------------------------------------- */
.hhc-usage-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.hhc-usage-block { background: var(--hhc-white); border-radius: var(--hhc-radius); padding: 32px; box-shadow: var(--hhc-shadow-soft); }
.hhc-step-list li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.hhc-step-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--hhc-leaf-green); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--hhc-font-accent); }

/* -------------------------------------------------------------------------
   Reviews
   ---------------------------------------------------------------------- */
.hhc-reviews-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: thin; }
.hhc-review-card { flex: 0 0 320px; scroll-snap-align: start; background: var(--hhc-white); border-radius: var(--hhc-radius); padding: 28px; box-shadow: var(--hhc-shadow-soft); }
.hhc-review-stars { color: var(--hhc-gold); letter-spacing: 2px; margin-bottom: 10px; }
.hhc-review-text { font-style: italic; }
.hhc-review-author { display: flex; align-items: center; gap: 12px; }
.hhc-review-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.hhc-review-name { font-weight: 600; color: var(--hhc-deep-green); font-family: var(--hhc-font-accent); }
.hhc-review-nav { display: flex; justify-content: center; gap: 14px; margin-top: 24px; }
.hhc-review-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hhc-deep-green); background: transparent; color: var(--hhc-deep-green); font-size: 18px; }
.hhc-review-nav button:hover { background: var(--hhc-deep-green); color: #fff; }

/* -------------------------------------------------------------------------
   Journey
   ---------------------------------------------------------------------- */
.hhc-journey-steps { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.hhc-journey-step { text-align: center; max-width: 200px; }
.hhc-journey-dot { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--hhc-deep-green); color: #fff; font-family: var(--hhc-font-accent); font-weight: 700; margin: 0 auto 12px; }
.hhc-journey-disclaimer { text-align: center; font-size: 12px; color: var(--hhc-ink-soft); margin-top: 30px; }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.hhc-faq-narrow { max-width: 780px; }
.hhc-faq-item { border-bottom: 1px solid rgba(27,67,50,.12); }
.hhc-faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; text-align: left; padding: 20px 0; font-family: var(--hhc-font-accent); font-weight: 600; font-size: 16px; color: var(--hhc-deep-green); }
.hhc-faq-icon { transition: transform .25s ease; font-size: 20px; }
.hhc-faq-question[aria-expanded="true"] .hhc-faq-icon { transform: rotate(45deg); }
.hhc-faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.hhc-faq-answer p { padding-top: 0; }
.hhc-faq-item.is-open .hhc-faq-answer { max-height: 300px; padding-bottom: 18px; }

/* -------------------------------------------------------------------------
   Order + tracking
   ---------------------------------------------------------------------- */
.hhc-order-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.hhc-order-summary-card, .hhc-order-tracking-card { background: var(--hhc-white); border-radius: var(--hhc-radius); padding: 34px; box-shadow: var(--hhc-shadow-soft); }
.hhc-mini-cart-item { display: flex; justify-content: space-between; font-size: 14px; padding: 10px 0; border-bottom: 1px dashed rgba(27,67,50,.15); }
.hhc-mini-cart-total { display: flex; justify-content: space-between; padding: 16px 0; font-size: 17px; }
.hhc-payment-methods-preview { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(27,67,50,.1); font-size: 14px; }
#hhc-track-order-form { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
#hhc-track-order-form label { font-size: 13px; font-weight: 600; color: var(--hhc-deep-green); margin-top: 8px; }
#hhc-track-order-form input { padding: 12px 14px; border-radius: var(--hhc-radius-sm); border: 1px solid rgba(27,67,50,.2); font-size: 15px; }
#hhc-track-order-form button { margin-top: 14px; }
.hhc-track-result { margin-top: 20px; font-size: 14px; }
.hhc-track-result.has-result { padding: 16px; border-radius: var(--hhc-radius-sm); background: var(--hhc-light-green); }

/* -------------------------------------------------------------------------
   bKash checkout box
   ---------------------------------------------------------------------- */
.hhc-bkash-box { background: var(--hhc-cream); border-radius: var(--hhc-radius-sm); padding: 18px; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.hhc-footer { background: var(--hhc-deep-green); color: rgba(255,255,255,.85); padding: 60px 0 0; }
.hhc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.hhc-footer h4 { color: #fff; font-size: 16px; }
.hhc-footer a { color: rgba(255,255,255,.75); }
.hhc-footer a:hover { color: var(--hhc-gold); }
.hhc-social-links { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.hhc-footer-menu li { margin-bottom: 10px; }
.hhc-footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 18px 0; text-align: center; font-size: 13px; }

/* -------------------------------------------------------------------------
   WhatsApp float
   ---------------------------------------------------------------------- */
.hhc-whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,.25); z-index: 998; animation: hhc-wa-pulse 2.4s ease-in-out infinite; }
@keyframes hhc-wa-pulse { 0%, 100% { box-shadow: 0 10px 24px rgba(0,0,0,.25); } 50% { box-shadow: 0 10px 24px rgba(37,211,102,.55); } }

/* -------------------------------------------------------------------------
   Generic pages (blog / page.php)
   ---------------------------------------------------------------------- */
.hhc-generic-page { padding: 60px 24px; max-width: 800px; }
.hhc-post-card { margin-bottom: 40px; }
.hhc-page-title { font-size: 32px; }
