/* =========================================================================
   Legacy Labs — main stylesheet
   Units: rem for type/spacing/radius, px only for hairline borders,
   em for media-query breakpoints. Base = 16px (html font-size: 100%).
   ========================================================================= */

:root {
	--red: #b52929;
	--red-dark: #8e1f1f;
	--gold: #b79d64;
	--gold-dark: #a8905c;
	--gold-soft: #f3ecdd;
	--slate: #333e48;
	--slate-2: #2a323a;
	--ink: #2b2f33;
	--muted: #6c757d;
	--line: #e7e7e7;
	--bg: #ffffff;
	--bg-soft: #f6f6f4;
	--bg-cream: #faf8f3;
	--success: #198754;

	--font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--container: 78rem;          /* 1248px */
	--gutter: 1.25rem;           /* 20px  */
	--radius: 0.5rem;            /* 8px   */
	--radius-lg: 0.875rem;       /* 14px  */
	--shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 0.375rem 1.25rem rgba(0, 0, 0, .05);
	--shadow-lg: 0 0.625rem 2.5rem rgba(0, 0, 0, .12);
	--gap: 1.5rem;               /* 24px  */
}

/* ---------- reset ---------- */
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	font-size: 1rem;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4, h5 { color: var(--slate); font-weight: 800; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2em; }
button { font-family: inherit; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 0.5rem; top: 0.5rem; background: #fff; padding: 0.625rem 1rem; z-index: 1000; border-radius: 0.375rem; }

.ll-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.ll-icon { width: 1.375rem; height: 1.375rem; flex: none; }

/* ---------- buttons ---------- */
.btn,
.button,
button.button,
.single-product form.cart .single_add_to_cart_button {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: var(--red); color: #fff;
	border: 0; border-radius: var(--radius);
	padding: 0.8125rem 1.625rem; font-weight: 700; font-size: 0.95rem;
	cursor: pointer; transition: background .15s ease, transform .05s ease;
	line-height: 1; text-align: center;
}
.btn:hover, .button:hover, button.button:hover { background: var(--red-dark); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--slate); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--slate); }
.btn--lg { padding: 1rem 2.125rem; font-size: 1.05rem; }

/* =========================================================================
   Announcement bar
   ========================================================================= */
.announcement-bar { background: var(--red); color: #fff; font-size: 0.82rem; padding-block: 0.4rem; }
/* Member state keeps the brand red; only the message/icon change. */
.announcement-bar.is-member { background: var(--red); }
.announcement-bar__inner { display: flex; align-items: center; justify-content: center; gap: 1.125rem; min-height: 1.75rem; flex-wrap: wrap; }
.announcement-bar__msg { margin: 0; font-weight: 600; letter-spacing: .2px; display: inline-flex; align-items: center; gap: 0.4rem; }
.announcement-bar__msg .ll-icon { width: 1rem; height: 1rem; color: #fff; }
.announcement-bar__cta { display: inline-flex; align-items: center; background: #fff; color: var(--red); text-decoration: none; font-weight: 800; white-space: nowrap; padding: 0.25rem 0.8rem; border-radius: 999px; line-height: 1.3; }
.announcement-bar__cta:hover { background: var(--bg-cream); color: var(--red); opacity: 1; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header__bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
	padding-block: 0.875rem;
}
.site-branding { display: flex; align-items: center; }
.custom-logo, .custom-logo-link img { max-height: 3.5rem; width: auto; }
.site-title { font-weight: 800; font-size: 1.4rem; color: var(--slate); }

.header-search { max-width: 48rem; width: 100%; }
.header-search form, .header-search .woocommerce-product-search {
	display: flex; width: 100%;
	border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
	background: var(--bg-soft);
}
.header-search input[type="search"],
.header-search input.search-field {
	flex: 1; border: 0; background: transparent; padding: 0.6875rem 1.125rem; font-size: 0.95rem; outline: none; color: var(--ink);
}
.header-search button[type="submit"] {
	border: 0; background: var(--slate); color: #fff; padding: 0 1.375rem; font-weight: 700; cursor: pointer;
}
.header-search button[type="submit"]:hover { background: var(--red); }

.header-actions { display: flex; align-items: center; gap: 0.375rem; }
.header-action {
	position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 0.125rem;
	color: var(--slate); padding: 0.375rem 0.625rem; border-radius: 0.5rem; font-size: 0.68rem; font-weight: 600;
}
.header-action:hover { color: var(--red); background: var(--bg-soft); }
.header-action--search { display: none; }
.header-action__label { line-height: 1; }
.header-action__icon { position: relative; display: inline-flex; }
.cart-count {
	position: absolute; top: -0.5rem; right: -0.5rem;
	background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700;
	min-width: 1.125rem; height: 1.125rem; padding: 0 0.3125rem; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}

.nav-toggle { display: none; background: none; border: 0; padding: 0.375rem; color: var(--slate); cursor: pointer; }
.nav-toggle__close { display: none; }
.nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: block; }

/* ---------- primary mega nav (single line) — gold brand bar ---------- */
.primary-nav { background: var(--gold); }
.primary-menu {
	display: flex; flex-wrap: nowrap; align-items: stretch; justify-content: center;
	list-style: none; margin: 0; padding: 0;
}
.primary-menu > .menu-item { position: relative; }
.primary-menu > .menu-item > .top-link {
	display: flex; align-items: center; gap: 0.375rem;
	color: #fff; font-weight: 700; font-size: clamp(0.78rem, 1.05vw, 0.92rem);
	padding: 0.875rem clamp(0.7rem, 1.4vw, 1.125rem); white-space: nowrap;
	text-shadow: 0 1px 1px rgba(0,0,0,.12);
}
.primary-menu > .menu-item > .top-link:hover,
.primary-menu > .menu-item.has-mega:hover > .top-link,
.primary-menu > .menu-item.is-current > .top-link { background: var(--gold-dark); color: #fff; }
.menu-caret { width: 0.85rem; height: 0.85rem; opacity: .9; }

.primary-menu .sub-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu > .menu-item > .mega-panel {
	position: absolute; top: 100%; left: 0; z-index: 60;
	background: #fff; border: 1px solid var(--line); border-top: 0.1875rem solid var(--red);
	border-radius: 0 0 var(--radius) var(--radius);
	box-shadow: var(--shadow-lg);
	min-width: 28.75rem; max-width: 45rem;
	padding: 1.125rem 1.375rem;
	columns: 2; column-gap: 1.75rem;
	opacity: 0; visibility: hidden; transform: translateY(0.5rem);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.primary-menu > .menu-item.has-mega:hover > .mega-panel,
.primary-menu > .menu-item.has-mega.is-open > .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel .menu-item { break-inside: avoid; }
.mega-panel .menu-link {
	display: block; color: var(--ink); font-size: 0.9rem; padding: 0.4375rem 0.5rem; border-radius: 0.375rem;
}
.mega-panel .menu-link:hover { background: var(--bg-cream); color: var(--red); }

/* =========================================================================
   Generic content
   ========================================================================= */
.site-content { min-height: 40vh; }
.page-shell { max-width: var(--container); margin-inline: auto; padding: 2.5rem var(--gutter) 4rem; }
.entry-title { margin-bottom: 1.5rem; }
.entry-content > * { max-width: 52rem; }
.entry-content img, .entry-content .wp-block-image { max-width: 100%; }
/* WooCommerce pages render through page.php inside .entry-content — exempt them
   from the 52rem prose measure so cart / checkout / account / thank-you use the
   full page width instead of being squeezed and left-aligned. */
.woocommerce-checkout .entry-content > *,
.woocommerce-cart .entry-content > *,
.woocommerce-account .entry-content > *,
.woocommerce-order-received .entry-content > * { max-width: none; }
.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 45rem; margin: 0 auto 2.25rem; }
.section__head p { color: var(--muted); margin: 0; }
.eyebrow { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 0.8rem; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--slate); color: #cfd6dc; margin-top: 4rem; }
/* Homepage ends on the (soft-bg) Reviews section — drop the white gap before the footer. */
.home .site-footer { margin-top: 0; }
.site-footer a { color: #cfd6dc; }
.site-footer a:hover { color: #fff; }
.site-footer__cols {
	display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 2.5rem;
	padding-block: 3.5rem;
}
/* Full-colour logo on a light plate so it stays legible on the dark footer. */
.site-footer .custom-logo { max-height: 4.25rem; width: auto; margin-bottom: 1.1rem; background: #fff; padding: 0.55rem 0.85rem; border-radius: var(--radius); }
.footer-disclaimer__title { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin: 0.25rem 0 0.5rem; }
.footer-about__text { font-size: 0.76rem; line-height: 1.6; color: #9aa5ad; }
.footer-col--about .copyright { margin: 0.9rem 0 0; }
.footer-etransfer { display: block; max-width: 12rem; height: auto; margin-top: 1.1rem; }
.footer-badges { display: block; max-width: 24rem; width: 100%; height: auto; margin-top: 1.5rem; }
.footer-trust { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--gold); font-size: 0.85rem; }
.footer-trust .ll-icon { width: 1.125rem; height: 1.125rem; }
.footer-col__title { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 0.5625rem; }
.footer-menu a { font-size: 0.9rem; }
.footer-newsletter { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.footer-newsletter input { flex: 1; border: 0; border-radius: var(--radius); padding: 0.6875rem 0.875rem; font-size: 0.9rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.125rem; flex-wrap: wrap; }
.copyright, .footer-disclaimer { margin: 0; font-size: 0.8rem; color: #9aa5ad; }

/* =========================================================================
   Homepage
   ========================================================================= */
/* Full-width logo-reveal video hero, with the headline revealed below it. */
.hero--video { background: #000; line-height: 0; overflow: hidden; max-height: 80vh; transition: max-height 1s ease, opacity .7s ease; }
.hero--video.is-ended { max-height: 0; opacity: 0; }
.hero__video { display: block; width: 100%; height: auto; max-height: 78vh; object-fit: cover; }
.hero-intro {
	background: linear-gradient(180deg, var(--bg-cream), #fff);
	border-bottom: 1px solid var(--line);
	text-align: center;
	padding-block: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}
/* Headline starts hidden once the reveal is armed by JS, then fades up. */
.hero-intro.is-armed { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.hero-intro.is-armed.is-revealed { opacity: 1; transform: none; }
.hero-intro__inner { display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 0.25rem 0 1rem; max-width: 22ch; }
.hero__title .accent { color: var(--red); }
.hero__sub { font-size: 1.15rem; color: var(--ink); max-width: 44ch; margin-bottom: 0.75rem; }
.hero__stars { color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 0.1875rem; margin-bottom: 1.375rem; text-decoration: none; cursor: pointer; }
.hero__stars .ll-icon { width: 1.25rem; height: 1.25rem; fill: var(--gold); stroke: var(--gold); }
.hero__stars-cta { margin-left: 0.45rem; font-size: 0.85rem; font-weight: 700; color: var(--slate); }
.hero__stars:hover .hero__stars-cta, .hero__stars:focus-visible .hero__stars-cta { color: var(--red); text-decoration: underline; }
.hero__cta { margin-top: 0.5rem; }

/* Homepage Reviews section (hero stars link down to #reviews) */
html { scroll-behavior: smooth; }
.ll-reviews { text-align: center; }
.ll-reviews__head { max-width: 40rem; margin: 0 auto; }
.ll-reviews__head h2 { margin: 0.25rem 0 0.5rem; }
.ll-reviews__sub { color: var(--muted); font-size: 1.02rem; margin: 0; }
#reviews { scroll-margin-top: 6rem; }
.ll-reviews .hero-testimonials { margin-top: 1.75rem; max-width: 42rem; }
.ll-reviews .hero-tst { gap: 0.6rem; }
.ll-reviews .hero-tst__stars .ll-icon { width: 1.15rem; height: 1.15rem; }
.ll-reviews .hero-tst__quote { font-size: 1.2rem; line-height: 1.5; color: var(--ink); max-width: 38rem; }
.ll-reviews .hero-tst__cite { font-size: 0.9rem; margin-top: 0.2rem; }

/* Rotating testimonials component */
.hero-testimonials { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 34rem; margin: 2rem auto 0; }
.hero-tst__track { display: grid; width: 100%; }
.hero-tst {
	grid-area: 1 / 1; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
	opacity: 0; visibility: hidden; transition: opacity .55s ease; pointer-events: none;
}
.hero-tst.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-tst__stars { display: inline-flex; gap: 0.1rem; line-height: 0; }
.hero-tst__stars .ll-icon { width: 1rem; height: 1rem; fill: var(--gold-dark); stroke: var(--gold-dark); }
.hero-tst__quote { margin: 0; font-size: 1.02rem; line-height: 1.55; color: var(--slate); font-style: italic; max-width: 32rem; }
.hero-tst__quote::before { content: '\201C'; }
.hero-tst__quote::after { content: '\201D'; }
.hero-tst__cite { font-size: 0.85rem; color: var(--muted); font-weight: 700; }
.hero-tst__cite span { font-weight: 500; }
.hero-tst__dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.1rem; }
.hero-tst__dot { width: 0.55rem; height: 0.55rem; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; transition: background .2s, transform .2s; }
.hero-tst__dot.is-active { background: var(--gold-dark); transform: scale(1.15); }

/* Mobile: drop the video entirely; the text header + testimonials are the hero. */
@media (max-width: 48em) {
	.hero--video { display: none; }
}

/* Shop by Category: bold heading on a dark band */
.section.ll-cats { padding-top: 0; }
.ll-cats__band { background: var(--slate); text-align: center; padding: 2.4rem 0; margin-bottom: 2.75rem; }
.ll-cats__band .eyebrow { color: var(--gold); margin-bottom: 0.4rem; }
.ll-cats__title { color: #fff; font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0; letter-spacing: 0.01em; }

/* category tiles — flex so an orphan last row centres instead of left-aligning */
.cat-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--gap); }
.cat-tiles > * { flex: 0 1 calc((100% - 2 * var(--gap)) / 3); }
.cat-tile {
	position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center;
	min-height: 12.5rem; border-radius: var(--radius-lg); overflow: hidden; text-align: center;
	background: var(--slate); color: #fff; box-shadow: var(--shadow);
	transition: transform .15s ease, box-shadow .15s ease;
}
.cat-tile:hover { transform: translateY(-0.1875rem); box-shadow: var(--shadow-lg); color: #fff; }
.cat-tile__img { position: absolute; inset: 0; }
.cat-tile__img img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(51,62,72,.35), rgba(51,62,72,.72)); }
.cat-tile__body { position: relative; z-index: 2; padding: 1.25rem; }
.cat-tile__title { display: block; color: #fff; margin: 0 0 0.35rem; font-size: 1.67rem; font-weight: 800; letter-spacing: .01em; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.cat-tile__count { display: block; font-size: 0.85rem; color: var(--gold); font-weight: 700; }

/* Image promo cards — Discreet Shipping / Trusted Reviews / Contact Us */
.promo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; background: #000; padding: 0.5rem; }
.promo-card { position: relative; display: flex; flex-direction: column; border: 2px solid var(--red); background: #0d0d0d; text-decoration: none; overflow: hidden; }
.promo-card__img { display: block; height: 15rem; background-size: cover; background-position: center; transition: transform .3s ease; }
.promo-card:hover .promo-card__img { transform: scale(1.04); }
.promo-card__body { text-align: center; padding: 1.1rem 1rem 1.4rem; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.promo-card__title { color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; }
.promo-card__btn { display: inline-block; border: 1px solid rgba(255,255,255,.75); color: #fff; padding: 0.5rem 1.5rem; font-weight: 700; font-size: 0.82rem; border-radius: var(--radius); transition: background .15s ease, border-color .15s ease; }
.promo-card:hover .promo-card__btn { background: var(--red); border-color: var(--red); }
@media (max-width: 53.75em) {
	.promo-cards { grid-template-columns: 1fr; }
	.promo-card__img { height: 12rem; }
}

/* trust band */
.trust { background: var(--bg-soft); }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.trust__item { display: flex; gap: 1rem; align-items: flex-start; }
.trust__icon {
	flex: none; width: 3.25rem; height: 3.25rem; border-radius: 0.75rem;
	background: #fff; color: var(--red); display: grid; place-items: center; box-shadow: var(--shadow);
}
.trust__icon .ll-icon { width: 1.625rem; height: 1.625rem; }
.trust__item h3 { margin: 0.125rem 0 0.25rem; }
.trust__item p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* faq */
.faq__list { max-width: 51rem; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 0.75rem; background: #fff; overflow: hidden; }
.faq-item > summary {
	cursor: pointer; list-style: none; padding: 1.125rem 1.375rem; font-weight: 700; color: var(--slate);
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--gold-dark); font-size: 1.4rem; font-weight: 400; }
.faq-item[open] > summary::after { content: "–"; }
.faq-item__body { padding: 0 1.375rem 1.125rem; color: var(--muted); }

/* stack CTAs */
.stacks { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.stack-card {
	border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; text-align: center;
	background: #fff; box-shadow: var(--shadow); transition: transform .15s ease;
}
.stack-card:hover { transform: translateY(-0.1875rem); }
.stack-card h3 { color: var(--red); }
.stack-card p { color: var(--muted); font-size: 0.92rem; }

/* section heading row with link */
.row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.625rem; }
.row-head h2 { margin: 0; }
.row-head a { font-weight: 700; font-size: 0.9rem; }

/* =========================================================================
   Carousel (CSS scroll-snap)
   ========================================================================= */
.carousel { position: relative; }
.carousel__track {
	display: grid; grid-auto-flow: column; grid-auto-columns: calc(25% - 1.125rem);
	gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	padding-bottom: 0.25rem;
	/* No visible scrollbar: desktop uses the arrows, mobile swipes (touch). */
	scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch;
}
.carousel__track > * { scroll-snap-align: start; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__btn {
	position: absolute; top: 38%; transform: translateY(-50%);
	width: 2.625rem; height: 2.625rem; border-radius: 999px; border: 1px solid var(--line);
	background: #fff; color: var(--slate); cursor: pointer; box-shadow: var(--shadow); display: grid; place-items: center; z-index: 3;
}
.carousel__btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.carousel__btn--prev { left: -0.625rem; }
.carousel__btn--next { right: -0.625rem; }
.carousel__btn svg { width: 1.25rem; height: 1.25rem; transform: rotate(-90deg); } /* next → points right */
.carousel__btn--prev svg { transform: rotate(90deg); } /* prev → points left */

/* =========================================================================
   Posts / search lists
   ========================================================================= */
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.post-list--compact { grid-template-columns: 1fr; gap: 0.75rem; }
.post-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.25rem; background: #fff; }
.post-card--compact { padding: 1rem 1.25rem; }
.post-card__title { font-size: 1.1rem; margin: 0 0 0.5rem; }
.post-card__title a { color: var(--slate); }
.post-card__title a:hover { color: var(--red); }
.post-card__meta { color: var(--muted); font-size: 0.82rem; }
.post-card__excerpt { color: var(--muted); font-size: 0.92rem; }
.post-card__media img { border-radius: var(--radius); margin-bottom: 0.75rem; }

.search-results__head { margin-bottom: 2rem; }
.search-results__count { color: var(--muted); }
.search-results__form { max-width: 28rem; margin-top: 1rem; }
.search-results__form .search-form { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.search-results__form input { flex: 1; border: 0; padding: 0.75rem 1.125rem; outline: none; }
.search-results__form button { border: 0; background: var(--slate); color: #fff; padding: 0 1.375rem; font-weight: 700; cursor: pointer; }
.search-results__section { font-size: 1.25rem; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }

/* =========================================================================
   Responsive (em breakpoints)
   ========================================================================= */
@media (max-width: 64em) {        /* 1024px */
	.carousel__track { grid-auto-columns: calc(33.33% - 1rem); }
	.site-footer__cols { grid-template-columns: 1fr 1fr; }
	.post-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 53.75em) {     /* 860px */
	.carousel__btn { display: none; } /* mobile/tablet: swipe instead of arrows */
	.header-search { display: none; }
	.header-action--search { display: inline-flex; }
	.nav-toggle { display: inline-flex; order: -1; }
	.site-header__bar { grid-template-columns: auto 1fr auto; gap: 0.5rem; }
	/* icon-only actions on mobile so account/cart/support all fit the bar */
	.header-action__label { display: none; }
	.header-actions { gap: 0.15rem; }
	.header-action { padding: 0.375rem 0.4rem; }
	/* shrink the logo + let branding shrink so all four icons fit */
	.site-branding { min-width: 0; }
	.custom-logo, .custom-logo-link img { max-height: 2.5rem; }

	/* Mobile flyout: clean white drawer, black text, red highlight (WCAG AA) */
	.primary-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 22.5rem);
		background: #fff; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 80; padding-top: 0.75rem; }
	.nav-open .primary-nav { transform: translateX(0); box-shadow: var(--shadow-lg); }
	.primary-menu { flex-direction: column; flex-wrap: wrap; justify-content: flex-start; }
	.primary-menu > .menu-item { width: 100%; border-bottom: 1px solid rgba(0,0,0,.08); }
	.primary-menu > .menu-item > .top-link { justify-content: space-between; padding: 1rem 1.25rem; font-size: 1rem; font-weight: 700; color: var(--ink); }
	.primary-menu > .menu-item > .top-link:hover,
	.primary-menu > .menu-item.current-menu-item > .top-link,
	.primary-menu > .menu-item.current-menu-ancestor > .top-link { color: var(--red); }
	.primary-menu > .menu-item > .mega-panel {
		position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
		columns: 1; min-width: 0; max-width: none; padding: 0 0 0.5rem; display: none; background: #fff; border-radius: 0;
	}
	.primary-menu > .menu-item.is-open > .mega-panel { display: block; }
	.mega-panel .menu-link { color: var(--ink); padding: 0.7rem 1.25rem 0.7rem 1.75rem; border-radius: 0; }
	.mega-panel .menu-link:hover,
	.mega-panel .menu-link:focus-visible { background: rgba(181,41,41,.08); color: var(--red); }
	.mega-panel .current-menu-item > .menu-link,
	.mega-panel .current_page_item > .menu-link { color: var(--red); font-weight: 700; background: rgba(181,41,41,.08); box-shadow: inset 3px 0 0 var(--red); }

	.trust__grid, .stacks { grid-template-columns: 1fr 1fr; }
	.cat-tiles > * { flex-basis: calc((100% - var(--gap)) / 2); }
}
@media (max-width: 35em) {        /* 560px */
	.trust__grid, .stacks, .post-list { grid-template-columns: 1fr; }
	.cat-tiles > * { flex-basis: 100%; }
	.carousel__track { grid-auto-columns: calc(80% - 0.75rem); }
	.site-footer__cols { grid-template-columns: 1fr; gap: 1.75rem; }
	.announcement-bar__msg { font-size: 0.72rem; }
}

/* nav backdrop on mobile */
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .2s; z-index: 70; }
.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
/* Lift the header (which contains the drawer) above the backdrop while open,
   so taps land on the menu instead of the mask. */
.nav-open .site-header { z-index: 90; }

/* Cycle guides category archive: centred heading + intro copy */
.category-steroid-cycle-guides .entry-header { text-align: center; }
.category-steroid-cycle-guides .archive-description { text-align: center; max-width: 50rem; margin: 1rem auto 2.5rem; color: var(--ink); line-height: 1.7; }

/* =========================================================================
   Info / guide pages (How to Order, etc.)
   ========================================================================= */
.ll-guide { padding-block: 2.5rem 4rem; }
.ll-guide__head { text-align: center; max-width: 44rem; margin: 0 auto 2.5rem; }
.ll-guide__head h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0.25rem 0 0.6rem; }
.ll-guide__sub { color: var(--muted); font-size: 1.05rem; }

.ll-steps { list-style: none; margin: 0 auto 2.5rem; padding: 0; max-width: 52rem; display: flex; flex-direction: column; gap: 1rem; }
.ll-step { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.35rem; background: #fff; }
.ll-step__num { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.05rem; }
.ll-step__icon { display: grid; place-items: center; color: var(--gold-dark); }
.ll-step__icon .ll-icon { width: 1.5rem; height: 1.5rem; }
.ll-step__body { display: flex; flex-direction: column; gap: 0.15rem; }
.ll-step__title { font-weight: 800; color: var(--slate); font-size: 1.05rem; }
.ll-step__text { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.ll-guide__note { display: flex; align-items: flex-start; gap: 0.7rem; max-width: 52rem; margin: 0 auto 2.5rem; padding: 1rem 1.25rem; background: var(--bg-cream); border: 1px solid var(--gold); border-radius: var(--radius-lg); }
.ll-guide__note .ll-icon { width: 1.25rem; height: 1.25rem; color: var(--gold-dark); flex: none; margin-top: 0.15rem; }
.ll-guide__note p { margin: 0; font-size: 0.92rem; color: var(--slate); }

.ll-guide__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.ll-guide__card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.ll-guide__card-icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--bg-cream); display: grid; place-items: center; margin-bottom: 0.85rem; }
.ll-guide__card-icon .ll-icon { width: 1.5rem; height: 1.5rem; color: var(--gold-dark); }
.ll-guide__card h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.ll-guide__card p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; margin: 0 0 1rem; }
.ll-guide__card-link { margin-top: auto; font-weight: 700; color: var(--red); }
.ll-guide__card-link:hover { color: var(--red-dark); }

.ll-guide__cta { text-align: center; padding: 2.5rem 1.5rem; background: var(--bg-soft); border-radius: var(--radius-lg); }
.ll-guide__cta h2 { margin: 0 0 1rem; }

@media (max-width: 53.75em) {
	.ll-guide__cards { grid-template-columns: 1fr; }
}
@media (max-width: 35em) {
	.ll-step { grid-template-columns: auto 1fr; }
	.ll-step__icon { display: none; }
}

/* Policy / info pages (Shipping, Privacy) */
.policy-banner { display: block; line-height: 0; }
.policy-banner img { width: 100%; height: auto; display: block; }
.ll-policy { max-width: 56rem; padding-block: 2.5rem 3rem; }
.ll-policy__head h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 1.5rem; }
.ll-policy__body h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--gold); }
.ll-policy__body p, .ll-policy__body li { color: var(--ink); line-height: 1.7; }
.ll-policy__body ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.ll-policy__body li { margin-bottom: 0.45rem; }
.ll-policy__body a { font-weight: 600; }

/* =========================================================================
   Blog index / archives (toolbar + cards)
   ========================================================================= */
.ll-blog__head { max-width: 46rem; margin: 0 auto 1.75rem; text-align: center; }
.ll-blog__title { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin: 0.25rem 0 0.5rem; }
.ll-blog__sub { color: var(--muted); font-size: 1.02rem; }
.ll-blog__empty { text-align: center; color: var(--muted); padding: 2.5rem 0; }

.blog-toolbar { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; margin: 0 0 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.blog-search { display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--bg-soft); width: 100%; max-width: 30rem; }
.blog-search input[type="search"] { flex: 1; border: 0; background: transparent; padding: 0.6rem 1rem; font-size: 0.92rem; outline: none; color: var(--ink); min-width: 0; }
.blog-search button { border: 0; background: var(--slate); color: #fff; padding: 0 1.05rem; cursor: pointer; display: grid; place-items: center; }
.blog-search button:hover { background: var(--red); }
.blog-search button .ll-icon { width: 1.1rem; height: 1.1rem; }
.blog-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.blog-cat { padding: 0.4rem 0.85rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--slate); background: #fff; }
.blog-cat:hover { border-color: var(--gold); color: var(--slate); background: var(--bg-cream); }
.blog-cat.is-active { background: var(--slate); color: #fff; border-color: var(--slate); }

.post-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; padding: 0; overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .15s ease, transform .15s ease; }
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.post-card__media { display: block; }
.post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; margin: 0; border-radius: 0; }
.post-card__inner { display: flex; flex-direction: column; flex: 1; padding: 1.1rem 1.3rem 1.3rem; }
.post-card__cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--gold-dark); margin-bottom: 0.45rem; }
.post-card__title { font-size: 1.1rem; margin: 0 0 0.4rem; line-height: 1.3; }
.post-card__title a { color: var(--slate); }
.post-card__title a:hover { color: var(--red); }
.post-card__meta { color: var(--muted); font-size: 0.8rem; margin: 0 0 0.6rem; }
.post-card__excerpt { color: var(--muted); font-size: 0.92rem; line-height: 1.55; margin: 0; }
.post-card__more { margin-top: 0.9rem; align-self: flex-start; font-weight: 700; color: var(--red); font-size: 0.9rem; }
.post-card__more:hover { color: var(--red-dark); }
.post-card--compact { padding: 1rem 1.25rem; box-shadow: none; }
.post-card--compact:hover { transform: none; box-shadow: var(--shadow); }

@media (max-width: 35em) {
	.blog-toolbar { flex-direction: column; align-items: stretch; }
	.blog-search { flex: 1 1 auto; }
	.blog-cats { justify-content: flex-start; }
}

/* Payment Options trust row */
.ll-pay { padding-bottom: 4rem; }
.ll-pay-trust { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; padding: 2rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-soft); }
.ll-pay-trust__item { margin: 0; text-align: center; }
.ll-pay-trust__item img { display: block; height: auto; margin: 0 auto; }
.ll-pay-trust__item:nth-child(1) img { max-width: 12rem; }
.ll-pay-trust__item:nth-child(2) img { max-width: 24rem; width: 100%; }
.ll-pay-trust__item figcaption { margin-top: 0.6rem; font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* FAQ page */
.ll-faq { max-width: 52rem; }
.ll-faq__group { margin-bottom: 2.5rem; }
.ll-faq__group-title { font-size: 1.3rem; margin: 0 0 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--gold); }
.ll-faq .ll-guide__cta p { margin: 0 0 1rem; color: var(--muted); }
.ll-faq .faq-item__body a { font-weight: 600; }

/* Contact page */
.ll-contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: start; }
.ll-contact__info { display: flex; flex-direction: column; gap: 1rem; }
.ll-contact__card { display: flex; gap: 1rem; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; background: #fff; }
.ll-contact__icon { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--bg-cream); display: grid; place-items: center; color: var(--gold-dark); }
.ll-contact__icon .ll-icon { width: 1.3rem; height: 1.3rem; }
.ll-contact__card h3 { margin: 0 0 0.2rem; font-size: 1.02rem; }
.ll-contact__card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.ll-contact__card a { font-weight: 700; color: var(--red); }
.ll-contact__form { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; background: var(--bg-soft); }
.ll-contact__form-title { margin: 0 0 1.25rem; font-size: 1.4rem; }
.ll-contact__form .lgf-form { max-width: none; }
@media (max-width: 53.75em) { .ll-contact__grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Cycle-guide difficulty filter pills */
.cycle-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 0 auto 2.25rem; }
.cycle-filter__btn { padding: 0.55rem 1.15rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-family: inherit; font-weight: 700; font-size: 0.88rem; color: var(--slate); cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.cycle-filter__btn:hover { border-color: var(--gold); background: var(--bg-cream); }
.cycle-filter__btn.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* =========================================================================
   Mobile UX sweep — search panel, tap targets, anti-zoom inputs
   ========================================================================= */
@media (max-width: 53.75em) {
	/* Tappable search: the header icon now reveals the live-search field as a
	   dropdown panel (the field is otherwise display:none on mobile). */
	.site-header.search-open .header-search {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 0.7rem 1rem 0.85rem;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		z-index: 78;
	}
	.site-header.search-open .header-search .search-form,
	.site-header.search-open .header-search form { display: flex; width: 100%; }
	.site-header.search-open .header-action--search { color: var(--red); }

	/* Comfortable 44px tap targets on the header + nav */
	.header-action, .nav-toggle { min-height: 44px; }
	.primary-menu > .menu-item > .top-link { min-height: 48px; }

	/* 16px form controls stop iOS from zooming the page on focus */
	input[type="text"], input[type="search"], input[type="email"], input[type="tel"],
	input[type="number"], input[type="password"], input[type="url"], select, textarea {
		font-size: 16px;
	}
}
