/* =====================================================================
   HHC Child Theme — theme.css
   Neon Botanical / Premium Wellness Design System
   ===================================================================== */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
	--hhc-navy:             #021740;
	--hhc-purple:           #9430BF;
	--hhc-cyan:             #05F2F2;
	--hhc-teal:             #0596A6;
	--hhc-gold:             #F2A007;

	--hhc-bg-dark:          #021740;
	--hhc-surface-dark:     #06224f;
	--hhc-surface-soft:     #08355c;

	--hhc-text-on-dark:     #ffffff;
	--hhc-text-soft:        #D8F7FA;
	--hhc-text-muted:       #B8DCE3;
	--hhc-text-on-bright:   #021740;

	--hhc-border-light:     rgba(255,255,255,0.18);
	--hhc-border-cyan:      rgba(5,242,242,0.35);

	--hhc-primary:          #05F2F2;
	--hhc-secondary:        #9430BF;
	--hhc-accent:           #F2A007;

	--hhc-grad-neon:        linear-gradient(135deg,#9430BF 0%,#0596A6 45%,#05F2F2 100%);
	--hhc-grad-gold:        linear-gradient(135deg,#F2A007 0%,#05F2F2 100%);
	--hhc-grad-dark:        linear-gradient(180deg,#021740 0%,#06224f 50%,#021740 100%);
	--hhc-grad-hero:
		radial-gradient(circle at top left,rgba(148,48,191,0.45),transparent 35%),
		radial-gradient(circle at top right,rgba(5,242,242,0.35),transparent 35%),
		linear-gradient(135deg,#021740 0%,#06224f 55%,#0A2F4F 100%);

	--hhc-radius:           8px;
	--hhc-radius-lg:        14px;
	--hhc-shadow:           0 18px 45px rgba(5,242,242,0.12);
	--hhc-font-sans:        system-ui,-apple-system,'Segoe UI',Helvetica,Arial,sans-serif;
}

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

/* ── BASE ── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background-color: var(--hhc-bg-dark);
	color:            var(--hhc-text-on-dark);
	font-family:      var(--hhc-font-sans);
	font-size:        16px;
	line-height:      1.65;
	overflow-x:       hidden;
}

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

a {
	color: var(--hhc-cyan);
	text-decoration: none;
}
a:hover { color: var(--hhc-gold); text-decoration: underline; }
a:focus-visible {
	outline: 2px solid var(--hhc-cyan);
	outline-offset: 3px;
	border-radius: 3px;
}

/* ── ANNOUNCEMENT BAR ── */
.hhc-announcement-bar {
	background: var(--hhc-grad-neon);
	color: #fff;
	text-align: center;
	padding: 7px 16px;
	font-size: .88rem;
	font-weight: 600;
	letter-spacing: .05em;
	line-height: 1.5;
}
.hhc-announcement-bar a { color: var(--hhc-navy); font-weight: 700; text-decoration: none; }
.hhc-announcement-bar a:hover { text-decoration: underline; }

/* ── HEADER ── */
.site-header,
.ast-header-wrap,
#masthead {
	background: var(--hhc-bg-dark) !important;
	border-bottom: 1px solid var(--hhc-border-cyan);
}

/* Desktop nav links */
.ast-header-menu-enabled .main-header-menu > .menu-item > .menu-link,
.main-navigation a,
.ast-builder-menu .menu-item .menu-link {
	color: rgba(255,255,255,0.65) !important;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.ast-header-menu-enabled .main-header-menu > .menu-item > .menu-link:hover,
.ast-header-menu-enabled .main-header-menu > .menu-item.current-menu-item > .menu-link,
.main-navigation a:hover {
	color: var(--hhc-cyan) !important;
}

/* Logo */
.custom-logo { max-height: 50px; width: auto; }
.ast-site-title a { color: #fff; }
.ast-site-tagline { color: var(--hhc-text-muted); font-size: .78rem; }

/* Header right — Cloud 9 chip */
.hhc-c9-header-chip {
	display: inline-flex;
	align-items: center;
	background: var(--hhc-grad-neon);
	color: #fff !important;
	border-radius: 99px;
	padding: 5px 12px;
	font-size: .82rem;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: opacity .2s;
}
.hhc-c9-header-chip:hover { opacity: .85; }

/* Cart icon */
.ast-header-woo-cart .ast-cart-menu-wrap .count,
.woocommerce-mini-cart-item { background: var(--hhc-purple); color: #fff; border-radius: 50%; }

/* ── HERO SECTION ── */
.hhc-hero {
	background: var(--hhc-grad-hero);
	padding: 72px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hhc-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(5,242,242,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(5,242,242,0.04) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}
.hhc-hero__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hhc-hero__logo  {
	width: clamp(160px, 36vw, 240px);
	margin: 0 auto 24px;
	filter: drop-shadow(0 0 30px rgba(5,242,242,0.3));
}
.hhc-hero__eyebrow {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--hhc-cyan);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.hhc-hero__eyebrow::before,
.hhc-hero__eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--hhc-cyan);
	flex-shrink: 0;
}
.hhc-hero__heading {
	font-size: clamp(2rem, 7vw, 3.4rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.05;
	margin-bottom: 10px;
}
.hhc-hero__heading span {
	background: var(--hhc-grad-neon);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hhc-hero__divider {
	width: 60px; height: 3px;
	background: var(--hhc-grad-neon);
	border-radius: 99px;
	margin: 14px auto;
}
.hhc-hero__tagline { font-size: 1.1rem; color: var(--hhc-text-soft); margin-bottom: 6px; }
.hhc-hero__sub     { font-size: .94rem; color: var(--hhc-text-muted); max-width: 420px; margin: 0 auto 24px; line-height: 1.75; }
.hhc-hero__buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── SECTION SHARED ── */
.hhc-section {
	padding: 56px 20px;
}
.hhc-section--navy  { background: var(--hhc-bg-dark); }
.hhc-section--surf  { background: var(--hhc-surface-dark); }
.hhc-section--soft  { background: var(--hhc-surface-soft); }
.hhc-section--grad  { background: var(--hhc-grad-dark); }
.hhc-section--neon  { background: var(--hhc-grad-neon); }
.hhc-container      { max-width: 960px; margin: 0 auto; }
.hhc-section__eyebrow {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--hhc-cyan);
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hhc-section__eyebrow::before {
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	background: var(--hhc-cyan);
	flex-shrink: 0;
}
.hhc-section__heading {
	font-size: clamp(1.4rem, 4vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 5px;
}
.hhc-section__sub { font-size: .94rem; color: var(--hhc-text-muted); max-width: 520px; margin-bottom: 24px; }

/* ── BUTTONS ── */
.hhc-btn,
.button.hhc-btn,
a.hhc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 12px 24px;
	border-radius: var(--hhc-radius);
	font-size: .88rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none !important;
	transition: background .2s, color .2s, border-color .2s, transform .15s;
	line-height: 1;
	white-space: nowrap;
	min-height: 44px;
}
.hhc-btn--primary {
	background: var(--hhc-cyan);
	color:      var(--hhc-navy) !important;
	border-color: var(--hhc-cyan);
}
.hhc-btn--primary:hover {
	background:  var(--hhc-gold);
	border-color: var(--hhc-gold);
	color: var(--hhc-navy) !important;
}
.hhc-btn--secondary {
	background: var(--hhc-purple);
	color: #fff !important;
	border-color: var(--hhc-purple);
}
.hhc-btn--secondary:hover {
	background: var(--hhc-teal);
	border-color: var(--hhc-teal);
}
.hhc-btn--gold {
	background: var(--hhc-grad-gold);
	color: var(--hhc-navy) !important;
	border-color: transparent;
}
.hhc-btn--outline {
	background: transparent;
	color: var(--hhc-cyan) !important;
	border-color: var(--hhc-border-cyan);
}
.hhc-btn--outline:hover {
	border-color: var(--hhc-cyan);
	background: rgba(5,242,242,0.08);
}
.hhc-btn:focus-visible {
	outline: 2px solid var(--hhc-cyan);
	outline-offset: 3px;
}
.hhc-btn--sm { padding: 8px 16px; font-size: .78rem; }

/* ── CARDS ── */
.hhc-card {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	border: 1px solid var(--hhc-border-cyan);
	padding: 20px;
	transition: transform .2s, box-shadow .2s;
}
.hhc-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hhc-shadow);
}
.hhc-card--accent { border-top: 3px solid var(--hhc-cyan); }
.hhc-card--purple { border-top: 3px solid var(--hhc-purple); }
.hhc-card--gold   { border-top: 3px solid var(--hhc-gold); }
.hhc-card--teal   { border-top: 3px solid var(--hhc-teal); }

/* ── SERVICE CARDS ── */
.hhc-services { margin-top: -48px; position: relative; z-index: 2; padding: 0 20px 40px; background: var(--hhc-bg-dark); }
.hhc-services__panel {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 32px;
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.hhc-services__card {
	background: var(--hhc-surface-soft);
	border-radius: var(--hhc-radius);
	padding: 18px 16px;
	border: 1px solid var(--hhc-border-cyan);
	border-top: 3px solid var(--hhc-cyan);
}
.hhc-services__card:nth-child(2) { border-top-color: var(--hhc-purple); }
.hhc-services__card:nth-child(3) { border-top-color: var(--hhc-gold); }
.hhc-services__card:nth-child(4) { border-top-color: var(--hhc-teal); }
.hhc-services__icon {
	width: 38px; height: 38px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 12px;
	flex-shrink: 0;
	background: rgba(5,242,242,0.1);
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-services__icon svg { width: 20px; height: 20px; stroke: var(--hhc-cyan); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.hhc-services__card:nth-child(2) .hhc-services__icon { background: rgba(148,48,191,0.15); border-color: rgba(148,48,191,0.4); }
.hhc-services__card:nth-child(2) .hhc-services__icon svg { stroke: var(--hhc-purple); }
.hhc-services__card:nth-child(3) .hhc-services__icon { background: rgba(242,160,7,0.12); border-color: rgba(242,160,7,0.35); }
.hhc-services__card:nth-child(3) .hhc-services__icon svg { stroke: var(--hhc-gold); }
.hhc-services__card:nth-child(4) .hhc-services__icon { background: rgba(5,150,166,0.15); border-color: rgba(5,150,166,0.35); }
.hhc-services__card:nth-child(4) .hhc-services__icon svg { stroke: var(--hhc-teal); }
.hhc-services__title { font-size: .94rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hhc-services__desc  { font-size: .82rem; color: var(--hhc-text-muted); line-height: 1.65; }

/* ── CATEGORY GRID ── */
.hhc-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 8px;
}
.hhc-cat-tile {
	border-radius: var(--hhc-radius);
	aspect-ratio: 3 / 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 8px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--hhc-border-cyan);
	text-decoration: none;
	transition: border-color .2s;
}
.hhc-cat-tile:hover { border-color: var(--hhc-cyan); }
.hhc-cat-tile__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2,23,64,0.9) 0%, transparent 55%);
}
.hhc-cat-tile__name {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
	position: relative;
	z-index: 1;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── DEAL CARDS ── */
.hhc-deal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.hhc-deal-card {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 20px;
	border: 1px solid var(--hhc-border-cyan);
	border-left: 3px solid var(--hhc-cyan);
}
.hhc-deal-card--purple { border-left-color: var(--hhc-purple); }
.hhc-deal-card--gold   { border-left-color: var(--hhc-gold); }
.hhc-deal-card--teal   { border-left-color: var(--hhc-teal); }
.hhc-deal-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 99px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 9px;
	background: rgba(5,242,242,0.1);
	color: var(--hhc-cyan);
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-deal-title  { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.hhc-deal-desc   { font-size: .85rem; color: var(--hhc-text-muted); line-height: 1.65; margin-bottom: 10px; }
.hhc-deal-value  { font-size: 1.6rem; font-weight: 800; color: var(--hhc-gold); margin-bottom: 10px; }
.hhc-deal-expiry { font-size: .75rem; color: rgba(255,255,255,0.3); margin-top: 8px; }

/* ── CLOUD 9 TIER CARDS ── */
.hhc-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hhc-tier-card {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 22px;
	text-align: center;
	border: 1px solid var(--hhc-border-cyan);
	border-top: 3px solid var(--hhc-cyan);
}
.hhc-tier-card--cruising { border-top-color: var(--hhc-teal); }
.hhc-tier-card--cloud9   { border-top-color: var(--hhc-gold); }
.hhc-tier-icon {
	width: 84px; height: 84px;
	object-fit: contain;
	margin: 0 auto 12px;
	display: block;
}
.hhc-tier-name  { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.hhc-tier-mult  { font-size: .9rem; color: var(--hhc-gold); font-weight: 700; margin-bottom: 4px; }
.hhc-tier-spend { font-size: .8rem; color: var(--hhc-text-muted); margin-bottom: 14px; }
.hhc-tier-perks { list-style: none; padding: 0; margin: 0; text-align: left; }
.hhc-tier-perks li {
	font-size: .82rem;
	color: var(--hhc-text-soft);
	padding: 3px 0 3px 16px;
	position: relative;
}
.hhc-tier-perks li::before {
	content: '+';
	position: absolute;
	left: 0;
	color: var(--hhc-cyan);
	font-weight: 700;
}

/* ── CONTACT CARDS ── */
.hhc-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 640px; }
.hhc-contact-card {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 20px;
	text-align: center;
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-contact-number {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--hhc-cyan);
	margin-bottom: 4px;
}
.hhc-contact-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--hhc-gold);
	margin-bottom: 3px;
}
.hhc-contact-sub { font-size: .82rem; color: var(--hhc-text-muted); line-height: 1.6; }

/* ── HOURS TABLE ── */
.hhc-hours-row {
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
	background: var(--hhc-surface-dark);
	border-radius: 5px;
	border: 1px solid var(--hhc-border-cyan);
	font-size: .88rem;
	margin-bottom: 4px;
}
.hhc-hours-day   { color: var(--hhc-text-muted); }
.hhc-hours-time  { color: #fff; font-weight: 600; }

/* ── REVIEWS ── */
.hhc-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hhc-review-card {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 16px;
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-review-stars { color: var(--hhc-gold); font-size: 1rem; margin-bottom: 8px; }
.hhc-review-text  { font-size: .84rem; color: rgba(255,255,255,0.65); line-height: 1.75; font-style: italic; margin-bottom: 12px; }
.hhc-review-author { display: flex; align-items: center; gap: 8px; }
.hhc-review-avatar {
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--hhc-grad-neon);
	display: flex; align-items: center; justify-content: center;
	font-size: .82rem; font-weight: 800; color: var(--hhc-navy);
	flex-shrink: 0;
}
.hhc-review-name { font-size: .84rem; font-weight: 700; color: #fff; }
.hhc-review-on   { font-size: .75rem; color: var(--hhc-text-muted); }

/* ── FOOTER ── */
.site-footer,
.footer-widget-area,
.ast-footer-overlay {
	background: var(--hhc-bg-dark) !important;
	border-top: 1px solid var(--hhc-border-cyan);
	color: var(--hhc-text-muted) !important;
}
.ast-footer-copyright,
.site-info { color: var(--hhc-text-muted) !important; font-size: .8rem; }
.footer-widget-title { color: var(--hhc-cyan) !important; font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }

/* Age badge */
.hhc-age-badge {
	display: inline-block;
	background: var(--hhc-grad-neon);
	color: var(--hhc-navy);
	font-size: .72rem;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 99px;
}

/* ── FORMS ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
select,
textarea,
.input-text {
	background: var(--hhc-surface-soft) !important;
	border: 1px solid var(--hhc-border-cyan) !important;
	border-radius: var(--hhc-radius) !important;
	color: #fff !important;
	padding: 10px 12px !important;
	font-size: .94rem !important;
	width: 100%;
	transition: border-color .2s;
}
input:focus, textarea:focus, select:focus, .input-text:focus {
	outline: none !important;
	border-color: var(--hhc-cyan) !important;
	box-shadow: 0 0 0 3px rgba(5,242,242,0.12) !important;
}
label { color: var(--hhc-text-muted); font-size: .82rem; font-weight: 600; margin-bottom: 4px; display: block; }

/* ── CLOUD 9 DASHBOARD (rendered by plugin) ── */
.hhc-c9-dashboard-wrap { color: var(--hhc-text-on-dark); }
.hhc-c9-points-card {
	background: linear-gradient(135deg, #0d1f5c, #1a0935);
	border-radius: var(--hhc-radius-lg);
	padding: 20px;
	border: 1px solid var(--hhc-border-cyan);
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 14px;
}
.hhc-c9-tier-badge { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.hhc-c9-tier-label {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--hhc-cyan);
	margin-bottom: 3px;
}
.hhc-c9-balance { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hhc-c9-balance-unit { font-size: .85rem; color: var(--hhc-text-muted); }
.hhc-c9-balance-value { display: block; font-size: .82rem; color: var(--hhc-gold); margin-top: 3px; }

/* Progress bar */
.hhc-c9-progress-wrap {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius);
	padding: 14px;
	border: 1px solid var(--hhc-border-cyan);
	margin-bottom: 14px;
}
.hhc-c9-progress-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--hhc-text-muted); margin-bottom: 5px; }
.hhc-c9-progress-track {
	height: 8px;
	background: rgba(255,255,255,0.07);
	border-radius: 99px;
	overflow: hidden;
	margin-bottom: 6px;
}
.hhc-c9-progress-fill {
	height: 100%;
	background: var(--hhc-grad-neon);
	border-radius: 99px;
	transition: width .5s ease;
}
.hhc-c9-progress-msg { font-size: .82rem; color: var(--hhc-text-muted); }
.hhc-c9-progress-msg strong { color: #fff; }

/* Redemption grid */
.hhc-c9-redeem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.hhc-c9-redeem-tile {
	position: relative;
	background: var(--hhc-bg-dark);
	border: 1px solid var(--hhc-border-cyan);
	border-radius: var(--hhc-radius);
	padding: 14px;
	text-align: center;
}
.hhc-c9-redeem-tile--best { border-color: var(--hhc-gold); }
.hhc-c9-best-badge {
	position: absolute;
	top: -9px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hhc-gold);
	color: var(--hhc-navy);
	font-size: .68rem;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	white-space: nowrap;
}
.hhc-c9-redeem-pts      { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hhc-c9-redeem-pts span { font-size: .72rem; color: var(--hhc-text-muted); }
.hhc-c9-redeem-val  { font-size: 1.1rem; font-weight: 700; color: var(--hhc-gold); margin: 4px 0 3px; }
.hhc-c9-redeem-min  { font-size: .75rem; color: var(--hhc-text-muted); margin-bottom: 10px; }
.hhc-c9-btn-locked  { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); cursor: not-allowed; pointer-events: none; }

/* Points history */
.hhc-c9-history { width: 100%; border-collapse: collapse; font-size: .88rem; }
.hhc-c9-history th {
	text-align: left;
	padding: 6px 8px;
	font-size: .72rem;
	font-weight: 700;
	color: var(--hhc-text-muted);
	border-bottom: 1px solid var(--hhc-border-cyan);
	text-transform: uppercase;
	letter-spacing: .1em;
}
.hhc-c9-history td {
	padding: 8px;
	border-bottom: 1px solid rgba(255,255,255,0.04);
	color: var(--hhc-text-soft);
	vertical-align: middle;
}
.hhc-c9-earn    { color: #90ee90; font-weight: 700; }
.hhc-c9-redeem  { color: #f09595; }
.hhc-type-pill {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 99px;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
}
.hhc-type-earn   { background: rgba(5,242,242,0.1); color: var(--hhc-cyan); }
.hhc-type-bonus  { background: rgba(242,160,7,0.12); color: var(--hhc-gold); }
.hhc-type-redeem { background: rgba(148,48,191,0.15); color: var(--hhc-purple); }

/* Referral */
.hhc-c9-ref-box {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius);
	padding: 14px;
	border: 1px solid var(--hhc-border-cyan);
	margin-bottom: 14px;
}
.hhc-c9-ref-row { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.hhc-c9-ref-input {
	flex: 1;
	background: var(--hhc-bg-dark);
	border: 1px solid var(--hhc-border-cyan);
	border-radius: 5px;
	color: var(--hhc-text-muted);
	font-size: .82rem;
	padding: 7px 9px;
	font-family: monospace;
}

/* ── LOOP: product points ── */
.hhc-loop-pts {
	font-size: .78rem;
	color: var(--hhc-gold);
	margin-top: 4px;
}
.hhc-loop-pts span { font-weight: 700; }

/* ── SALE BADGE ── */
.hhc-sale-badge {
	position: absolute;
	top: 8px; left: 8px;
	background: var(--hhc-purple);
	color: #fff;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 4px;
	z-index: 2;
}

/* ── MY ACCOUNT NAVIGATION ── */
.woocommerce-MyAccount-navigation {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	border: 1px solid var(--hhc-border-cyan);
	padding: 12px;
	margin-bottom: 20px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 7px;
	font-size: .88rem;
	color: rgba(255,255,255,0.5) !important;
	text-decoration: none !important;
	transition: background .15s, color .15s;
	min-height: 44px;
}
.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
	background: rgba(5,242,242,0.07);
	color: var(--hhc-cyan) !important;
}

/* ── WC NOTICES ── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
	border-radius: var(--hhc-radius) !important;
	border: 1px solid var(--hhc-border-cyan) !important;
	background: var(--hhc-surface-dark) !important;
	color: var(--hhc-text-soft) !important;
}
.woocommerce-message { border-left: 4px solid var(--hhc-cyan) !important; }
.woocommerce-info    { border-left: 4px solid var(--hhc-teal) !important; }
.woocommerce-error   { border-left: 4px solid #f05a5a !important; }

/* ── STICKY ATC ── */
.hhc-sticky-atc {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	background: var(--hhc-surface-dark);
	border-top: 1px solid var(--hhc-border-cyan);
	padding: 12px 20px;
	z-index: 8888;
	transform: translateY(100%);
	transition: transform .35s ease;
}
.hhc-sticky-atc--visible { transform: translateY(0); }
.hhc-sticky-atc__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	max-width: 860px;
	margin: 0 auto;
}
.hhc-sticky-atc__title { font-size: .94rem; font-weight: 700; color: #fff; }
.hhc-sticky-atc__price { font-size: 1.1rem; font-weight: 800; color: var(--hhc-gold); }

/* =====================================================================
   v2.1.0 ADDITIONS — Custom chrome + page components
   ===================================================================== */

/* ── ACCESSIBILITY: skip link ── */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--hhc-cyan);
	color: var(--hhc-navy);
	padding: 10px 16px;
	font-weight: 700;
	z-index: 100000;
	border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ── CUSTOM HEADER CHROME ── */
.hhc-site-header {
	background: var(--hhc-navy);
	border-bottom: 1px solid var(--hhc-border-cyan);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow .25s ease, background-color .25s ease;
}
.hhc-site-header.hhc-header--scrolled {
	background: rgba(2, 23, 64, 0.92);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--hhc-border-cyan);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.hhc-site-header.hhc-header--scrolled .hhc-header-inner { padding-top: 8px; padding-bottom: 8px; }
.hhc-header-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	transition: padding .25s ease;
}
.hhc-header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.hhc-header-mark {
	width: 42px; height: 42px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: rgba(5,242,242,0.08);
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-header-mark img { width: 42px; height: 42px; object-fit: cover; display: block; }
.hhc-header-brand { display: flex; flex-direction: column; line-height: 1.25; }
.hhc-header-brand-name { color: #fff; font-size: .82rem; font-weight: 700; }
.hhc-header-brand-sub  { color: var(--hhc-cyan); font-size: .68rem; font-weight: 400; }

.hhc-desktop-nav .hhc-nav-list,
.hhc-desktop-nav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 18px;
	align-items: center;
}
.hhc-desktop-nav a {
	color: rgba(255,255,255,0.6);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 4px 0;
	border-bottom: 1.5px solid transparent;
	transition: color .15s, border-color .15s;
}
.hhc-desktop-nav a:hover,
.hhc-desktop-nav .current-menu-item > a,
.hhc-desktop-nav .current_page_item > a {
	color: var(--hhc-cyan);
	border-bottom-color: var(--hhc-cyan);
}

.hhc-header-right { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.hhc-header-icon {
	width: 34px; height: 34px;
	border-radius: 7px;
	background: rgba(5,242,242,0.08);
	border: 1px solid var(--hhc-border-cyan);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	position: relative;
	text-decoration: none;
	transition: background .2s;
}
.hhc-header-icon:hover { background: rgba(5,242,242,0.18); color: #fff; }
.hhc-cart-badge {
	position: absolute;
	top: -5px; right: -5px;
	min-width: 16px; height: 16px;
	padding: 0 3px;
	background: var(--hhc-purple);
	border-radius: 99px;
	font-size: .62rem;
	font-weight: 700;
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	border: 1.5px solid var(--hhc-navy);
}
.hhc-c9-chip-label { display: inline-flex; align-items: center; }
.hhc-mobile-menu-toggle { display: none; }

/* Mobile slide-down nav */
.hhc-mobile-nav {
	display: none;
	background: var(--hhc-surface-dark);
	border-top: 1px solid var(--hhc-border-cyan);
}
.hhc-mobile-nav.is-open { display: block; }
.hhc-mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.hhc-mobile-nav a {
	display: block;
	padding: 13px 22px;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hhc-mobile-nav a:hover { color: var(--hhc-cyan); }

/* ── CUSTOM FOOTER CHROME ── */
.hhc-footer {
	background: var(--hhc-navy);
	border-top: 1px solid var(--hhc-border-cyan);
	padding: 36px 0 16px;
}
.hhc-footer__inner { max-width: 1000px; }
.hhc-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 28px;
}
.hhc-footer__brand-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hhc-footer__tagline { font-size: .82rem; color: var(--hhc-text-muted); line-height: 1.7; margin-bottom: 10px; }
.hhc-footer__phone { font-size: .85rem; color: var(--hhc-cyan); font-weight: 600; text-decoration: none; }
.hhc-footer__col-heading {
	font-size: .72rem; font-weight: 700; letter-spacing: .2em;
	text-transform: uppercase; color: var(--hhc-cyan); margin-bottom: 10px;
}
.hhc-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.hhc-footer__links a { font-size: .82rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.hhc-footer__links a:hover { color: var(--hhc-cyan); }
.hhc-footer__bottom {
	border-top: 1px solid var(--hhc-border-cyan);
	margin-top: 22px;
	padding-top: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.hhc-footer__copy { font-size: .76rem; color: var(--hhc-text-muted); }

/* ── UTILITIES ── */
.hhc-section__head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hhc-section__head-row .hhc-section__heading { margin-bottom: 0; }
.hhc-center-row { text-align: center; margin-top: 18px; }
.hhc-mt-12 { margin-top: 12px; }
.hhc-mt-18 { margin-top: 18px; }
.hhc-mb-16 { margin-bottom: 16px; }
.hhc-mb-5  { margin-bottom: 5px; }
.hhc-lh-175 { line-height: 1.75; }
.hhc-justify-center { justify-content: center; }
.hhc-justify-start  { justify-content: flex-start; }
.hhc-text-center { text-align: center; }
.hhc-muted-line { color: var(--hhc-text-muted); font-size: .9rem; margin-bottom: 14px; text-align: center; }
.hhc-services__panel-title { font-size: 1.15rem; font-weight: 700; color: var(--hhc-text-soft); margin-bottom: 14px; }
.hhc-cat-tile__emoji { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); font-size: 1.6rem; }
.hhc-contact-grid--3 { grid-template-columns: repeat(3, 1fr); margin-left: auto; margin-right: auto; }
.hhc-entry-content { color: var(--hhc-text-soft); line-height: 1.75; }
.hhc-entry-content a { color: var(--hhc-cyan); }

/* ── PAGE HEADERS ── */
.hhc-page-pad { padding-top: 24px; padding-bottom: 40px; }
.hhc-page-head { text-align: center; padding: 14px 0 22px; }
.hhc-page-title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: #fff; margin: 6px 0; }
.hhc-page-title--sm { font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
.hhc-page-lead { font-size: .95rem; color: var(--hhc-text-muted); max-width: 460px; margin: 6px auto 0; line-height: 1.7; }

/* ── HOME: CLOUD 9 TEASER ── */
.hhc-c9-teaser-section {
	background: linear-gradient(135deg, #0d1f5c 0%, #1a0935 100%);
	border-top: 1px solid var(--hhc-border-cyan);
	border-bottom: 1px solid var(--hhc-border-cyan);
}
.hhc-c9-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.hhc-c9-teaser__lead { font-size: .95rem; color: var(--hhc-text-soft); line-height: 1.75; margin-bottom: 14px; }
.hhc-c9-teaser__list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.hhc-c9-teaser__list li { font-size: .9rem; color: var(--hhc-text-muted); display: flex; gap: 8px; align-items: center; }
.hhc-c9-teaser__list li span { color: var(--hhc-cyan); font-weight: 700; }
.hhc-c9-teaser__tiers { display: flex; flex-direction: column; gap: 10px; }
.hhc-c9-tier-row {
	display: flex; align-items: center; gap: 12px;
	background: rgba(5,242,242,0.05);
	border-radius: 10px;
	padding: 11px 14px;
	border: 1px solid var(--hhc-border-cyan);
	transition: background .2s;
}
.hhc-c9-tier-row:hover { background: rgba(5,242,242,0.1); }
.hhc-c9-tier-row__icon { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.hhc-c9-tier-row__name { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.hhc-c9-tier-row__range { font-size: .76rem; color: var(--hhc-text-muted); margin-top: 1px; }
.hhc-c9-tier-row__mult { font-size: 1.15rem; font-weight: 800; color: var(--hhc-gold); margin-left: auto; }

/* ── DEALS PAGE ── */
.hhc-deal-grid--full { grid-template-columns: repeat(3, 1fr); }
.hhc-deal-badge--cyan   { background: rgba(5,242,242,0.12); color: var(--hhc-cyan); border-color: var(--hhc-border-cyan); }
.hhc-deal-badge--purple { background: rgba(148,48,191,0.15); color: var(--hhc-purple); border-color: rgba(148,48,191,0.35); }
.hhc-deal-badge--gold   { background: rgba(242,160,7,0.12); color: var(--hhc-gold); border-color: rgba(242,160,7,0.35); }
.hhc-deal-badge--teal   { background: rgba(5,150,166,0.15); color: var(--hhc-teal); border-color: rgba(5,150,166,0.35); }
.hhc-deal-card--values { background: linear-gradient(135deg, #021740, #0d1f5c); }
.hhc-value-rows { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 14px; }
.hhc-value-row {
	display: flex; justify-content: space-between;
	background: rgba(5,242,242,0.06);
	border-radius: 6px;
	padding: 8px 11px;
	border: 1px solid var(--hhc-border-cyan);
	font-size: .9rem;
	color: var(--hhc-text-soft);
}
.hhc-value-row--best { background: rgba(242,160,7,0.08); border-color: rgba(242,160,7,0.3); }
.hhc-value-amt { font-weight: 700; color: var(--hhc-gold); }
.hhc-deals-cta {
	background: linear-gradient(135deg, #0d1f5c, #1a0935);
	border-radius: var(--hhc-radius-lg);
	padding: 24px;
	border: 1px solid var(--hhc-border-cyan);
	text-align: center;
	margin-top: 22px;
}
.hhc-deals-cta__title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hhc-deals-cta__sub { font-size: .88rem; color: var(--hhc-text-muted); margin-bottom: 14px; }

/* ── CLOUD 9 PAGE ── */
.hhc-c9-hero {
	background: linear-gradient(135deg, #0d1f5c, #1a0935);
	border-radius: var(--hhc-radius-lg);
	padding: 36px 24px;
	text-align: center;
	margin-bottom: 28px;
	border: 1px solid var(--hhc-border-cyan);
	position: relative;
	overflow: hidden;
}
.hhc-c9-hero__grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(5,242,242,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(5,242,242,0.05) 1px, transparent 1px);
	background-size: 30px 30px;
}
.hhc-c9-hero__inner { position: relative; z-index: 1; }
.hhc-c9-hero__icon { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 6px; display: block; filter: drop-shadow(0 0 22px rgba(5,242,242,0.3)); }
.hhc-c9-hero__title { font-size: clamp(1.7rem, 4.5vw, 2.4rem); font-weight: 800; color: #fff; margin: 4px 0; }
.hhc-c9-hero__lead { font-size: .95rem; color: var(--hhc-text-soft); max-width: 460px; margin: 0 auto 18px; line-height: 1.75; }

.hhc-c9-page .hhc-section__eyebrow { margin-top: 28px; }
.hhc-c9-page .hhc-tier-grid { margin-bottom: 8px; }

.hhc-panel {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 22px;
	border: 1px solid var(--hhc-border-cyan);
	margin-top: 22px;
}
.hhc-panel--grad { background: linear-gradient(135deg, #0d1f5c, #1a0935); }
.hhc-panel__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.hhc-panel__sub { font-size: .86rem; color: var(--hhc-text-muted); line-height: 1.7; margin-bottom: 16px; max-width: 580px; }

.hhc-earn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.hhc-earn-card {
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	background: var(--hhc-surface-soft);
	border-radius: 10px;
	padding: 16px;
	border: 1px solid var(--hhc-border-cyan);
	border-left: 3px solid var(--hhc-teal);
}
.hhc-earn-card--teal   { border-left-color: var(--hhc-teal); }
.hhc-earn-card--purple { border-left-color: var(--hhc-purple); }
.hhc-earn-card--cyan   { border-left-color: var(--hhc-cyan); }
.hhc-earn-card--gold   { border-left-color: var(--hhc-gold); }
.hhc-earn-card__title { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hhc-earn-card__desc { font-size: .8rem; color: var(--hhc-text-muted); line-height: 1.65; }
.hhc-earn-card__pts {
	flex-shrink: 0;
	font-size: .9rem;
	font-weight: 800;
	color: var(--hhc-gold);
	white-space: nowrap;
	text-align: right;
}

.hhc-bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hhc-bonus-card {
	background: var(--hhc-surface-soft);
	border-radius: 10px;
	padding: 16px;
	border: 1px solid var(--hhc-border-cyan);
	text-align: center;
}
.hhc-bonus-card__ic { font-size: 1.5rem; color: var(--hhc-cyan); margin-bottom: 6px; }
.hhc-bonus-card__pts { font-size: 1.15rem; font-weight: 800; color: var(--hhc-gold); margin-bottom: 2px; }
.hhc-bonus-card__lbl { font-size: .82rem; color: var(--hhc-text-muted); }

.hhc-ref-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hhc-ref-split__box {
	background: rgba(5,242,242,0.06);
	border-radius: 8px;
	padding: 12px;
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-ref-split__lbl { font-size: .72rem; color: var(--hhc-cyan); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.hhc-ref-split__val { font-size: .95rem; color: #fff; font-weight: 600; }

/* FAQ accordion */
.hhc-faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.hhc-faq-item {
	background: var(--hhc-surface-dark);
	border: 1px solid var(--hhc-border-cyan);
	border-left: 3px solid var(--hhc-teal);
	border-radius: 10px;
	overflow: hidden;
}
.hhc-faq-q {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 14px 16px;
	font-size: .92rem;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	list-style: none;
}
.hhc-faq-q::-webkit-details-marker { display: none; }
.hhc-faq-toggle { color: var(--hhc-cyan); font-size: 1.2rem; font-weight: 700; transition: transform .2s; flex-shrink: 0; }
.hhc-faq-item[open] .hhc-faq-toggle { transform: rotate(45deg); }
.hhc-faq-a { padding: 0 16px 16px; font-size: .85rem; color: var(--hhc-text-muted); line-height: 1.75; }
.hhc-faq-notice {
	margin-top: 28px;
	text-align: center;
	font-size: .82rem;
	font-weight: 600;
	color: var(--hhc-gold);
	background: rgba(242,160,7,0.08);
	border: 1px solid rgba(242,160,7,0.3);
	border-radius: 8px;
	padding: 12px;
}

/* ── CONTACT PAGE ── */
.hhc-contact-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hhc-contact-box {
	background: var(--hhc-surface-dark);
	border-radius: var(--hhc-radius-lg);
	padding: 20px;
	border: 1px solid var(--hhc-border-cyan);
}
.hhc-contact-box__head {
	font-size: .85rem; font-weight: 700; color: var(--hhc-cyan);
	letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
}
.hhc-hours-table { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.hhc-contact-note {
	background: rgba(148,48,191,0.15);
	border: 1px solid rgba(148,48,191,0.3);
	border-radius: 8px;
	padding: 11px;
	font-size: .82rem;
	color: var(--hhc-text-soft);
	line-height: 1.65;
}
.hhc-contact-note b { color: var(--hhc-cyan); }
.hhc-contact-area { margin-top: 12px; }
.hhc-contact-area__lbl { font-size: .72rem; color: var(--hhc-text-muted); margin-bottom: 3px; }
.hhc-contact-area__city { font-size: .92rem; color: #fff; font-weight: 600; }
.hhc-contact-area__sub { font-size: .76rem; color: var(--hhc-text-muted); }
.hhc-contact-form .hhc-field { margin-bottom: 11px; }
.hhc-field-lbl { display: block; font-size: .72rem; color: var(--hhc-text-muted); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 4px; }
.hhc-input {
	width: 100%;
	background: var(--hhc-surface-soft);
	border: 1px solid var(--hhc-border-cyan);
	border-radius: 6px;
	color: #fff;
	padding: 10px 12px;
	font-size: .9rem;
	font-family: inherit;
}
.hhc-input::placeholder { color: rgba(184,220,227,0.5); }
.hhc-input:focus { outline: none; border-color: var(--hhc-cyan); box-shadow: 0 0 0 3px rgba(5,242,242,0.18); }
.hhc-textarea { min-height: 96px; resize: vertical; }
.hhc-btn--block { width: 100%; justify-content: center; margin-top: 6px; }
.hhc-form-hint { font-size: .72rem; color: var(--hhc-text-muted); text-align: center; margin-top: 10px; line-height: 1.6; }

/* ── CURRENT PRODUCT DEALS SECTION ── */
.hhc-current-deals {
	background: linear-gradient(135deg, #061e44, #0a2a56);
	border: 1px solid rgba(5,242,242,0.2);
	border-radius: var(--hhc-radius-lg);
	padding: 28px 24px;
	margin-bottom: 28px;
}

.hhc-current-deals__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.hhc-current-deals__title {
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .04em;
}

/* Weekly schedule grid */
.hhc-cd-weekly-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}

.hhc-cd-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-top: 3px solid var(--hhc-teal);
	border-radius: var(--hhc-radius);
	padding: 16px 18px;
}

.hhc-cd-card--saturday { border-top-color: var(--hhc-purple); }
.hhc-cd-card--sunday   { border-top-color: var(--hhc-cyan); }
.hhc-cd-card--delivery { border-top-color: var(--hhc-gold); }

.hhc-cd-day-label {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.hhc-cd-day {
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--hhc-text-muted);
	margin-bottom: 2px;
}

.hhc-cd-promo { font-size: .95rem; font-weight: 800; color: var(--hhc-gold); }
.hhc-cd-card--saturday .hhc-cd-promo { color: #bf7ddf; }
.hhc-cd-card--sunday   .hhc-cd-promo { color: var(--hhc-cyan); }

.hhc-cd-body {
	font-size: .875rem;
	color: var(--hhc-text-soft);
	line-height: 1.7;
}
.hhc-cd-body a { color: var(--hhc-cyan); font-weight: 600; text-decoration: none; }
.hhc-cd-body a:hover { color: var(--hhc-gold); text-decoration: underline; }

/* Budget Sales / Managers Specials grid */
.hhc-cd-sales-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}

.hhc-cd-sales-block {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--hhc-radius);
	padding: 18px 20px;
}

.hhc-cd-sales-block--gold {
	background: rgba(242,160,7,0.05);
	border-color: rgba(242,160,7,0.25);
}

.hhc-cd-sales-title {
	font-size: .9rem;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hhc-cd-sales-icon { font-size: 1.05rem; }

.hhc-cd-sales-body {
	font-size: .855rem;
	color: var(--hhc-text-soft);
	line-height: 1.8;
}
.hhc-cd-sales-body a { color: var(--hhc-cyan); font-weight: 600; text-decoration: none; }
.hhc-cd-sales-body a:hover { color: var(--hhc-gold); text-decoration: underline; }

/* Styled list for deal items */
.hhc-cd-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hhc-cd-list li {
	padding: 6px 0 6px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	position: relative;
	font-size: .855rem;
	color: var(--hhc-text-soft);
}

.hhc-cd-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	top: 7px;
	color: var(--hhc-cyan);
	font-size: .68rem;
}

.hhc-cd-list li:last-child { border-bottom: 0; }
.hhc-cd-list li a { color: var(--hhc-cyan); font-weight: 600; text-decoration: none; }
.hhc-cd-list li a:hover { color: var(--hhc-gold); text-decoration: underline; }

/* Back in Stock / New strip */
.hhc-cd-new-stock {
	background: rgba(5,242,242,0.05);
	border: 1px solid rgba(5,242,242,0.2);
	border-radius: var(--hhc-radius);
	padding: 14px 18px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	flex-wrap: wrap;
}

.hhc-cd-new-header { flex-shrink: 0; }

.hhc-cd-new-body {
	font-size: .88rem;
	color: var(--hhc-text-soft);
	line-height: 1.7;
	flex: 1;
	min-width: 180px;
}
