/* HaChayal — component styles (header, footer, cards, floating contact).
   Depends on tokens defined in style.css (:root --hc-*). No external deps. */

/* ---------------- Header (3 tiers: utility · main bar · mega nav) ---------------- */
.hc-site-header{
	background:var(--hc-paper);
	position:sticky;top:0;z-index:200;
	box-shadow:var(--hc-shadow-sm);
}

/* Tier 1 — utility bar (navy strip) */
.hc-utility{background:var(--hc-navy-dark);color:#cfd9e3;font-size:.82rem}
.hc-topbar__inner{
	max-width:var(--hc-wide,1400px);margin-inline:auto;
	padding:.35rem 20px;display:flex;align-items:center;justify-content:space-between;
	gap:.5rem 1.25rem;flex-wrap:wrap;
}
.hc-topbar__links{display:flex;gap:1.1rem;flex-wrap:wrap}
.hc-topbar__links a{color:#dbe4ec;text-decoration:none;font-weight:600}
.hc-topbar__links a:hover{color:#fff;text-decoration:underline}
.hc-topbar__contact{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.hc-topbar__ship{color:#aebccb;font-weight:600}
.hc-topbar__tel{color:#fff;font-weight:700;text-decoration:none;letter-spacing:.01em}
.hc-topbar__tel:hover{color:var(--hc-accent)}
.hc-topbar__wa{display:inline-flex;align-items:center;gap:.3rem;color:#08331b;background:#25D366;padding:.12rem .65rem;border-radius:999px;font-weight:700;text-decoration:none}
.hc-topbar__wa:hover{background:#1eb457;color:#08331b}

/* Tier 2 — main bar (brand · search · actions) */
.hc-header-bar{
	max-width:var(--hc-wide,1400px);margin-inline:auto;
	padding:.3rem 20px;display:flex;align-items:center;gap:1rem 1.25rem;flex-wrap:wrap;
}
/* Kill WP flow-layout's default block-gap (24px margin-block) between the flex children,
   which was inflating the row height and leaving empty bands above/below the logo. */
.hc-header-bar > *{margin-block:0}
.hc-brand{gap:.6rem;align-items:center;flex:0 0 auto}
.hc-brand .wp-block-site-logo{margin:0;line-height:0}
.hc-brand .wp-block-site-logo img{height:56px;width:auto;display:block}

/* Search (product search — the biggest missing piece of the old header).
   Capped + centered between logo (start) and actions (end) so it doesn't
   stretch across the whole bar. margin-inline:auto does the centering. */
.hc-search{
	flex:0 1 min(560px,100%);margin-inline:auto;
	display:flex;align-items:center;min-width:0;gap:.4rem;
	background:var(--hc-mist);border:1.5px solid var(--hc-line);border-radius:999px;
	padding:.1rem .1rem .1rem .9rem;
	transition:border-color .15s ease,box-shadow .15s ease,background .15s ease;
}
.hc-search:focus-within{background:#fff;border-color:var(--hc-accent);box-shadow:0 0 0 3px rgba(224,123,26,.16)}
.hc-search__ico{color:var(--hc-muted);flex:0 0 auto;display:inline-flex}
.hc-search__input{
	flex:1 1 auto;min-width:0;border:0;background:transparent;
	font-family:inherit;font-size:.95rem;color:var(--hc-ink);padding:.5rem .35rem;outline:none;
}
.hc-search__input::placeholder{color:var(--hc-muted)}
.hc-search__btn{
	flex:0 0 auto;border:0;cursor:pointer;font-family:inherit;
	background:var(--hc-cta);color:#fff;font-weight:700;font-size:.95rem;
	padding:.55rem 1.15rem;border-radius:999px;transition:background .15s ease;
}
.hc-search__btn:hover{background:var(--hc-cta-dark)}

/* A11y: core block buttons (core/search "חפשו", core/button) inherit the bright
   theme.json accent (#E07B1A) — white text on it is only 2.99:1 (FAIL). Use the
   darker --hc-cta (#B45309 = 5.02:1) that the custom header search button already
   uses, so all buttons match and pass AA. Two classes → beats the :where() rule. */
.wp-block-search__button.wp-element-button,
.wp-block-button__link.wp-element-button{background-color:var(--hc-cta)}
.wp-block-search__button.wp-element-button:hover,
.wp-block-button__link.wp-element-button:hover{background-color:var(--hc-cta-dark)}

/* Cart + account icon links (custom, accessible — replaces WC mini-cart drawer) */
.hc-header-actions{gap:.4rem;align-items:center;flex:0 0 auto}
.hc-header-icons{display:flex;align-items:center;gap:.35rem}
.hc-icon-link{position:relative;display:inline-flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;color:var(--hc-navy);padding:.35rem .55rem;border-radius:var(--hc-radius-sm);text-decoration:none;line-height:1}
.hc-icon-link__ico{position:relative;display:inline-flex;line-height:0}
.hc-icon-link__label{font-size:.72rem;font-weight:700}
.hc-icon-link:hover{color:var(--hc-cta-dark);background:var(--hc-mist)}
.hc-cart-count{position:absolute;inset-block-start:-8px;inset-inline-start:-10px;min-width:18px;height:18px;padding:0 4px;border-radius:999px;background:var(--hc-cta);color:#fff;font-size:.72rem;font-weight:700;display:flex;align-items:center;justify-content:center;line-height:1}
.hc-cart-count.is-empty{display:none}

/* Main bar reflow on mobile: brand + actions on line 1, search full-width on line 2.
   Utility bar is hidden here (its links live in the off-canvas menu) to keep the sticky header short. */
@media (max-width:900px){
	.hc-utility{display:none}
	.hc-header-bar{padding:.55rem 16px;gap:.55rem .75rem;justify-content:space-between}
	.hc-brand{order:1}
	.hc-brand .wp-block-site-logo img{height:46px}
	.hc-header-actions{order:2;margin-inline-start:0}
	.hc-search{order:3;flex-basis:100%}
}

/* ---------------- Cards (posts/products grid) ---------------- */
.hc-card{
	background:var(--hc-paper);border:1px solid var(--hc-line);
	border-radius:var(--hc-radius);overflow:hidden;padding:0 0 1rem;
	transition:box-shadow .15s ease, transform .15s ease;height:100%;
}
.hc-card:hover{box-shadow:var(--hc-shadow);transform:translateY(-2px)}
.hc-card img{width:100%;object-fit:cover}
.hc-card .wp-block-post-title{padding:1rem 1rem 0;font-weight:700;line-height:1.25}
.hc-card .wp-block-post-title a{color:var(--hc-navy);text-decoration:none}
.hc-card .wp-block-post-excerpt{padding:.25rem 1rem 0;color:var(--hc-muted)}

/* ---------------- Footer (SEO-rich: trust strip · identity + link grid · legal) ---------------- */
.hc-site-footer{background:var(--hc-navy-dark);color:#cdd7e1;margin-top:3rem}
.hc-footer-inner{max-width:var(--hc-wide,1400px);margin-inline:auto;padding:2.5rem 20px 1.5rem}
.hc-site-footer h3{color:#fff;margin:0}
.hc-site-footer a{color:#dfe7ef;text-decoration:none;transition:color .12s ease}
.hc-site-footer a:hover{color:var(--hc-accent);text-decoration:underline;text-underline-offset:2px}

/* Trust strip — one full-width band of 4 evenly-spaced USPs across the top */
.hc-footer-trust{
	list-style:none;margin:0 0 2.25rem;padding:0 0 2.25rem;
	border-bottom:1px solid rgba(255,255,255,.1);
	display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.25rem 1.75rem;
}
.hc-footer-trust__item{display:flex;align-items:center;gap:.7rem;justify-content:center}
.hc-footer-trust__ico{font-size:1.5rem;line-height:1;flex:0 0 auto}
.hc-footer-trust__txt{display:flex;flex-direction:column;line-height:1.3}
.hc-footer-trust__txt strong{color:#fff;font-size:.95rem}
.hc-footer-trust__txt small{color:#9fb0c0;font-size:.8rem}

/* Main band — identity column (right, wide) beside the link-column grid */
.hc-footer-main{
	display:grid;grid-template-columns:minmax(260px,1.5fr) minmax(0,3.5fr);
	gap:2.5rem 3.5rem;align-items:start;
}
.hc-footer-brand{min-width:0}
.hc-footer-brand__name{
	display:inline-block;color:#fff;font-weight:700;font-size:1.6rem;line-height:1;
	letter-spacing:.01em;margin-bottom:.8rem;
}
.hc-footer-brand__name:hover{color:var(--hc-accent);text-decoration:none}
.hc-footer-brand__about{color:#aebccb;margin:0 0 1.25rem;max-width:46ch;line-height:1.65;font-size:.9rem}
.hc-footer-contact{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.65rem}
.hc-footer-contact li{display:flex;align-items:flex-start;gap:.6rem;color:#c7d2dd;font-size:.92rem}
.hc-footer-ico{flex:0 0 auto;color:var(--hc-accent);margin-top:.15rem}
.hc-footer-contact a{color:#eaf0f6}
.hc-footer-wa{line-height:1.6}
.hc-footer-wa__label{color:#9fb0c0}
.hc-footer-wa a{white-space:nowrap}

/* Link-column grid: 4 columns → 8 groups fill an even 4×2 grid (no orphan row) */
.hc-footer-cols{
	display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
	gap:1.9rem 1.5rem;
}
.hc-footer-col{min-width:0}
.hc-footer-col__title{font-size:.9rem;font-weight:700;margin-bottom:.85rem}
.hc-footer-col__title a{color:#fff}
.hc-footer-col__title a:hover{color:var(--hc-accent)}
.hc-footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem}
.hc-footer-col li a{color:#b9c5d1;font-size:.875rem;line-height:1.4}
.hc-footer-col li a:hover{color:var(--hc-accent)}

/* Legal band */
.hc-footer-legal{
	display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.6rem 1.25rem;
	border-top:1px solid rgba(255,255,255,.1);margin-top:2.5rem;padding-top:1.4rem;color:#9fb0c0;font-size:.82rem;
}
.hc-footer-legal p{margin:0}
.hc-footer-legal a{color:#c9d3dd}
.hc-footer-legal__pay{letter-spacing:.01em}

/* Tablet: identity column stacks above the links; links go 2-up (even 4 rows of 2) */
@media (max-width:1024px){
	.hc-footer-main{grid-template-columns:1fr;gap:2rem}
	.hc-footer-cols{grid-template-columns:repeat(2,minmax(0,1fr))}
}
/* Phone: single column throughout; trust 2-up so it stays compact */
@media (max-width:600px){
	.hc-footer-trust{grid-template-columns:repeat(2,minmax(0,1fr));gap:1.1rem}
	.hc-footer-trust__item{justify-content:flex-start}
	.hc-footer-cols{grid-template-columns:1fr}
	.hc-footer-legal{justify-content:flex-start}
}

/* ---------------- Floating contact (WhatsApp + phone) ---------------- */
.hc-floating{
	position:fixed;inset-block-end:18px;inset-inline-start:18px;z-index:900;
	display:flex;flex-direction:column;gap:12px;align-items:flex-start;
}
.hc-fab{
	display:inline-flex;align-items:center;gap:.55rem;
	height:58px;padding-inline:16px;border-radius:999px;
	color:#fff;text-decoration:none;font-weight:700;font-size:1rem;
	box-shadow:0 6px 18px rgba(16,36,56,.28);
	transform:translateY(0);transition:transform .18s ease, box-shadow .18s ease, background .15s ease;
	white-space:nowrap;
}
.hc-fab__icon{width:26px;height:26px;flex:0 0 auto}
.hc-fab__label{max-width:0;overflow:hidden;opacity:0;transition:max-width .25s ease,opacity .2s ease}
.hc-fab:hover .hc-fab__label,.hc-fab:focus-visible .hc-fab__label{max-width:120px;opacity:1}
.hc-fab--wa{background:#25D366;color:#08331b}
.hc-fab--wa:hover{background:#1eb457;color:#08331b}
.hc-fab--phone{background:var(--hc-navy)}
.hc-fab--phone:hover{background:var(--hc-navy-dark)}

/* dignified reveal on scroll (JS toggles .is-in) */
.hc-floating .hc-fab{opacity:0;transform:translateY(14px) scale(.96)}
.hc-floating.is-in .hc-fab{opacity:1;transform:translateY(0) scale(1)}
.hc-floating.is-in .hc-fab--phone{transition-delay:.06s}

/* gentle idle pulse on the WhatsApp fab, honoring reduced-motion */
@media (prefers-reduced-motion:no-preference){
	.hc-floating.is-in .hc-fab--wa{animation:hc-pulse 2.8s ease-in-out 1.2s infinite}
}
@keyframes hc-pulse{0%,100%{box-shadow:0 6px 18px rgba(16,36,56,.28)}50%{box-shadow:0 6px 26px rgba(37,211,102,.55)}}
@media (prefers-reduced-motion:reduce){
	.hc-floating .hc-fab{opacity:1;transform:none;transition:none}
}

/* desktop: show phone label inline for click-to-call clarity */
@media (min-width:900px){
	.hc-fab--phone .hc-fab__label{max-width:120px;opacity:1}
}

/* ---------------- Homepage hero ---------------- */
.hc-hero{
	position:relative;overflow:hidden;
	/* Warm glow is contained to the lower area (behind CTAs/pills) so it never
	   lightens the top where the eyebrow sits — keeps the eyebrow AA on navy. */
	background:
		radial-gradient(680px 300px at 50% 122%, rgba(224,123,26,.16), transparent 60%),
		linear-gradient(180deg,var(--hc-navy) 0%,var(--hc-navy-dark) 100%);
	color:#fff;text-align:start;
	padding-block:clamp(2.5rem,1.4rem + 5vw,4.75rem)!important;
	padding-inline:20px;
}
/* Faint tactical grid texture for depth (sparse 1px lines at 5% — negligible
   effect on text contrast). */
.hc-hero::before{
	content:"";position:absolute;inset:0;z-index:0;pointer-events:none;opacity:.05;
	background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M48 0H0v48' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
	background-size:48px 48px;
}
.hc-hero__inner{position:relative;z-index:1;max-width:1180px;margin-inline:auto}

/* Split layout: brand copy (start/right) beside a real-product showcase (left) */
.hc-hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:2.25rem 3rem;align-items:center}
.hc-hero__copy{min-width:0}
.hc-hero__eyebrow{color:#e88a2e;font-weight:700;letter-spacing:.08em;margin:0 0 .55rem;font-size:.95rem} /* brighter amber than --hc-accent: 5.1:1 on the navy gradient (AA); the raw token is 4.4:1 here */
.hc-hero__title{color:#fff;font-weight:700;margin:0 0 .7rem;font-size:clamp(1.85rem,1.1rem + 2.7vw,2.85rem);line-height:1.14}
.hc-hero__sub{color:#dbe5ef;max-width:56ch;margin:0 0 1.7rem;font-size:1.1rem;line-height:1.6}
.hc-hero__cta{justify-content:flex-start;gap:.75rem;flex-wrap:wrap}
.hc-hero__cta .hc-btn--hero-wa .wp-block-button__link{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.55)}
.hc-hero__cta .hc-btn--hero-wa .wp-block-button__link:hover{background:#fff;color:var(--hc-navy)}

/* Product showcase — real store photos on white cards that pop against the navy */
.hc-hero__cards{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
@media (min-width:901px){.hc-hero__cards--3col{grid-template-columns:repeat(3,1fr);gap:.8rem}.hc-hero__cards--3col .hc-hero-card__title{font-size:.8rem;margin-inline:.55rem}.hc-hero__cards--3col .hc-hero-card__price{margin-inline:.55rem}}
.hc-hero-card{display:flex;flex-direction:column;background:#fff;border-radius:14px;overflow:hidden;text-decoration:none;color:var(--hc-navy);box-shadow:0 12px 32px -14px rgba(0,0,0,.55);transition:transform .15s ease,box-shadow .15s ease}
.hc-hero-card:hover{transform:translateY(-3px);box-shadow:0 18px 40px -14px rgba(0,0,0,.65)}
.hc-hero-card:focus-visible{outline:3px solid var(--hc-accent);outline-offset:2px}
.hc-hero-card__imgwrap{display:block;position:relative;background:#fff;aspect-ratio:1/1;overflow:hidden}
.hc-hero-card__img{width:100%;height:100%;object-fit:cover;display:block}
/* Hover image-swap (US-PLP3c): secondary = 1st gallery image, absolutely overlaid on the
   primary, faded in on hover (pointer only) once app.js has lazily loaded it (is-loaded). */
.hc-hero-card__img--secondary{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;opacity:0;transition:opacity .4s ease}
@media (hover:hover){.hc-hero-card:hover .hc-hero-card__img--secondary.is-loaded{opacity:1}}
.hc-hero-card__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-weight:700;font-size:.85rem;line-height:1.35;color:var(--hc-navy);margin:.55rem .7rem 0;min-height:2.3em}
.hc-hero-card__price{margin:.2rem .7rem .65rem;font-weight:700;color:var(--hc-cta-dark);font-size:.95rem}
.hc-hero-card__price del{color:var(--hc-muted);font-weight:600;margin-inline-end:.35rem}
.hc-hero-card__price ins{text-decoration:none}

/* Category quick-links — full-width bridge band under the split */
.hc-hero__pills{display:flex;flex-wrap:wrap;gap:.55rem;justify-content:center;align-items:center;margin-top:2.4rem;padding-top:1.8rem;border-top:1px solid rgba(255,255,255,.1)}
.hc-hero__pills-label{color:#9fb4c8;font-weight:700;font-size:.9rem;margin-inline-end:.15rem}
.hc-hero__pill{display:inline-flex;align-items:center;padding:.42rem .95rem;border-radius:999px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.22);color:#eef3f8;text-decoration:none;font-weight:700;font-size:.92rem;transition:background .15s ease,border-color .15s ease,color .15s ease,transform .05s ease}
.hc-hero__pill:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.45);color:#fff}
.hc-hero__pill:active{transform:translateY(1px)}
.hc-hero__pill--all{background:var(--hc-cta);border-color:var(--hc-cta);color:#fff}
.hc-hero__pill--all:hover{background:var(--hc-cta-dark);border-color:var(--hc-cta-dark);color:#fff}
@media (max-width:900px){
	.hc-hero{text-align:center}
	.hc-hero__grid{grid-template-columns:1fr;gap:2rem}
	.hc-hero__sub{margin-inline:auto}
	.hc-hero__cta{justify-content:center}
	.hc-hero__cards{max-width:520px;margin-inline:auto;width:100%}
}
@media (max-width:600px){.hc-hero__pills-label{flex-basis:100%;margin:0 0 .1rem}}

/* ---------------- Trust strip ---------------- */
.hc-trust{background:var(--hc-mist);border-block:1px solid var(--hc-line)}
.hc-trust__row{gap:1rem;padding-block:1.25rem;text-align:center}
.hc-trust__item{margin:0;color:var(--hc-muted);line-height:1.4}
.hc-trust__item strong{display:block;color:var(--hc-navy);font-weight:700;font-size:1.05rem}

/* ---------------- WooCommerce shortcode grids on home ---------------- */
.hc-cats ul.products,.hc-featured ul.products{list-style:none;margin:0;padding:0;display:grid;gap:1.1rem;grid-template-columns:repeat(4,1fr)}
.hc-cats ul.products li,.hc-featured ul.products li{margin:0;width:auto!important;float:none!important;background:#fff;border:1px solid var(--hc-line);border-radius:var(--hc-radius);padding:.75rem;text-align:center;transition:box-shadow .15s ease,transform .15s ease}
.hc-cats ul.products li:hover,.hc-featured ul.products li:hover{box-shadow:var(--hc-shadow);transform:translateY(-2px)}
.hc-cats ul.products li a:not(.button):not(.added_to_cart),.hc-featured ul.products li a:not(.button):not(.added_to_cart){text-decoration:none;color:var(--hc-navy)}
/* featured-grid add-to-cart keeps white text on CTA orange (woo.css isn't loaded on non-shop pages) */
.hc-cats ul.products li a.button,.hc-featured ul.products li a.button{color:#fff}
.hc-cats ul.products li img,.hc-featured ul.products li img{border-radius:var(--hc-radius-sm);margin:0 auto .5rem;aspect-ratio:1/1;object-fit:cover}
.hc-featured ul.products li .price{display:block;color:var(--hc-ink);font-weight:700;margin:.35rem 0}
.hc-featured ul.products li .button{margin-top:.4rem}
.hc-cats mark.count{color:var(--hc-muted);background:none;font-weight:600}
@media (max-width:900px){.hc-cats ul.products,.hc-featured ul.products{grid-template-columns:repeat(2,1fr)}.hc-trust__row{flex-wrap:wrap}}
@media (max-width:480px){.hc-cats ul.products,.hc-featured ul.products{grid-template-columns:repeat(2,1fr)}}

/* ---------------- Homepage hub (reach-everything front page) ---------------- */
.hc-section{padding-block:clamp(2.75rem,1.8rem + 3vw,4.25rem)}
.hc-section--mist{background:var(--hc-mist);border-block:1px solid var(--hc-line)}
/* Section heading + short accent rule — adds a finished touch to the plain centered H2s */
.hc-section > h2{margin-bottom:.15rem}
.hc-section > h2::after{content:"";display:block;width:54px;height:3px;border-radius:3px;background:var(--hc-accent);margin:.85rem auto 0}
.hc-section__lead{max-width:60ch;margin:1.1rem auto 0;color:var(--hc-muted);font-size:1.06rem;line-height:1.65}
/* Blog index page title (index.html H1) + intro */
.hc-page-title{text-align:center;font-weight:700;font-size:clamp(1.9rem,1.3rem + 2.4vw,2.7rem);line-height:1.15;margin:0 0 .2rem}
.hc-page-title::after{content:"";display:block;width:54px;height:3px;border-radius:3px;background:var(--hc-accent);margin:.85rem auto 1rem}
.hc-page-intro{max-width:62ch;margin:0 auto 2.2rem;text-align:center;color:var(--hc-muted);font-size:1.06rem;line-height:1.65}

/* Department directory — every category reachable */
.hc-depts{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;margin-top:2rem;text-align:start}
.hc-dept-card{flex:1 1 320px;max-width:384px;display:flex;flex-direction:column;background:#fff;border:1px solid var(--hc-line);border-radius:16px;padding:1.5rem 1.5rem 1.35rem;overflow:hidden;box-shadow:0 1px 2px rgba(16,36,56,.04),0 10px 26px rgba(16,36,56,.05);transition:box-shadow .18s ease,transform .18s ease,border-color .18s ease}
.hc-dept-card:hover{box-shadow:0 2px 4px rgba(16,36,56,.06),0 16px 38px rgba(16,36,56,.1);transform:translateY(-3px);border-color:#d3dae2}
/* Photographic banner header — bleeds to the card edges (negative margins cancel the card padding) */
.hc-dept-card__banner{position:relative;display:block;aspect-ratio:16/10;margin:-1.5rem -1.5rem 1.05rem;overflow:hidden}
.hc-dept-card__banner img{width:100%;height:100%;object-fit:cover;display:block}
.hc-dept-card__banner:focus-visible{outline:3px solid var(--hc-accent);outline-offset:-3px}
.hc-dept-card__bannercap{position:absolute;inset-inline:0;bottom:0;z-index:1;padding:.85rem 1rem;display:flex;flex-direction:column;gap:.1rem}
.hc-dept-card__bannername{color:#fff;font-weight:700;font-size:1.16rem;line-height:1.2}
.hc-dept-card__bannercount{color:rgba(255,255,255,.92);font-weight:600;font-size:.82rem}
.hc-scrim{position:absolute;inset:0;pointer-events:none;background:linear-gradient(to top,rgba(14,36,56,.82),rgba(14,36,56,.15) 55%,transparent)}
.hc-dept-card__title{position:relative;display:block;font-weight:700;font-size:1.16rem;color:var(--hc-navy);text-decoration:none;padding-bottom:.85rem;margin-bottom:1.05rem;border-bottom:1px solid var(--hc-line)}
.hc-dept-card__title::after{content:"";position:absolute;inset-inline-start:0;bottom:-1px;width:42px;height:2px;background:var(--hc-accent)}
.hc-dept-card__title:hover{color:var(--hc-cta-dark)}
.hc-dept-card__sections{display:flex;flex-direction:column;gap:1.05rem;flex:1 1 auto}
.hc-dept-sec__title{display:block;font-weight:700;font-size:.85rem;color:var(--hc-navy);text-decoration:none;margin-bottom:.5rem}
a.hc-dept-sec__title:hover{color:var(--hc-cta-dark)}
.hc-dept-links{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.4rem}
.hc-dept-links li{margin:0}
.hc-dept-links a{display:inline-block;color:var(--hc-muted);text-decoration:none;font-size:.83rem;line-height:1.3;padding:.22rem .6rem;border-radius:999px;background:var(--hc-mist);transition:background .12s ease,color .12s ease}
.hc-dept-links a:hover{background:#e9edf2;color:var(--hc-cta-dark)}
.hc-dept-card__all{margin-top:1.2rem;font-weight:700;font-size:.9rem;color:var(--hc-cta-dark);text-decoration:none}
.hc-dept-card__all:hover{text-decoration:underline}

/* Popular-products rows per department (light-surface product cards) */
.hc-deptrows{display:flex;flex-direction:column;gap:2.5rem;margin-top:2rem}
.hc-deptrow{text-align:start}
.hc-deptrow__head{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;margin-bottom:1.15rem;padding-bottom:.65rem;border-bottom:1px solid var(--hc-line)}
.hc-deptrow__title{margin:0;font-size:1.25rem;font-weight:700}
.hc-deptrow__title a{color:var(--hc-navy);text-decoration:none}
.hc-deptrow__title a:hover{color:var(--hc-cta-dark)}
.hc-deptrow__all{flex:0 0 auto;font-weight:700;font-size:.9rem;color:var(--hc-cta-dark);text-decoration:none;white-space:nowrap}
.hc-deptrow__all:hover{text-decoration:underline}
.hc-pcards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.hc-pcard{display:flex;flex-direction:column;background:#fff;border:1px solid var(--hc-line);border-radius:14px;overflow:hidden;text-decoration:none;color:var(--hc-navy);box-shadow:0 1px 2px rgba(16,36,56,.04);transition:box-shadow .18s ease,transform .18s ease,border-color .18s ease}
.hc-pcard:hover{box-shadow:0 2px 4px rgba(16,36,56,.06),0 16px 34px rgba(16,36,56,.11);transform:translateY(-3px);border-color:#d3dae2}
.hc-pcard:focus-visible{outline:3px solid var(--hc-accent);outline-offset:2px}
.hc-pcard__imgwrap{display:block;position:relative;background:#fff;aspect-ratio:1/1;overflow:hidden;padding:.9rem}
.hc-pcard__img{width:100%;height:100%;object-fit:contain;display:block}
/* Hover image-swap (US-PLP3c): secondary keeps the primary's contain-fit + .9rem inset
   (its own box-sizing:border-box padding matches, since abs-inset:0 fills the padding box). */
.hc-pcard__img--secondary{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;padding:.9rem;box-sizing:border-box;display:block;opacity:0;transition:opacity .4s ease}
@media (hover:hover){.hc-pcard:hover .hc-pcard__img--secondary.is-loaded{opacity:1}}
@media (prefers-reduced-motion:reduce){.hc-hero-card__img--secondary,.hc-pcard__img--secondary{transition:none}}
.hc-pcard__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-weight:700;font-size:.9rem;line-height:1.35;color:var(--hc-navy);margin:.35rem .9rem 0;min-height:2.4em}
.hc-pcard__price{margin:.3rem .9rem .95rem;font-weight:700;color:var(--hc-cta-dark);font-size:1rem}
.hc-pcard__price del{color:var(--hc-muted);font-weight:600;margin-inline-end:.35rem}
.hc-pcard__price ins{text-decoration:none}

/* Brand pills */
.hc-brandpills{display:flex;flex-wrap:wrap;gap:.65rem;justify-content:center;margin-top:2rem}
.hc-brandpill{display:inline-flex;align-items:center;padding:.55rem 1.15rem;border-radius:999px;background:#fff;border:1px solid var(--hc-line);color:var(--hc-navy);text-decoration:none;font-weight:700;font-size:.93rem;box-shadow:0 1px 2px rgba(16,36,56,.04);transition:border-color .15s ease,box-shadow .15s ease,color .15s ease,transform .1s ease}
.hc-brandpill:hover{border-color:var(--hc-navy);box-shadow:0 5px 16px rgba(16,36,56,.11);transform:translateY(-1px)}
.hc-brandpill:active{transform:translateY(0)}
.hc-brandpill--all{background:var(--hc-navy);border-color:var(--hc-navy);color:#fff}
.hc-brandpill--all:hover{background:var(--hc-navy-dark);border-color:var(--hc-navy-dark);color:#fff}

/* Guides / articles */
.hc-guides{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2rem;text-align:start}
.hc-guide{display:flex;flex-direction:column;gap:.55rem;background:#fff;border:1px solid var(--hc-line);border-radius:14px;padding:1.4rem 1.45rem;text-decoration:none;box-shadow:0 1px 2px rgba(16,36,56,.04);transition:box-shadow .18s ease,transform .18s ease,border-color .18s ease}
.hc-guide:hover{box-shadow:0 2px 4px rgba(16,36,56,.06),0 16px 34px rgba(16,36,56,.11);transform:translateY(-3px);border-color:#d3dae2}
.hc-guide__kicker{font-size:.72rem;font-weight:700;letter-spacing:.09em;color:var(--hc-cta-dark);text-transform:uppercase}
.hc-guide__title{font-weight:700;font-size:1.05rem;line-height:1.4;color:var(--hc-navy);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hc-guide__more{margin-top:auto;font-weight:700;font-size:.85rem;color:var(--hc-cta-dark)}
/* Image variant — 3:2 cover photo on top, text body below */
.hc-guide--img{padding:0;gap:0;overflow:hidden}
.hc-guide--img:focus-visible{outline:3px solid var(--hc-accent);outline-offset:2px}
.hc-guide__media{display:block;aspect-ratio:3/2;overflow:hidden;background:var(--hc-mist)}
.hc-guide__media img{width:100%;height:100%;object-fit:cover;display:block}
.hc-guide__body{display:flex;flex-direction:column;gap:.55rem;flex:1 1 auto;padding:1.25rem 1.4rem}
@media (prefers-reduced-motion:no-preference){
	.hc-dept-card__banner img,.hc-guide__media img{transition:transform .4s ease}
	.hc-dept-card--img:hover .hc-dept-card__banner img,.hc-guide--img:hover .hc-guide__media img{transform:scale(1.04)}
}

/* Service / info pills */
.hc-servicepills{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin-top:1.8rem}
.hc-servicepill{display:inline-flex;align-items:center;padding:.5rem 1.1rem;border-radius:999px;background:var(--hc-mist);border:1px solid var(--hc-line);color:var(--hc-navy);text-decoration:none;font-weight:600;font-size:.92rem;transition:border-color .15s ease,color .15s ease,background .15s ease}
.hc-servicepill:hover{border-color:var(--hc-navy);color:var(--hc-cta-dark)}
.hc-section--mist .hc-servicepill{background:#fff}

@media (max-width:900px){
	/* Product rows: 2-up grid on mobile. (A horizontal scroll-snap filmstrip was
	   tried but an RTL flex scroller leaks its inline overflow into the document's
	   scroll region in Chromium — a real left-scroll bug — so the grid stays.) */
	.hc-pcards{grid-template-columns:repeat(2,1fr)}
	.hc-guides{grid-template-columns:repeat(2,1fr)}
	.hc-deptrow__head{flex-wrap:wrap}
}
@media (max-width:560px){.hc-guides{grid-template-columns:1fr}}

/* ================= Front-page redesign (US-HOME1) ================= */

/* Shared anchor-button variant: white outline on navy bands (reuses .hc-btn base) */
.hc-btn--wl{background:transparent;border-color:rgba(255,255,255,.6);color:#fff}
.hc-btn--wl:hover{background:rgba(255,255,255,.12);border-color:#fff;color:#fff}

/* Hero micro-assurance row (under the CTAs, inside the navy hero) */
.hc-hero__assure{display:flex;flex-wrap:wrap;gap:.5rem 1.3rem;margin-top:1.2rem;align-items:center}
.hc-hero__assure span{display:inline-flex;align-items:center;gap:.4rem;color:#fff;opacity:.92;font-size:.9rem;font-weight:600}
.hc-hero__assure svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;flex:0 0 auto}
@media (max-width:900px){.hc-hero__assure{justify-content:center}}

/* Value-prop strip (replaces the plain trust bar) */
.hc-vprops{background:var(--hc-mist);border-block:1px solid var(--hc-line);display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;padding-block:1.6rem;padding-inline:20px}
.hc-vprops__cell{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.35rem;text-decoration:none}
/* link cells: whole card is clickable via a full-cover anchor (keeps every grid
   child a block-level <div> so wpautop can't wrap inline <a> siblings in stray <p>) */
.hc-vprops__cell--link{position:relative;cursor:pointer}
.hc-vprops__cover{position:absolute;inset:0;z-index:1;border-radius:inherit}
.hc-vprops__cell--link:hover .hc-vprops__label{color:var(--hc-cta-dark)}
.hc-vprops__cell--link:focus-within{outline:3px solid var(--hc-accent);outline-offset:3px}
.hc-vprops__ico{width:28px;height:28px;stroke:var(--hc-navy);fill:none;stroke-width:2}
.hc-vprops__label{color:var(--hc-navy);font-weight:700;font-size:.98rem;line-height:1.2}
.hc-vprops__sub{color:var(--hc-muted);font-size:.82rem;line-height:1.3}
@media (max-width:900px){.hc-vprops{grid-template-columns:repeat(3,1fr)}}
@media (max-width:560px){.hc-vprops{grid-template-columns:repeat(2,1fr)}}

/* Shared editorial section header (kicker + h2 + right-aligned view-all) */
.hc-shead{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:1.5rem;text-align:start}
.hc-shead__kicker{display:block;font-size:.72rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--hc-cta-dark);margin-bottom:.3rem}
.hc-shead__title{margin:0;color:var(--hc-navy);font-weight:700;font-size:clamp(1.4rem,1.1rem + 1vw,1.9rem);position:relative}
.hc-shead__title::after{content:"";display:block;width:54px;height:3px;border-radius:3px;background:var(--hc-accent);margin-top:.7rem}
.hc-shead__all{flex:0 0 auto;font-weight:700;font-size:.9rem;color:var(--hc-cta-dark);text-decoration:none;white-space:nowrap}
.hc-shead__all:hover{text-decoration:underline}
@media (max-width:600px){.hc-shead{flex-direction:column;align-items:flex-start;gap:.4rem}}

/* Sale ribbon on on-sale best-seller cards (CSS-only, uses Woo's .sale class) */
.hc-featured ul.products li{position:relative}
.hc-featured ul.products li.sale::before{content:"מבצע";position:absolute;inset-block-start:.5rem;inset-inline-start:.5rem;z-index:2;background:var(--hc-sale);color:#fff;font-size:.72rem;font-weight:700;padding:.15rem .5rem;border-radius:var(--hc-radius-sm);line-height:1.2}
.hc-featured ul.products li .onsale{display:none}

/* Shop-by-mission asymmetric bento (reuses .hc-dept-card__banner/.hc-scrim) */
.hc-mission-tiles{display:grid;grid-template-columns:repeat(6,1fr);gap:1.25rem;margin-top:2rem}
.hc-mission-tile{grid-column:span 3}
.hc-mission-tile--wide{grid-column:span 6}
.hc-mission-tile .hc-dept-card__banner{margin:0;border-radius:16px;aspect-ratio:16/10;box-shadow:0 1px 2px rgba(16,36,56,.04),0 10px 26px rgba(16,36,56,.06);transition:box-shadow .18s ease}
.hc-mission-tile--wide .hc-dept-card__banner{aspect-ratio:21/9}
.hc-mission-tile .hc-dept-card__banner:hover{box-shadow:0 16px 38px rgba(16,36,56,.16)}
.hc-mission-tile .hc-dept-card__bannername{font-size:1.25rem}
@media (max-width:900px){
	.hc-mission-tiles{grid-template-columns:repeat(2,1fr)}
	.hc-mission-tile,.hc-mission-tile--wide{grid-column:span 1}
	.hc-mission-tile--wide .hc-dept-card__banner{aspect-ratio:16/10}
}
@media (max-width:560px){.hc-mission-tiles{grid-template-columns:1fr}}

/* Recruit promo band (full-bleed navy, glassy checklist card) */
.hc-recruit{background:linear-gradient(180deg,var(--hc-navy),var(--hc-navy-dark));padding-block:clamp(2.75rem,1.8rem + 3vw,4rem)}
.hc-recruit__inner{max-width:var(--hc-content);margin-inline:auto;padding-inline:20px;display:grid;grid-template-columns:1.1fr .9fr;gap:2.5rem;align-items:center}
.hc-recruit__eyebrow{display:block;color:#e88a2e;font-weight:700;letter-spacing:.08em;text-transform:uppercase;font-size:.9rem;margin-bottom:.5rem}
.hc-recruit__copy h2{color:#fff;font-weight:700;font-size:clamp(1.5rem,1.2rem + 1.2vw,2rem);margin:0 0 .7rem}
.hc-recruit__copy p{color:#dbe5ef;line-height:1.6;margin:0 0 1.3rem}
.hc-recruit__cta{display:flex;flex-wrap:wrap;gap:.75rem}
.hc-recruit__card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);border-radius:var(--hc-radius);padding:1.5rem}
.hc-recruit__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.85rem}
.hc-recruit__list a{display:flex;align-items:center;gap:.6rem;color:#fff;text-decoration:none;font-weight:600}
.hc-recruit__list a:hover{color:#e88a2e}
.hc-recruit__list svg{width:18px;height:18px;stroke:#e88a2e;fill:none;stroke-width:2.2;flex:0 0 auto}
@media (max-width:820px){.hc-recruit__inner{grid-template-columns:1fr}}

/* SEO read-zone: H2 intro + 4× H3 mini-blocks, left-aligned RTL prose */
.hc-seocopy{padding-block:clamp(2.75rem,1.8rem + 3vw,4.25rem)}
.hc-seocopy > *{max-width:900px;margin-inline:auto;padding-inline:20px}
.hc-seocopy h2{color:var(--hc-navy);font-weight:700;font-size:clamp(1.5rem,1.2rem + 1vw,1.9rem);text-align:start}
.hc-seocopy h2::after{content:"";display:block;width:54px;height:3px;border-radius:3px;background:var(--hc-accent);margin:.7rem 0 0}
.hc-seocopy__intro{color:var(--hc-ink);line-height:1.75;max-width:72ch;margin-top:1rem}
.hc-seocopy__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem 2.4rem;margin-top:2rem}
.hc-seocopy__block h3{color:var(--hc-navy);font-weight:700;font-size:1.15rem;margin:0 0 .4rem;border-inline-start:3px solid var(--hc-accent);padding-inline-start:.6rem}
.hc-seocopy__block p{color:var(--hc-ink);line-height:1.7;margin:0}
.hc-seocopy__block a{color:var(--hc-cta-dark);text-decoration:underline;text-underline-offset:2px;font-weight:700;white-space:nowrap}
@media (max-width:700px){.hc-seocopy__grid{grid-template-columns:1fr}}

/* Brand pills → uniform logo-plate grid (scoped so mega-nav pills stay pill-shaped) */
.hc-brands-sec .hc-brandpills{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:.75rem;justify-content:stretch;margin-top:2rem}
.hc-brands-sec .hc-brandpill{justify-content:center;min-height:64px;border-radius:var(--hc-radius);padding:.75rem 1rem;letter-spacing:.02em;text-align:center}

/* Closing conversion band + demoted service-pill utility row */
.hc-finalcta{background:linear-gradient(180deg,var(--hc-navy),var(--hc-navy-dark));padding-block:clamp(2.5rem,1.8rem + 2.5vw,3.5rem);text-align:center}
.hc-finalcta__inner{max-width:var(--hc-content);margin-inline:auto;padding-inline:20px}
.hc-finalcta h2{color:#fff;font-weight:700;font-size:clamp(1.4rem,1.1rem + 1vw,1.85rem);margin:0 0 .5rem}
.hc-finalcta p{color:#dbe5ef;margin:0 0 1.3rem}
.hc-finalcta__cta{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}
.hc-finalcta__utility{margin-top:1.7rem}
.hc-finalcta__utility .hc-servicepills{margin-top:0}
.hc-finalcta__utility .hc-servicepill{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2);color:#cfd9e3;font-size:.82rem;font-weight:600}
.hc-finalcta__utility .hc-servicepill:hover{border-color:rgba(255,255,255,.45);color:#fff}

/* ================= Front-page depth (US-HOME2) ================= */

/* Value-prop strip → elevated cards (was a flat mist strip) */
.hc-vprops{background:linear-gradient(180deg,#fff,var(--hc-mist));gap:.9rem;padding-block:1.9rem}
.hc-vprops__cell{background:#fff;border:1px solid var(--hc-line);border-radius:14px;padding:1.15rem .9rem;box-shadow:0 1px 2px rgba(16,36,56,.04);transition:box-shadow .18s ease,transform .18s ease,border-color .18s ease;align-self:stretch;justify-content:center}
.hc-vprops__cell--link:hover{box-shadow:0 12px 26px rgba(16,36,56,.1);transform:translateY(-3px);border-color:#d3dae2}
.hc-vprops__ico{width:30px;height:30px;stroke:var(--hc-cta-dark);flex:0 0 auto}

/* E-E-A-T "why us" band — authoritative prose beside a trust-fact grid.
   Namespaced .hc-whyus to avoid the existing PLP .hc-trust strip. */
.hc-whyus{padding-block:clamp(2.75rem,1.8rem + 3vw,4.25rem);background:var(--hc-paper)}
.hc-whyus__inner{max-width:var(--hc-content);margin-inline:auto;padding-inline:20px;display:grid;grid-template-columns:.82fr 1.18fr;gap:2.4rem 3rem;align-items:start}
.hc-whyus__eyebrow{display:block;color:var(--hc-cta-dark);font-weight:700;letter-spacing:.09em;text-transform:uppercase;font-size:.75rem;margin-bottom:.5rem}
.hc-whyus__lead h2{color:var(--hc-navy);font-weight:700;font-size:clamp(1.5rem,1.2rem + 1.2vw,2.05rem);margin:0}
.hc-whyus__lead h2::after{content:"";display:block;width:54px;height:3px;border-radius:3px;background:var(--hc-accent);margin:.85rem 0 0}
.hc-whyus__lead p{color:var(--hc-ink);line-height:1.75;margin:1.1rem 0 0;max-width:54ch}
.hc-whyus__grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:1.15rem 1.6rem}
.hc-whyus__item{display:flex;gap:.9rem;align-items:flex-start}
.hc-whyus__ico{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:13px;background:var(--hc-mist);border:1px solid var(--hc-line)}
.hc-whyus__ico svg{width:22px;height:22px;stroke:var(--hc-cta-dark);fill:none;stroke-width:2}
.hc-whyus__txt{display:flex;flex-direction:column;gap:.2rem;min-width:0}
.hc-whyus__txt strong{color:var(--hc-navy);font-weight:700;font-size:1.02rem;line-height:1.3}
.hc-whyus__txt span{color:var(--hc-muted);font-size:.9rem;line-height:1.5}
@media (max-width:820px){.hc-whyus__inner{grid-template-columns:1fr;gap:1.9rem}}
@media (max-width:520px){.hc-whyus__grid{grid-template-columns:1fr}}

/* SEO read-zone: buying-guide tips (question H3s in soft cards) */
.hc-seocopy__tips{margin-top:2.75rem}
.hc-seocopy__tips h2{color:var(--hc-navy);font-weight:700;font-size:clamp(1.4rem,1.1rem + 1vw,1.85rem);text-align:start}
.hc-seocopy__tips h2::after{content:"";display:block;width:54px;height:3px;border-radius:3px;background:var(--hc-accent);margin:.7rem 0 0}
.hc-seocopy__tipsgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.35rem;margin-top:1.7rem}
.hc-seocopy__tip{background:var(--hc-mist);border:1px solid var(--hc-line);border-radius:var(--hc-radius);padding:1.25rem 1.35rem}
.hc-seocopy__tip h3{color:var(--hc-navy);font-weight:700;font-size:1.06rem;margin:0 0 .5rem;line-height:1.3;border:0;padding:0}
.hc-seocopy__tip p{color:var(--hc-ink);line-height:1.65;margin:0;font-size:.95rem}
.hc-seocopy__tip a{color:var(--hc-cta-dark);text-decoration:underline;text-underline-offset:2px;font-weight:700;white-space:nowrap}
@media (max-width:760px){.hc-seocopy__tipsgrid{grid-template-columns:1fr}}

/* Full category directory section: keep the exhaustive dept cards centered on mist */
.hc-depts-sec .hc-depts{margin-top:2.25rem}

/* ---------------- Enriched archive long-form body (US-E1) ---------------- */
.hc-archive-body{max-width:var(--hc-wide,1200px);margin:2.5rem auto 0;padding:0 20px;color:var(--hc-ink);line-height:1.8}
.hc-archive-body h2{color:var(--hc-navy);font-weight:700;font-size:clamp(1.35rem,1.1rem + 1vw,1.7rem);margin:1.8rem 0 .7rem}
.hc-archive-body h3{color:var(--hc-navy);font-weight:700;font-size:1.2rem;margin:1.4rem 0 .5rem}
.hc-archive-body p{margin:0 0 1rem}
.hc-archive-body ul,.hc-archive-body ol{margin:0 0 1rem;padding-inline-start:1.4rem}
.hc-archive-body li{margin-bottom:.4rem}
.hc-archive-body a{color:var(--hc-cta-dark);text-decoration:underline;text-underline-offset:2px}

/* ---------------- FAQ accordion (US-D4, native <details>, no JS) ---------------- */
.hc-faq{max-width:var(--hc-wide,1200px);margin:2.5rem auto 0;padding:0 20px}
.hc-faq__title{color:var(--hc-navy);font-weight:700;font-size:clamp(1.4rem,1.1rem + 1vw,1.8rem);margin:0 0 1rem}
.hc-faq__list{display:flex;flex-direction:column;gap:.6rem}
.hc-faq__item{border:1px solid var(--hc-line);border-radius:var(--hc-radius-sm);background:var(--hc-paper);overflow:hidden}
.hc-faq__q{cursor:pointer;list-style:none;padding:.95rem 1.1rem;font-weight:700;color:var(--hc-navy);display:flex;align-items:center;justify-content:space-between;gap:1rem}
.hc-faq__q::-webkit-details-marker{display:none}
.hc-faq__q::after{content:"+";font-weight:700;font-size:1.25rem;color:var(--hc-cta);line-height:1;flex:0 0 auto}
.hc-faq__item[open] .hc-faq__q::after{content:"\2212"}
.hc-faq__item[open] .hc-faq__q{border-bottom:1px solid var(--hc-line)}
.hc-faq__q:hover{background:var(--hc-mist)}
.hc-faq__q:focus-visible{outline:2px solid var(--hc-accent);outline-offset:-2px}
.hc-faq__a{padding:.9rem 1.1rem;color:var(--hc-ink);line-height:1.7}
.hc-faq__a p{margin:0 0 .6rem}
.hc-faq__a p:last-child{margin-bottom:0}
@media (prefers-reduced-motion:no-preference){.hc-faq__item[open] .hc-faq__a{animation:hc-faq-in .18s ease}}
@keyframes hc-faq-in{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}

/* ---------------- misc ---------------- */
.hc-post-meta{gap:1rem;color:var(--hc-muted);margin-bottom:1rem}
.hc-main{min-height:50vh}
@media (max-width:600px){
	.hc-brand .wp-block-site-logo img{height:42px}
	.hc-fab{height:52px}
	.hc-icon-link__label{display:none}
	.hc-topbar__ship{display:none}
	.hc-search__btn{padding:.6rem .9rem}
}

/* ===== hc-mega nav (Tier 3) ===== */
/* Hamburger toggle button (mobile only; hidden on desktop where the bar shows inline). */
.hc-nav-toggle{
	display:none;align-items:center;justify-content:center;
	width:44px;height:44px;padding:0;margin:0;
	background:transparent;border:1px solid var(--hc-line);border-radius:var(--hc-radius-sm);
	color:var(--hc-navy);cursor:pointer;flex:0 0 auto;
}
.hc-nav-toggle:hover{background:var(--hc-mist)}
.hc-nav-toggle__icon--close{display:none}
.hc-nav-toggle[aria-expanded="true"] .hc-nav-toggle__icon--open{display:none}
.hc-nav-toggle[aria-expanded="true"] .hc-nav-toggle__icon--close{display:block}

.hc-mega-wrap{border-top:1px solid var(--hc-line);background:var(--hc-paper)}
.hc-mega{display:block}
.hc-mega-scroll{max-width:var(--hc-wide,1400px);margin-inline:auto}

/* --- Desktop: horizontal bar of direct links + top-level disclosure buttons --- */
.hc-mega-groups{display:flex;flex-wrap:wrap;align-items:stretch;gap:0;padding-inline:20px}
.hc-mega-group{position:relative}
.hc-mega-trigger{
	display:flex;align-items:center;gap:.35rem;
	height:46px;padding:0 .85rem;margin:0;
	background:transparent;border:0;
	font:inherit;font-weight:700;font-size:.94rem;color:var(--hc-navy);
	cursor:pointer;white-space:nowrap;
}
.hc-mega-trigger:hover{color:var(--hc-cta-dark);background:var(--hc-mist)}
.hc-mega-caret{transition:transform .15s ease;flex:0 0 auto}
.hc-mega-trigger[aria-expanded="true"] .hc-mega-caret{transform:rotate(180deg)}

/* Direct links (home / all-products / tips / contact) styled to sit in the same bar */
.hc-mega-link{
	display:inline-flex;align-items:center;height:46px;padding:0 .85rem;margin:0;
	font-weight:700;font-size:.94rem;color:var(--hc-navy);text-decoration:none;white-space:nowrap;
}
.hc-mega-link:hover{color:var(--hc-cta-dark);background:var(--hc-mist)}
.hc-mega-link--all{color:var(--hc-cta-dark);font-weight:700}

/* Panel: a lists region + a promo card */
.hc-mega-panel{
	display:flex;flex-wrap:wrap;gap:1.25rem 1.75rem;
	padding:1.25rem 1.5rem 1.5rem;
}
.hc-mega-panel[hidden]{display:none}
.hc-mega-panel__lists{flex:1 1 auto;min-width:0;display:flex;gap:1.75rem}
/* Each panel is organised into labelled sub-sections (the "second hierarchy"). */
.hc-mega-section{flex:1 1 0;min-width:150px}
.hc-mega-section__title{
	display:block;margin:0 0 .5rem;padding:0 .4rem .45rem;
	border-bottom:1px solid var(--hc-line);
	color:var(--hc-navy);font-weight:700;font-size:.82rem;letter-spacing:.02em;
	text-decoration:none;
}
a.hc-mega-section__title:hover{color:var(--hc-cta-dark);border-color:var(--hc-accent)}
.hc-mega-section--brands{flex:2 1 0}
.hc-mega-list{list-style:none;margin:0;padding:0}
.hc-mega-list li{margin:0}
.hc-mega-list--brands{columns:3;column-gap:1.25rem}
.hc-mega-list--brands li{break-inside:avoid}
.hc-mega-list a{
	display:block;padding:.4rem .4rem;border-radius:var(--hc-radius-sm);
	color:var(--hc-ink);text-decoration:none;font-size:.92rem;line-height:1.4;
}
.hc-mega-list a:hover{color:var(--hc-cta-dark);background:var(--hc-mist)}

/* Promo card inside each panel */
.hc-mega-promo{
	flex:0 0 210px;display:flex;flex-direction:column;gap:.35rem;
	background:var(--hc-mist);border-radius:var(--hc-radius);padding:1rem;
}
.hc-mega-promo__eyebrow{color:var(--hc-cta-dark);font-weight:700;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase} /* cta-dark = 6.7:1 on the mist card (AA); accent-dark was 3.7:1 */
.hc-mega-promo__title{color:var(--hc-navy);font-weight:700;font-size:1.15rem;line-height:1.2;margin-bottom:.6rem}
.hc-mega-viewall{
	margin-top:auto;display:inline-flex;align-items:center;justify-content:center;
	padding:.6rem 1rem;border-radius:var(--hc-radius-sm);
	background:var(--hc-navy);color:#fff;font-weight:700;font-size:.9rem;text-decoration:none;text-align:center;
}
.hc-mega-viewall:hover{background:var(--hc-navy-dark);color:#fff}

/* Mobile-only extra block (quick links + contact) appended to the off-canvas menu */
.hc-mega-extra{display:none}

@media (min-width:901px){
	.hc-mega-group .hc-mega-panel{
		position:absolute;inset-inline-start:0;top:100%;z-index:210;
		min-width:820px;max-width:calc(100vw - 40px);
		background:var(--hc-paper);border:1px solid var(--hc-line);border-top:0;
		border-radius:0 0 var(--hc-radius) var(--hc-radius);box-shadow:var(--hc-shadow);
	}
	/* Panels of groups near the inline-end (left, in RTL) open toward the start edge so they never clip. */
	.hc-mega-group:nth-last-child(-n+2) .hc-mega-panel{inset-inline-start:auto;inset-inline-end:0}
	/* Click/keyboard open (aria-expanded, kept in sync by JS) is the source of truth; */
	.hc-mega-trigger[aria-expanded="true"] + .hc-mega-panel{display:flex}
	/* pointer users also get hover-to-open (overrides the [hidden] default via source order). */
	.hc-mega-group:hover > .hc-mega-panel{display:flex}
}

/* --- Mobile (<= 900px): hamburger + off-canvas accordion panel --- */
@media (max-width:900px){
	.hc-nav-toggle{display:inline-flex}

	.hc-mega-wrap{
		display:none;position:fixed;inset-block-start:var(--hc-header-h,110px);inset-inline:0;inset-block-end:0;
		z-index:250;background:var(--hc-paper);overflow-y:auto;border-top:1px solid var(--hc-line);
		overscroll-behavior:contain;
	}
	.hc-mega-wrap.is-open{display:block}
	.hc-mega-scroll{max-width:none}

	.hc-mega-groups{flex-direction:column;padding-inline:0}
	.hc-mega-group{border-bottom:1px solid var(--hc-line)}
	.hc-mega-link{
		height:auto;min-height:52px;padding:.9rem 1.1rem;font-size:1rem;
		border-bottom:1px solid var(--hc-line);
	}
	.hc-mega-link--all{color:var(--hc-cta-dark)}
	.hc-mega-trigger{
		width:100%;height:auto;min-height:52px;padding:.85rem 1.1rem;
		justify-content:space-between;font-size:1rem;
	}
	.hc-mega-panel{
		flex-direction:column;gap:0;padding:.25rem 1.1rem 1rem;
		background:var(--hc-mist);
	}
	.hc-mega-panel__lists{flex:auto;flex-direction:column;gap:.25rem}
	.hc-mega-section{min-width:0}
	.hc-mega-section__title{margin-top:.6rem;font-size:.9rem}
	.hc-mega-list--brands{columns:2}
	.hc-mega-list a{padding:.6rem .5rem}
	.hc-mega-promo{flex:auto;background:transparent;padding:.5rem 0 0}
	.hc-mega-promo__eyebrow{display:none}
	.hc-mega-promo__title{display:none}
	.hc-mega-viewall{margin-top:.5rem}

	/* Quick links + contact at the foot of the off-canvas menu */
	.hc-mega-extra{display:block;border-top:1px solid var(--hc-line);background:var(--hc-mist)}
	.hc-mega-extra .hc-topbar__inner{flex-direction:column;align-items:stretch;gap:.75rem;padding:1rem 1.1rem 1.5rem}
	.hc-mega-extra .hc-topbar__links{flex-direction:column;gap:0}
	.hc-mega-extra .hc-topbar__links a{color:var(--hc-navy);font-weight:700;padding:.75rem 0;border-bottom:1px solid var(--hc-line)}
	.hc-mega-extra .hc-topbar__contact{gap:.85rem;flex-wrap:wrap;padding-top:.25rem}
	.hc-mega-extra .hc-topbar__ship{color:var(--hc-muted)}
	.hc-mega-extra .hc-topbar__tel{color:var(--hc-navy)}

	/* body scroll-lock while the off-canvas menu is open (class set by JS on <html>) */
	html.hc-scroll-locked,html.hc-scroll-locked body{overflow:hidden;height:100%}
}

/* AA: visible, high-contrast focus for every interactive piece of the mega nav */
.hc-nav-toggle:focus-visible,
.hc-mega-trigger:focus-visible,
.hc-mega-link:focus-visible,
.hc-mega-section__title:focus-visible,
.hc-mega-list a:focus-visible,
.hc-mega-viewall:focus-visible,
.hc-search__input:focus-visible,
.hc-search__btn:focus-visible{
	outline:2px solid var(--hc-accent);outline-offset:2px;
}

@media (prefers-reduced-motion:reduce){
	.hc-mega-caret{transition:none}
}
