/* ==========================================================================
   LicenseHub — main stylesheet
   Single-file CSS, ~22KB. No frameworks, no preprocessor — just custom
   properties and modern selectors.
   ==========================================================================
   Index:
   1.  Custom properties
   2.  Reset & base
   3.  Layout primitives (container, grid)
   4.  Buttons & form controls
   5.  Top bar + header
   6.  Language switcher
   7.  Mini-cart drawer
   8.  Hero
   9.  Section heads
   10. Category grid
   11. Product grid (loop cards)
   12. Single product page
   13. Tabs / accordion / FAQ
   14. Reviews + testimonials
   15. Trust strip + footer
   16. Breadcrumbs, archive heads
   17. Utility & responsive
   ========================================================================== */

/* 1. Custom properties ---------------------------------------------------- */
:root {
	--lh-color-primary: #0a3cff;
	--lh-color-primary-dark: #0731cc;
	--lh-color-accent:  #ff7a1a;
	--lh-color-accent-soft: #fff1e6;
	--lh-color-ink:     #0c0d10;
	--lh-color-body:    #2a2d35;
	--lh-color-muted:   #6b7280;
	--lh-color-line:    #e6e9ef;
	--lh-color-line-soft: #f1f3f8;
	--lh-color-bg:      #ffffff;
	--lh-color-surface: #f8f9fc;
	--lh-color-surface-2: #eef2fb;
	--lh-color-success: #0e9b6c;
	--lh-color-success-bg: #e6f8f0;
	--lh-color-danger:  #d32f2f;
	--lh-color-warning: #f59e0b;

	--lh-font-display: 'Bricolage Grotesque', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	--lh-font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

	--lh-radius-sm: 6px;
	--lh-radius-md: 10px;
	--lh-radius-lg: 16px;
	--lh-radius-xl: 24px;

	--lh-shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
	--lh-shadow-sm: 0 4px 12px rgba(15, 23, 42, .06);
	--lh-shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
	--lh-shadow-lg: 0 24px 48px rgba(15, 23, 42, .12);

	--lh-container: 1240px;
	--lh-container-narrow: 820px;

	--lh-ease: cubic-bezier(.4, 0, .2, 1);
}

/* 2. Reset & base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	font-family: var(--lh-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--lh-color-body);
	background: var(--lh-color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--lh-font-display);
	color: var(--lh-color-ink);
	margin: 0 0 .5em;
	line-height: 1.2;
	letter-spacing: -.015em;
	font-weight: 700;
}
h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.0625rem; }

p { margin: 0 0 1em; }

a {
	color: var(--lh-color-primary);
	text-decoration: none;
	transition: color .15s var(--lh-ease);
}
a:hover { color: var(--lh-color-primary-dark); }

ul, ol { padding-left: 1.25em; }

button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

::selection {
	background: var(--lh-color-primary);
	color: white;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -40px;
	left: 8px;
	background: var(--lh-color-ink);
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* 3. Layout primitives ---------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--lh-container);
	margin: 0 auto;
	padding: 0 20px;
}
.container--narrow { max-width: var(--lh-container-narrow); }

/* 4. Buttons & form controls --------------------------------------------- */
.button,
button.button,
input[type="submit"].button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	font-family: var(--lh-font-body);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	border-radius: var(--lh-radius-md);
	border: 1.5px solid transparent;
	background: var(--lh-color-primary);
	color: white;
	cursor: pointer;
	text-decoration: none;
	transition: transform .15s var(--lh-ease), background .15s var(--lh-ease), box-shadow .15s var(--lh-ease);
	white-space: nowrap;
}
.button:hover {
	transform: translateY(-1px);
	box-shadow: var(--lh-shadow-md);
}

.button--primary {
	background: var(--lh-color-primary);
	color: white;
}
.button--primary:hover { background: var(--lh-color-primary-dark); color: white; }

.button--ghost {
	background: transparent;
	color: var(--lh-color-ink);
	border-color: var(--lh-color-line);
}
.button--ghost:hover {
	background: var(--lh-color-surface);
	border-color: var(--lh-color-ink);
	color: var(--lh-color-ink);
}

.button--lg { padding: 16px 28px; font-size: 1rem; }
.button--sm { padding: 8px 14px; font-size: .85rem; }

.button.added::after {
	content: '✓';
	margin-left: 6px;
}
.button.loading {
	pointer-events: none;
	opacity: .75;
}
.button.loading::after {
	content: '';
	display: inline-block;
	width: 14px; height: 14px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: lh-spin .8s linear infinite;
	margin-left: 8px;
}
@keyframes lh-spin { to { transform: rotate(360deg); } }

input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="url"],
select, textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	background: white;
	color: var(--lh-color-ink);
	transition: border-color .15s var(--lh-ease), box-shadow .15s var(--lh-ease);
}
input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: var(--lh-color-primary);
	box-shadow: 0 0 0 3px rgba(10, 60, 255, .12);
}

/* 5. Top bar + header ---------------------------------------------------- */
.top-bar {
	background: linear-gradient(90deg, var(--lh-color-ink) 0%, #1a1d2a 100%);
	color: rgba(255, 255, 255, .85);
	font-size: 0.8125rem;
}
.top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	min-height: 38px;
	flex-wrap: wrap;
}
.top-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.top-bar__item .lh-icon { color: var(--lh-color-accent); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: saturate(140%) blur(8px);
	-webkit-backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--lh-color-line);
}
.site-header__inner {
	display: grid;
	grid-template-columns: auto auto 1fr auto auto;
	gap: 24px;
	align-items: center;
	min-height: 76px;
}
.site-header__menu-toggle {
	display: none;
	background: transparent;
	border: none;
	padding: 8px;
	color: var(--lh-color-ink);
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--lh-color-ink);
	text-decoration: none;
}
.site-logo__mark { display: inline-flex; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo__text strong {
	font-family: var(--lh-font-display);
	font-size: 1.15rem;
	letter-spacing: -.02em;
}
.site-logo__text small {
	font-size: 0.7rem;
	color: var(--lh-color-muted);
	margin-top: 2px;
}

.site-header__nav { justify-self: start; }
.primary-menu {
	list-style: none;
	display: flex;
	gap: 4px;
	margin: 0; padding: 0;
}
.primary-menu li { position: relative; }
.primary-menu a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	color: var(--lh-color-ink);
	font-weight: 500;
	font-size: 0.94rem;
	border-radius: var(--lh-radius-sm);
	transition: background .15s var(--lh-ease), color .15s var(--lh-ease);
}
.primary-menu a:hover {
	background: var(--lh-color-surface);
	color: var(--lh-color-primary);
}
.primary-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 220px;
	background: white;
	border-radius: var(--lh-radius-md);
	box-shadow: var(--lh-shadow-lg);
	padding: 8px;
	list-style: none;
	margin: 4px 0 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity .15s, transform .15s;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.site-header__search {
	position: relative;
	display: flex;
	max-width: 360px;
}
.site-header__search input {
	padding-right: 44px;
	background: var(--lh-color-surface);
	border-color: transparent;
}
.site-header__search input:focus {
	background: white;
}
.site-header__search button {
	position: absolute;
	right: 6px; top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--lh-color-muted);
	padding: 8px;
	border-radius: var(--lh-radius-sm);
}
.site-header__search button:hover { color: var(--lh-color-primary); }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.site-header__account {
	display: inline-flex;
	padding: 9px;
	border-radius: var(--lh-radius-sm);
	color: var(--lh-color-ink);
	transition: background .15s var(--lh-ease);
}
.site-header__account:hover { background: var(--lh-color-surface); }

.header-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px 8px 10px;
	border-radius: var(--lh-radius-md);
	background: var(--lh-color-surface);
	color: var(--lh-color-ink);
	transition: background .15s var(--lh-ease);
}
.header-cart-link:hover { background: var(--lh-color-surface-2); color: var(--lh-color-ink); }
.header-cart-link__icon {
	position: relative;
	display: inline-flex;
}
.header-cart-link__count {
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--lh-color-accent);
	color: white;
	border-radius: 9px;
	font-size: .7rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}
.header-cart-link__meta { display: flex; flex-direction: column; line-height: 1.1; }
.header-cart-link__meta small { font-size: .7rem; color: var(--lh-color-muted); }
.header-cart-link__meta strong { font-size: .9rem; }

/* 6. Language switcher --------------------------------------------------- */
.lang-switcher {
	position: relative;
}
.lang-switcher__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: transparent;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	color: var(--lh-color-ink);
	font-weight: 600;
	font-size: .85rem;
	transition: border-color .15s var(--lh-ease), background .15s var(--lh-ease);
}
.lang-switcher__toggle:hover {
	border-color: var(--lh-color-ink);
	background: var(--lh-color-surface);
}
.lang-switcher__flag { font-size: 1.05rem; line-height: 1; }
.lang-switcher__list {
	list-style: none;
	margin: 6px 0 0;
	padding: 6px;
	position: absolute;
	top: 100%; right: 0;
	min-width: 220px;
	max-height: 60vh;
	overflow-y: auto;
	background: white;
	border-radius: var(--lh-radius-md);
	box-shadow: var(--lh-shadow-lg);
	border: 1px solid var(--lh-color-line-soft);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity .15s, transform .15s;
	z-index: 110;
}
.lang-switcher.is-open .lang-switcher__list {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.lang-switcher__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: var(--lh-radius-sm);
	color: var(--lh-color-ink);
	font-weight: 500;
	font-size: .9rem;
	text-decoration: none;
}
.lang-switcher__item:hover { background: var(--lh-color-surface); color: var(--lh-color-primary); }
.lang-switcher__item.is-active {
	background: var(--lh-color-surface-2);
	color: var(--lh-color-primary);
	font-weight: 700;
}
.lang-switcher__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 16px;
	background: var(--lh-color-surface);
	border-radius: 3px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .03em;
	color: var(--lh-color-body);
	flex-shrink: 0;
}
.lang-switcher__item.is-active .lang-switcher__flag {
	background: rgba(10, 60, 255, .15);
	color: var(--lh-color-primary);
}
.lang-switcher__name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* RTL support for Arabic */
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .lang-switcher__list { right: auto; left: 0; }
html[dir="rtl"] .single-product-grid,
html[dir="rtl"] .cat-grid__inner,
html[dir="rtl"] ul.products,
html[dir="rtl"] .testimonials__grid {
	direction: rtl;
}
html[dir="rtl"] .lh-quantity__btn--minus { order: 2; }
html[dir="rtl"] .lh-quantity__input { order: 1; }
html[dir="rtl"] .lh-quantity__btn--plus { order: 0; }

/* 7. Mini-cart drawer ---------------------------------------------------- */
.mini-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	visibility: hidden;
	pointer-events: none;
}
.mini-cart-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}
.mini-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(12, 13, 16, 0);
	transition: background .25s var(--lh-ease);
}
.mini-cart-drawer.is-open .mini-cart-drawer__overlay {
	background: rgba(12, 13, 16, .55);
}
.mini-cart-drawer__panel {
	position: absolute;
	right: 0; top: 0;
	width: min(420px, 100%);
	height: 100%;
	background: white;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .3s var(--lh-ease);
}
.mini-cart-drawer.is-open .mini-cart-drawer__panel {
	transform: translateX(0);
	box-shadow: var(--lh-shadow-lg);
}
.mini-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--lh-color-line);
}
.mini-cart-drawer__header h3 { margin: 0; font-size: 1.1rem; }
.mini-cart-drawer__close {
	background: transparent;
	border: none;
	padding: 6px;
	color: var(--lh-color-muted);
	border-radius: var(--lh-radius-sm);
}
.mini-cart-drawer__close:hover { background: var(--lh-color-surface); color: var(--lh-color-ink); }
.mini-cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 20px;
	display: flex;
	flex-direction: column;
}

.mini-cart-empty {
	margin: auto;
	text-align: center;
	color: var(--lh-color-muted);
	padding: 40px 0;
}
.mini-cart-empty .lh-icon { color: var(--lh-color-line); margin: 0 auto 12px; }
.mini-cart-empty p { margin: 0 0 16px; font-size: 1rem; }

.mini-cart-list {
	list-style: none;
	margin: 0; padding: 0;
}
.mini-cart-list__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--lh-color-line-soft);
}
.mini-cart-list__thumb {
	width: 56px; height: 56px;
	flex-shrink: 0;
	border-radius: var(--lh-radius-sm);
	overflow: hidden;
	background: var(--lh-color-surface);
}
.mini-cart-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart-list__meta { flex: 1; min-width: 0; }
.mini-cart-list__name {
	display: block;
	color: var(--lh-color-ink);
	font-weight: 600;
	font-size: .9rem;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mini-cart-list__qty { display: block; color: var(--lh-color-muted); font-size: .8rem; margin-top: 2px; }
.mini-cart-list__remove {
	padding: 6px;
	color: var(--lh-color-muted);
	border-radius: var(--lh-radius-sm);
	transition: background .15s, color .15s;
}
.mini-cart-list__remove:hover { background: #fee; color: var(--lh-color-danger); }

.mini-cart-drawer__footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--lh-color-line);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mini-cart-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 4px 0 8px;
}
.mini-cart-subtotal strong { font-size: 1.15rem; color: var(--lh-color-ink); }
.mini-cart-drawer__footer .button { width: 100%; }

/* 8. Hero ---------------------------------------------------------------- */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f8faff 0%, #eef2fb 100%);
	padding: 64px 0 80px;
}
.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(10, 60, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 60, 255, .04) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0));
}
.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .5;
}
.hero__glow--a {
	width: 480px; height: 480px;
	background: var(--lh-color-primary);
	top: -120px; left: -100px;
}
.hero__glow--b {
	width: 380px; height: 380px;
	background: var(--lh-color-accent);
	bottom: -120px; right: 5%;
	opacity: .35;
}
.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: center;
}
.hero__content { animation: lh-fade-up .6s var(--lh-ease) .1s both; }
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 60, 255, .08);
	border: 1px solid rgba(10, 60, 255, .15);
	color: var(--lh-color-primary);
	font-size: .82rem;
	font-weight: 600;
	border-radius: 99px;
	margin-bottom: 22px;
}
.hero__pulse {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--lh-color-primary);
	box-shadow: 0 0 0 0 rgba(10, 60, 255, .5);
	animation: lh-pulse 2s var(--lh-ease) infinite;
}
@keyframes lh-pulse {
	0% { box-shadow: 0 0 0 0 rgba(10, 60, 255, .5); }
	70% { box-shadow: 0 0 0 10px rgba(10, 60, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(10, 60, 255, 0); }
}
.hero__title {
	font-size: clamp(2rem, 4.4vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: -.025em;
	margin-bottom: 18px;
	color: var(--lh-color-ink);
}
.hero__subtitle {
	font-size: 1.1rem;
	color: var(--lh-color-body);
	max-width: 540px;
	margin-bottom: 32px;
}
.hero__ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.hero__signals {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: .88rem;
	color: var(--lh-color-body);
}
.hero__signals li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.hero__signals .lh-icon { color: var(--lh-color-primary); }
.hero__rating-stars { display: inline-flex; gap: 1px; }

.hero__card {
	position: relative;
	animation: lh-fade-up .6s var(--lh-ease) .25s both;
}
.hero__discount-tag {
	position: absolute;
	top: -16px; left: 50%;
	transform: translateX(-50%) rotate(-3deg);
	z-index: 5;
	background: var(--lh-color-accent);
	color: white;
	padding: 8px 18px;
	border-radius: 99px;
	font-weight: 700;
	font-size: .95rem;
	box-shadow: var(--lh-shadow-md);
	font-family: var(--lh-font-display);
}
.hero__card-stack {
	position: relative;
	height: 360px;
}
.hero__product-card {
	position: absolute;
	width: 280px;
	background: white;
	border-radius: var(--lh-radius-lg);
	padding: 24px;
	box-shadow: var(--lh-shadow-lg);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.hero__product-card--back {
	top: 30px;
	right: 0;
	transform: rotate(6deg);
	opacity: .85;
}
.hero__product-card--front {
	top: 90px;
	left: 30px;
	transform: rotate(-3deg);
	z-index: 2;
}
.hero__product-card strong { font-family: var(--lh-font-display); font-size: 1.05rem; color: var(--lh-color-ink); }
.hero__product-card small { color: var(--lh-color-muted); font-size: .82rem; }
.hero__product-icon {
	width: 60px; height: 60px;
	border-radius: var(--lh-radius-md);
	background: var(--lh-color-surface);
	display: grid;
	place-items: center;
	margin-bottom: 8px;
}
.hero__product-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 8px;
}
.hero__product-price del { color: var(--lh-color-muted); font-size: .85rem; }
.hero__product-price ins {
	text-decoration: none;
	font-family: var(--lh-font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lh-color-ink);
}
.hero__product-card .button { margin-top: 12px; width: 100%; }

@keyframes lh-fade-up {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* 9. Section heads ------------------------------------------------------- */
.section-head { margin-bottom: 32px; text-align: center; }
.section-head--row {
	display: flex;
	justify-content: space-between;
	align-items: end;
	text-align: left;
	gap: 24px;
	flex-wrap: wrap;
}
.section-head__title { margin: 0 0 6px; font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
.section-head__sub {
	margin: 0;
	color: var(--lh-color-muted);
	font-size: 1rem;
}
.section-head__sub .lh-rating { vertical-align: middle; }
.section-head__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--lh-color-primary);
	font-weight: 600;
	font-size: .92rem;
}
.section-head__link:hover { gap: 10px; }

/* 10. Category grid ------------------------------------------------------ */
.cat-grid { padding: 64px 0; }
.cat-grid__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.cat-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 26px;
	background: white;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	text-decoration: none;
	color: var(--lh-color-ink);
	position: relative;
	overflow: hidden;
	transition: transform .25s var(--lh-ease), border-color .25s var(--lh-ease), box-shadow .25s var(--lh-ease);
}
.cat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 60%, rgba(10, 60, 255, .04) 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity .25s var(--lh-ease);
}
.cat-card:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: var(--lh-shadow-md);
	color: var(--lh-color-ink);
}
.cat-card:hover::before { opacity: 1; }
.cat-card__icon {
	flex-shrink: 0;
	width: 70px; height: 70px;
	border-radius: var(--lh-radius-md);
	display: grid;
	place-items: center;
	background: var(--lh-color-surface-2);
	color: var(--lh-color-primary);
}
.cat-card--office .cat-card__icon  { background: #fde7e0; color: #d83b01; }
.cat-card--antivirus .cat-card__icon { background: #e3f5ec; color: #0e9b6c; }
.cat-card__body { flex: 1; }
.cat-card__title { margin: 0 0 4px; font-size: 1.15rem; }
.cat-card__desc { margin: 0; color: var(--lh-color-muted); font-size: .9rem; line-height: 1.4; }
.cat-card__count {
	display: inline-block;
	margin-top: 8px;
	font-size: .78rem;
	color: var(--lh-color-primary);
	font-weight: 600;
}
.cat-card__arrow {
	color: var(--lh-color-muted);
	transition: transform .25s var(--lh-ease), color .25s var(--lh-ease);
}
.cat-card:hover .cat-card__arrow {
	transform: translateX(4px);
	color: var(--lh-color-primary);
}

/* 11. Product grid (loop) ----------------------------------------------- */
.product-section { padding: 56px 0; }
.product-section--alt { background: var(--lh-color-surface); }

ul.products {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.product-card {
	display: flex;
	flex-direction: column;
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	overflow: hidden;
	transition: transform .25s var(--lh-ease), border-color .25s var(--lh-ease), box-shadow .25s var(--lh-ease);
	position: relative;
}
.product-card:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: var(--lh-shadow-md);
}

.product-card__link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: inherit;
	text-decoration: none;
}

.product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--lh-color-surface);
	display: grid;
	place-items: center;
	overflow: hidden;
	padding: 16px;
}
.product-card__media img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform .35s var(--lh-ease);
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
/* Force WC's default thumbnail wrappers to fill the slot too. */
.product-card__media a,
.product-card__media .wp-post-image,
.product-card__media .attachment-woocommerce_thumbnail {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.onsale {
	position: absolute;
	top: 12px; left: 12px;
	z-index: 2;
	background: var(--lh-color-accent);
	color: white;
	padding: 5px 10px;
	border-radius: 99px;
	font-size: .78rem;
	font-weight: 700;
	font-family: var(--lh-font-display);
	letter-spacing: -.01em;
}

.product-card__body {
	padding: 16px 18px 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-card__chips {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.chip {
	display: inline-block;
	font-size: .7rem;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--lh-color-muted);
	background: var(--lh-color-surface);
}
.chip--brand { background: rgba(10, 60, 255, .08); color: var(--lh-color-primary); }
.chip--cat   { background: var(--lh-color-surface-2); color: var(--lh-color-body); }

.product-card__title.woocommerce-loop-product__title {
	font-family: var(--lh-font-body);
	font-size: 0.97rem;
	font-weight: 600;
	color: var(--lh-color-ink);
	margin: 0 0 8px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}

.product-card__rating { margin-bottom: 8px; }

.price {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--lh-font-display);
	color: var(--lh-color-ink);
}
.price del {
	font-size: .9rem;
	color: var(--lh-color-muted);
	font-weight: 500;
}
.price ins {
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--lh-color-ink);
}
.price > .amount, .price > bdi { font-size: 1.25rem; font-weight: 700; }

.loop-features {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	font-size: .82rem;
	color: var(--lh-color-muted);
}
.loop-features li {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 2px 0;
}
.loop-features .lh-icon { color: var(--lh-color-success); flex-shrink: 0; }

.product-card__cta { padding: 0 18px 18px; }
.loop-cart-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 11px;
	background: var(--lh-color-ink);
	color: white;
	border-radius: var(--lh-radius-md);
	font-weight: 600;
	font-size: .9rem;
	transition: background .15s var(--lh-ease);
}
.loop-cart-btn:hover { background: var(--lh-color-primary); color: white; }
.loop-cart-btn.loading { background: var(--lh-color-primary); }

/* Star rating */
.lh-rating { display: inline-flex; gap: 1px; vertical-align: middle; }
.lh-rating__star { color: #d4d8e0; }
.lh-rating__star.is-full,
.lh-rating__star.is-half { color: #f5b400; }
.lh-rating__star.is-half {
	background: linear-gradient(90deg, #f5b400 50%, #d4d8e0 50%);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
}
.lh-rating__count {
	margin-left: 6px;
	font-size: .8rem;
	color: var(--lh-color-muted);
	vertical-align: middle;
}

/* 12. Single product page ----------------------------------------------- */
.shop-main { padding: 24px 0 60px; }

.product-pre-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: var(--lh-color-accent-soft);
	border: 1px solid #ffd9b8;
	border-radius: 99px;
	color: #b8550c;
	font-size: .85rem;
	font-weight: 500;
	margin-bottom: 24px;
}
.product-pre-note .lh-icon { color: var(--lh-color-accent); }

.single-product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.single-product-grid__media { position: relative; }
.product-gallery {
	position: relative;
	background: linear-gradient(180deg, #f8faff 0%, #eef2fb 100%);
	border-radius: var(--lh-radius-lg);
	padding: 16px;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	border: 1px solid var(--lh-color-line);
	overflow: hidden;
}
.product-gallery img,
.product-gallery .wp-post-image,
.product-gallery .woocommerce-product-gallery__image img,
.product-gallery .flex-viewport img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.product-gallery .woocommerce-product-gallery__image,
.product-gallery .woocommerce-product-gallery__wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-gallery__sale-badge {
	position: absolute;
	top: 24px; right: 24px;
	background: var(--lh-color-accent);
	color: white;
	padding: 14px 16px;
	border-radius: 50%;
	min-width: 78px;
	min-height: 78px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--lh-font-display);
	box-shadow: var(--lh-shadow-md);
	transform: rotate(-8deg);
	z-index: 5;
}
.product-gallery__sale-badge strong { font-size: 1.4rem; line-height: 1; }
.product-gallery__sale-badge small { font-size: .7rem; letter-spacing: .1em; margin-top: 2px; }

.flex-control-thumbs {
	list-style: none;
	display: flex;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
}
.flex-control-thumbs li {
	width: 70px;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-sm);
	overflow: hidden;
	cursor: pointer;
}
.flex-control-thumbs li.flex-active-slide,
.flex-control-thumbs li:hover { border-color: var(--lh-color-primary); }

.single-product__usp-strip {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
}
.single-product__usp {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: var(--lh-color-surface);
	color: var(--lh-color-body);
	font-size: .82rem;
	font-weight: 500;
	border-radius: 99px;
}
.single-product__usp .lh-icon { color: var(--lh-color-primary); }

.single-product-summary { padding: 0; }
.single-product-summary__chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.single-product-summary__title {
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	margin: 0 0 14px;
	line-height: 1.15;
}
.single-product-summary__rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.single-product-summary__review-link {
	color: var(--lh-color-muted);
	font-size: .85rem;
	border-bottom: 1px dashed currentColor;
}

.single-product-summary__price {
	background: var(--lh-color-surface);
	border-radius: var(--lh-radius-lg);
	padding: 18px 20px;
	margin: 6px 0 18px;
}
.single-product-summary__price .price {
	font-size: 1.1rem;
}
.single-product-summary__price .price ins,
.single-product-summary__price .price > .amount,
.single-product-summary__price .price > bdi {
	font-size: 2rem;
	color: var(--lh-color-ink);
}
.single-product-summary__price .price del { font-size: 1rem; }
.single-product-summary__savings {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}
.savings-pill {
	background: var(--lh-color-accent);
	color: white;
	font-weight: 700;
	font-size: .82rem;
	padding: 3px 9px;
	border-radius: 99px;
	font-family: var(--lh-font-display);
}
.savings-text { color: #b8550c; font-weight: 600; font-size: .9rem; }
.single-product-summary__tax-note {
	display: block;
	color: var(--lh-color-muted);
	font-size: .78rem;
	margin-top: 8px;
}

.single-product-summary__stock { margin-bottom: 18px; }
.stock-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 99px;
	font-size: .85rem;
	font-weight: 600;
}
.stock-pill--ok {
	background: var(--lh-color-success-bg);
	color: var(--lh-color-success);
}
.stock-pill--ok .stock-pill__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--lh-color-success);
	animation: lh-pulse-dot 1.6s ease-in-out infinite;
}
@keyframes lh-pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .55; transform: scale(.85); }
}
.stock-pill--out {
	background: #fef0f0;
	color: var(--lh-color-danger);
}

/* Variations */
.lh-variations { margin: 8px 0 18px; }
.lh-variation { margin-bottom: 16px; }
.lh-variation__label {
	display: block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--lh-color-ink);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.lh-variation__options {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.lh-variation__option {
	cursor: pointer;
	position: relative;
}
.lh-variation__option input { position: absolute; opacity: 0; pointer-events: none; }
.lh-variation__option-label {
	display: inline-block;
	padding: 11px 18px;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	background: white;
	color: var(--lh-color-ink);
	font-weight: 600;
	font-size: .92rem;
	transition: all .15s var(--lh-ease);
}
.lh-variation__option:hover .lh-variation__option-label {
	border-color: var(--lh-color-ink);
}
.lh-variation__option.is-active .lh-variation__option-label,
.lh-variation__option input:checked + .lh-variation__option-label {
	border-color: var(--lh-color-primary);
	background: rgba(10, 60, 255, .04);
	color: var(--lh-color-primary);
	box-shadow: 0 0 0 3px rgba(10, 60, 255, .1);
}

.reset_variations { font-size: .8rem; color: var(--lh-color-muted); }

/* Quantity + add-to-cart row */
.lh-qty-and-cart {
	display: flex;
	gap: 10px;
	align-items: stretch;
	margin: 16px 0;
}
.lh-quantity {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	background: white;
	overflow: hidden;
	height: 52px;
}
.lh-quantity__btn {
	width: 38px; height: 100%;
	background: transparent;
	border: none;
	color: var(--lh-color-muted);
	display: grid;
	place-items: center;
	transition: background .15s, color .15s;
}
.lh-quantity__btn:hover { background: var(--lh-color-surface); color: var(--lh-color-ink); }
.lh-quantity__input {
	width: 48px;
	border: none !important;
	background: transparent !important;
	text-align: center;
	font-weight: 600;
	font-size: .95rem;
	padding: 0 !important;
	height: 100% !important;
	box-shadow: none !important;
	-moz-appearance: textfield;
}
.lh-quantity__input::-webkit-outer-spin-button,
.lh-quantity__input::-webkit-inner-spin-button {
	-webkit-appearance: none; margin: 0;
}
.lh-cart-btn {
	flex: 1;
	height: 52px;
	font-size: 1rem;
	background: var(--lh-color-primary);
}
.lh-cart-btn:hover { background: var(--lh-color-primary-dark); }

.single_variation_wrap { margin-top: 12px; }
.woocommerce-variation-price .price ins,
.woocommerce-variation-price .price > .amount,
.woocommerce-variation-price .price > bdi {
	font-size: 1.5rem; font-weight: 700;
}
.woocommerce-variation-availability { font-size: .85rem; }

/* Trust badges row */
.trust-badges {
	list-style: none;
	margin: 24px 0;
	padding: 18px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	background: var(--lh-color-surface);
	border-radius: var(--lh-radius-lg);
}
.trust-badges__item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.trust-badges__icon {
	width: 38px; height: 38px;
	border-radius: var(--lh-radius-sm);
	background: white;
	color: var(--lh-color-primary);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	box-shadow: var(--lh-shadow-xs);
}
.trust-badges__text strong { display: block; font-size: .85rem; color: var(--lh-color-ink); font-weight: 700; }
.trust-badges__text small { display: block; font-size: .75rem; color: var(--lh-color-muted); margin-top: 1px; }

.delivery-callout {
	display: flex;
	gap: 14px;
	padding: 16px 18px;
	background: linear-gradient(135deg, rgba(10, 60, 255, .04), rgba(10, 60, 255, .08));
	border: 1px solid rgba(10, 60, 255, .15);
	border-radius: var(--lh-radius-lg);
	margin-bottom: 18px;
}
.delivery-callout__icon {
	flex-shrink: 0;
	width: 44px; height: 44px;
	background: white;
	border-radius: var(--lh-radius-md);
	color: var(--lh-color-primary);
	display: grid;
	place-items: center;
	box-shadow: var(--lh-shadow-xs);
}
.delivery-callout strong { display: block; font-size: .92rem; color: var(--lh-color-ink); margin-bottom: 2px; }
.delivery-callout p { margin: 0; font-size: .85rem; color: var(--lh-color-body); }

.single-product-summary__highlights {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
}
.single-product-summary__highlights li {
	display: flex;
	gap: 10px;
	padding: 7px 0;
	font-size: .92rem;
	color: var(--lh-color-body);
}
.single-product-summary__highlights .lh-icon { color: var(--lh-color-success); flex-shrink: 0; margin-top: 3px; }

/* 13. Tabs / accordion / FAQ -------------------------------------------- */
.product-detail-tabs {
	margin-top: 60px;
	border-top: 1px solid var(--lh-color-line);
	padding-top: 32px;
}
.product-detail-tabs__nav {
	display: flex;
	gap: 4px;
	border-bottom: 1.5px solid var(--lh-color-line);
	margin-bottom: 32px;
	overflow-x: auto;
}
.product-detail-tabs__nav button {
	background: transparent;
	border: none;
	padding: 14px 20px;
	font-family: var(--lh-font-body);
	font-weight: 600;
	font-size: .95rem;
	color: var(--lh-color-muted);
	border-bottom: 2.5px solid transparent;
	margin-bottom: -1.5px;
	white-space: nowrap;
	transition: color .15s, border-color .15s;
}
.product-detail-tabs__nav button:hover { color: var(--lh-color-ink); }
.product-detail-tabs__nav button.is-active {
	color: var(--lh-color-primary);
	border-color: var(--lh-color-primary);
}
.tab-count { color: var(--lh-color-muted); font-weight: 500; }

.product-detail-tab { animation: lh-fade .25s var(--lh-ease); }
.product-detail-tab__h2 { margin: 0 0 14px; font-size: 1.4rem; }
.product-detail-tab__lead { color: var(--lh-color-muted); margin-bottom: 20px; max-width: 60ch; }
.product-detail-tab h2 { font-size: 1.35rem; margin: 28px 0 12px; }
.product-detail-tab p { max-width: 70ch; }
@keyframes lh-fade { from { opacity: 0; } to { opacity: 1; } }

.feature-list {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.feature-list__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	background: var(--lh-color-surface);
	border-radius: var(--lh-radius-md);
}
.feature-list__check {
	width: 22px; height: 22px;
	background: var(--lh-color-success);
	color: white;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.sysreq-list {
	list-style: none;
	margin: 0; padding: 0;
	border-radius: var(--lh-radius-md);
	border: 1px solid var(--lh-color-line);
	overflow: hidden;
}
.sysreq-list li {
	display: grid;
	grid-template-columns: 200px 1fr;
	padding: 14px 18px;
	border-bottom: 1px solid var(--lh-color-line-soft);
	background: white;
	gap: 16px;
}
.sysreq-list li:last-child { border-bottom: none; }
.sysreq-list li:nth-child(even) { background: var(--lh-color-surface); }
.sysreq-list strong { color: var(--lh-color-ink); font-size: .9rem; }
.sysreq-list span { color: var(--lh-color-body); font-size: .92rem; }

.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	overflow: hidden;
	background: white;
	transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] {
	border-color: var(--lh-color-primary);
	box-shadow: var(--lh-shadow-sm);
}
.faq-item__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	color: var(--lh-color-ink);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chev {
	color: var(--lh-color-muted);
	transition: transform .2s var(--lh-ease);
	display: inline-flex;
}
.faq-item[open] .faq-item__chev { transform: rotate(45deg); color: var(--lh-color-primary); }
.faq-item__a { padding: 0 20px 18px; color: var(--lh-color-body); }
.faq-item__a p { margin: 0; max-width: 70ch; }

/* 14. Reviews + testimonials -------------------------------------------- */
.testimonials { padding: 64px 0; background: var(--lh-color-surface); }
.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.testimonial {
	background: white;
	border-radius: var(--lh-radius-lg);
	padding: 22px;
	margin: 0;
	border: 1px solid var(--lh-color-line);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.testimonial__head {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testimonial__avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lh-color-primary), #4868ff);
	color: white;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-family: var(--lh-font-display);
}
.testimonial__name { display: block; font-size: .95rem; color: var(--lh-color-ink); }
.testimonial__flag { margin-left: 4px; font-size: .9rem; }
.testimonial__meta { display: block; color: var(--lh-color-muted); font-size: .78rem; }
.testimonial__verified {
	color: var(--lh-color-success);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.testimonial__rating { font-size: 0.9rem; }
.testimonial__text {
	margin: 0;
	color: var(--lh-color-body);
	font-style: normal;
	line-height: 1.55;
	font-size: .95rem;
}
.testimonial__product {
	font-size: .8rem;
	color: var(--lh-color-muted);
	padding-top: 8px;
	border-top: 1px solid var(--lh-color-line-soft);
}

/* WC review form/list */
#reviews { padding-top: 4px; }
.commentlist { list-style: none; margin: 0 0 32px; padding: 0; }
.commentlist .comment_container {
	display: flex;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--lh-color-line-soft);
}
.commentlist img.avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
}
.comment-text .meta { font-size: .85rem; color: var(--lh-color-muted); margin-bottom: 6px; }
.comment-text .meta strong { color: var(--lh-color-ink); margin-right: 6px; }
#review_form input, #review_form textarea {
	margin-bottom: 12px;
}

/* CTA strip */
.cta-strip {
	padding: 56px 0;
	background: linear-gradient(135deg, var(--lh-color-primary) 0%, #2a5cff 100%);
	color: white;
	position: relative;
	overflow: hidden;
}
.cta-strip::after {
	content: '';
	position: absolute;
	top: -50%; right: -10%;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(255,255,255,.15), transparent);
	pointer-events: none;
}
.cta-strip__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.cta-strip h2 { color: white; margin: 0 0 8px; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.cta-strip p { margin: 0; opacity: .9; max-width: 60ch; }
.cta-strip__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-strip__actions .button--ghost {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .25);
	color: white;
}
.cta-strip__actions .button--ghost:hover {
	background: white;
	color: var(--lh-color-primary);
}

/* 15. Trust strip + footer ---------------------------------------------- */
.trust-strip {
	padding: 36px 0;
	background: white;
	border-top: 1px solid var(--lh-color-line);
	border-bottom: 1px solid var(--lh-color-line);
}
.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.trust-strip__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.trust-strip__icon {
	flex-shrink: 0;
	width: 50px; height: 50px;
	background: var(--lh-color-surface);
	border-radius: var(--lh-radius-md);
	color: var(--lh-color-primary);
	display: grid;
	place-items: center;
}
.trust-strip__title { margin: 0 0 3px; font-size: 1rem; color: var(--lh-color-ink); }
.trust-strip__desc { margin: 0; font-size: .85rem; color: var(--lh-color-muted); line-height: 1.4; }

.site-footer {
	background: var(--lh-color-ink);
	color: rgba(255, 255, 255, .7);
	padding: 60px 0 0;
}
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
	gap: 32px;
	padding-bottom: 40px;
}
.site-footer__brand .site-logo { color: white; }
.site-footer__brand .site-logo__text small { color: rgba(255,255,255,.6); }
.site-footer__tagline { font-size: .9rem; max-width: 32ch; margin: 14px 0 14px; line-height: 1.55; }
.site-footer__contact { display: inline-flex; align-items: center; gap: 6px; }
.site-footer__contact a { color: rgba(255, 255, 255, .85); }
.site-footer__contact a:hover { color: white; }
.site-footer__title {
	color: white;
	font-size: .95rem;
	margin: 0 0 16px;
	font-weight: 700;
	letter-spacing: .02em;
}
.site-footer__links {
	list-style: none;
	margin: 0; padding: 0;
}
.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a {
	color: rgba(255, 255, 255, .7);
	font-size: .9rem;
	transition: color .15s var(--lh-ease);
}
.site-footer__links a:hover { color: white; }

.site-footer__newsletter-blurb { font-size: .9rem; margin: 0 0 14px; line-height: 1.5; }
.site-footer__newsletter {
	display: flex;
	background: rgba(255, 255, 255, .08);
	border-radius: var(--lh-radius-md);
	overflow: hidden;
	padding: 4px;
}
.site-footer__newsletter input {
	flex: 1;
	background: transparent;
	border: none;
	color: white;
	padding: 9px 12px;
}
.site-footer__newsletter input:focus { box-shadow: none; }
.site-footer__newsletter input::placeholder { color: rgba(255,255,255,.5); }
.site-footer__newsletter button {
	background: var(--lh-color-primary);
	color: white;
	border: none;
	padding: 9px 16px;
	border-radius: var(--lh-radius-sm);
	font-weight: 600;
	font-size: .85rem;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding: 18px 0;
}
.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.site-footer__bottom small { color: rgba(255,255,255,.55); font-size: .82rem; }
.site-footer__payments {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.site-footer__payments li {
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: rgba(255,255,255,.5);
	padding: 4px 8px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 4px;
}

/* 16. Breadcrumbs + archive heads --------------------------------------- */
.breadcrumbs {
	background: var(--lh-color-surface);
	padding: 12px 0;
	font-size: .85rem;
	color: var(--lh-color-muted);
}
.breadcrumbs a { color: var(--lh-color-body); }
.breadcrumbs a:hover { color: var(--lh-color-primary); }
.breadcrumb-sep { margin: 0 6px; color: var(--lh-color-muted); }
.breadcrumbs span[aria-current] { color: var(--lh-color-ink); font-weight: 500; }

.shop-archive-head {
	margin: 16px 0 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--lh-color-line);
}
.shop-archive-head__title { margin: 0 0 8px; }
.shop-archive-head__desc { color: var(--lh-color-muted); max-width: 65ch; margin: 0; }

.woocommerce-result-count { color: var(--lh-color-muted); font-size: .9rem; margin-bottom: 16px; }
.woocommerce-ordering select { max-width: 240px; }

/* Pagination */
.woocommerce-pagination ul, .pagination .nav-links {
	display: flex;
	gap: 6px;
	list-style: none;
	padding: 0;
	justify-content: center;
	margin: 32px 0;
}
.woocommerce-pagination li a, .woocommerce-pagination li span,
.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-sm);
	color: var(--lh-color-ink);
	text-decoration: none;
	font-weight: 600;
}
.woocommerce-pagination li .current,
.pagination .page-numbers.current {
	background: var(--lh-color-primary);
	color: white;
	border-color: var(--lh-color-primary);
}

/* Archive head (blog) */
.archive-head { margin-bottom: 32px; }
.archive-head__title { margin: 0; }
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.post-card {
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	overflow: hidden;
}
.post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 18px; }
.post-card__title { margin: 0 0 6px; font-size: 1.1rem; }
.post-card__title a { color: var(--lh-color-ink); }
.post-card__meta { font-size: .8rem; color: var(--lh-color-muted); margin-bottom: 8px; }
.post-card__excerpt p { margin: 0 0 12px; font-size: .92rem; }
.post-card__more {
	display: inline-flex;
	gap: 4px;
	align-items: center;
	font-weight: 600;
	font-size: .9rem;
}

.page-article { margin: 32px 0 64px; }
.page-article__head { margin-bottom: 24px; }

/* 17. Utility & responsive ---------------------------------------------- */
@media (max-width: 1024px) {
	.site-header__inner { grid-template-columns: auto auto 1fr auto; }
	.site-header__nav { display: none; }
	.site-header__menu-toggle { display: inline-flex; }
	.hero__inner { grid-template-columns: 1fr; gap: 32px; }
	.hero__card-stack { height: 320px; max-width: 360px; margin: 0 auto; }
	.cat-grid__inner { grid-template-columns: repeat(2, 1fr); }
	ul.products { grid-template-columns: repeat(3, 1fr); }
	.testimonials__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
	.single-product-grid { grid-template-columns: 1fr; gap: 28px; }
	.feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.top-bar__item--hide-sm { display: none; }
	.site-header__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
	.site-header__search { display: none; }
	.site-header__brand .site-logo__text small { display: none; }
	.site-header__brand .site-logo__text strong { font-size: 1rem; }
	.lang-switcher__toggle { padding: 7px 9px; }
	.lang-switcher__code { display: none; }
	.header-cart-link__meta { display: none; }
	.header-cart-link { padding: 8px; background: transparent; }
	.cat-grid__inner { grid-template-columns: 1fr; }
	ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.product-card__body { padding: 12px 14px; }
	.product-card__title.woocommerce-loop-product__title { font-size: .9rem; min-height: 2.5em; }
	.testimonials__grid { grid-template-columns: 1fr; }
	.cta-strip__inner { grid-template-columns: 1fr; text-align: center; }
	.cta-strip__actions { justify-content: center; }
	.trust-strip__grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.section-head--row { flex-direction: column; align-items: flex-start; }
	.product-detail-tabs__nav { padding-bottom: 4px; }
	.trust-badges { grid-template-columns: 1fr; }
	.sysreq-list li { grid-template-columns: 1fr; gap: 4px; }
	.hero { padding: 40px 0 60px; }
	.hero__card-stack { height: 300px; }
	.hero__product-card { width: 240px; }
	.product-gallery { padding: 12px; }
	.lh-qty-and-cart { flex-direction: column; }
	.lh-cart-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* WC compatibility cleanups */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	padding: 12px 18px;
	border-radius: var(--lh-radius-md);
	font-size: .92rem;
	margin-bottom: 16px;
	border-left: 4px solid;
}
.woocommerce-message { background: var(--lh-color-success-bg); border-color: var(--lh-color-success); color: #075c41; }
.woocommerce-info { background: rgba(10, 60, 255, .06); border-color: var(--lh-color-primary); color: var(--lh-color-primary); }
.woocommerce-error { background: #fef0f0; border-color: var(--lh-color-danger); color: #7a1818; list-style: none; padding-left: 18px; }

.woocommerce form .form-row { margin-bottom: 14px; }
.woocommerce form .form-row label { display: block; font-size: .88rem; color: var(--lh-color-ink); font-weight: 500; margin-bottom: 6px; }

.no-results { text-align: center; padding: 80px 0; }
.archive-head { text-align: left; }
