/* ==========================================================================
   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 1fr auto auto;
	gap: 24px;
	align-items: center;
	min-height: 76px;
}

.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);
	position: relative;
	transition: color .18s var(--lh-ease);
}

/* Animated underline that grows from center on hover.
   Each menu item gets its own brand color via [data-menu] selectors below. */
.primary-menu a::before {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2.5px;
	background: currentColor;
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .22s var(--lh-ease);
}
.primary-menu a:hover::before,
.primary-menu a:focus-visible::before,
.primary-menu .current-menu-item > a::before,
.primary-menu .current-menu-parent > a::before {
	transform: scaleX(1);
}

/* Per-item hover colors. Each menu item's text + underline take its own color. */
.primary-menu a[data-menu="shop"]:hover,
.primary-menu a[data-menu="shop"]:focus-visible {
	color: #166534;       /* koyu yeşil */
}
.primary-menu a[data-menu="windows"]:hover,
.primary-menu a[data-menu="windows"]:focus-visible {
	color: #0a3cff;       /* mavi */
}
.primary-menu a[data-menu="office"]:hover,
.primary-menu a[data-menu="office"]:focus-visible {
	color: #ea580c;       /* turuncu */
}
.primary-menu a[data-menu="antivirus"]:hover,
.primary-menu a[data-menu="antivirus"]:focus-visible {
	color: #dc2626;       /* kırmızı */
}
.primary-menu a[data-menu="blog"]:hover,
.primary-menu a[data-menu="blog"]:focus-visible {
	color: #1e3a8a;       /* lacivert */
}
.primary-menu a[data-menu="support"]:hover,
.primary-menu a[data-menu="support"]:focus-visible {
	color: #22c55e;       /* açık yeşil */
}

/* Active page styling — active menu item shows its color permanently */
.primary-menu .current-menu-item > a[data-menu="shop"],
.primary-menu .current-menu-parent > a[data-menu="shop"] { color: #166534; }
.primary-menu .current-menu-item > a[data-menu="windows"],
.primary-menu .current-menu-parent > a[data-menu="windows"] { color: #0a3cff; }
.primary-menu .current-menu-item > a[data-menu="office"],
.primary-menu .current-menu-parent > a[data-menu="office"] { color: #ea580c; }
.primary-menu .current-menu-item > a[data-menu="antivirus"],
.primary-menu .current-menu-parent > a[data-menu="antivirus"] { color: #dc2626; }
.primary-menu .current-menu-item > a[data-menu="blog"],
.primary-menu .current-menu-parent > a[data-menu="blog"] { color: #1e3a8a; }
.primary-menu .current-menu-item > a[data-menu="support"],
.primary-menu .current-menu-parent > a[data-menu="support"] { color: #22c55e; }
.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); }

/* ============================================================
   PRODUCT GRID — auto-fit, fills row completely, no empty slots.
   
   How it works:
     - Each product card has a minimum width (240px)
     - Browser fits as many as possible per row, stretches the rest
     - If 3 products on a wide screen, they spread to fill the row
     - If 4 products, same — they ALWAYS fill the available row
     - No empty slots, no gaps where products "should be"
   ============================================================ */

/* Base — Desktop: 4 sütun; tablet: 3; mobil: 2 */
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products.columns-1,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-5,
ul.products.columns-6 {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	float: none !important;
	box-sizing: border-box !important;
}

/* Reset every WooCommerce default (floats, fixed widths, etc.) on items */
ul.products li,
ul.products li.product,
.woocommerce ul.products li,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li,
.woocommerce-page ul.products li.product {
	width: auto !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	box-sizing: border-box !important;
}

/* ≤480px mobil: kesinlikle 2 sütun */
@media (max-width: 480px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products.columns-1,
	ul.products.columns-2,
	ul.products.columns-3,
	ul.products.columns-4,
	ul.products.columns-5,
	ul.products.columns-6 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}
}

/* Force every wrapper that WooCommerce / theme outputs around the product loop
   to take full width. */
.woocommerce,
.woocommerce-page,
.woocommerce.archive,
.woocommerce-page.archive,
.woocommerce > .woocommerce-products-header,
.woocommerce-page > .woocommerce-products-header,
.shop-archive-wrap,
.shop-archive-wrap > *:not(.shop-archive-head),
.product-section .container,
.product-section .container > *:not(.section-head) {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	clear: both !important;
}

/* Container itself stays at the design max-width. */
.shop-archive-wrap.container,
.product-section .container {
	max-width: var(--lh-container) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Result count + ordering row above the grid. */
.woocommerce-result-count,
.woocommerce-ordering {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	float: none !important;
}
/* Ordering bar — flex row, sort sağa yasla */
.woocommerce-result-count { margin: 0; }
.woocommerce-ordering { margin-left: auto; float: none !important; }
.woocommerce-notices-wrapper { width: 100%; clear: none; }

/* After-loop pagination */
.woocommerce-pagination { clear: none; width: 100%; margin-top: 32px; }

.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: 1rem;
	font-weight: 600;
	color: var(--lh-color-ink);
	margin: 0 0 8px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 4.35em;
	word-break: break-word;
	overflow-wrap: break-word;
}

.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 16px 16px;
	margin-top: auto;
}

/* Modern, balanced "Buy license" button.
   Uses an SVG icon at fixed 16px next to text, both centered as a unit.
   No uppercase, no oversized text — the look should feel premium and calm. */
.product-card .loop-cart-btn,
ul.products li.product .button.add_to_cart_button,
ul.products li.product .added_to_cart {
	/* Reset WooCommerce defaults */
	all: unset;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;

	/* Layout */
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 44px;
	padding: 0 16px;

	/* Type */
	font-family: var(--lh-font-body);
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: 0;
	text-transform: none !important;
	text-decoration: none;
	white-space: nowrap;

	/* Surface */
	background: var(--lh-color-primary);
	color: #fff !important;
	border-radius: var(--lh-radius-md);
	border: 1.5px solid transparent;
	box-shadow: 0 1px 2px rgba(10, 60, 255, .15);
	transition: background .15s var(--lh-ease), transform .12s var(--lh-ease), box-shadow .15s var(--lh-ease);
}

.product-card .loop-cart-btn:hover,
ul.products li.product .button.add_to_cart_button:hover {
	background: var(--lh-color-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(10, 60, 255, .25);
	color: #fff !important;
}

.product-card .loop-cart-btn:active,
ul.products li.product .button.add_to_cart_button:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(10, 60, 255, .15);
}

.product-card .loop-cart-btn:focus-visible {
	outline: 3px solid rgba(10, 60, 255, .35);
	outline-offset: 2px;
}

/* Icon — small, inline, no boxes around it */
.loop-cart-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}
.loop-cart-btn__icon svg,
.loop-cart-btn .lh-icon {
	width: 16px;
	height: 16px;
	display: block;
}

/* Text — never caps, never weirdly tracked */
.loop-cart-btn__text {
	display: inline-flex;
	align-items: center;
	letter-spacing: 0;
	text-transform: none;
}

/* Loading + added states from WooCommerce */
.product-card .loop-cart-btn.loading {
	pointer-events: none;
	opacity: 0.85;
}
.product-card .loop-cart-btn.loading::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 6px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: lh-spin 0.7s linear infinite;
}
.product-card .loop-cart-btn.added::after {
	content: '✓';
	margin-left: 6px;
	font-weight: 700;
}

/* "View cart" link that WooCommerce injects after successful add. Hide it —
   the mini-cart drawer auto-opens and shows the same info more cleanly. */
ul.products li.product .added_to_cart {
	display: none !important;
}

/* 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: 1.1fr 0.9fr;
	gap: 40px;
	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: 24px;
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	border: 1px solid var(--lh-color-line);
	overflow: hidden;
	width: 100%;
}
.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: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
	justify-content: center;
	width: 100%;
}
.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,
.lh-qty-and-cart .quantity {
	display: inline-flex !important;
	align-items: center;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	background: white;
	overflow: hidden;
	height: 52px;
	width: 130px;
	flex-shrink: 0;
}

/* WooCommerce's default qty input (when our override isn't active) */
.lh-qty-and-cart .quantity > input.qty {
	width: 100% !important;
	height: 100% !important;
	border: none !important;
	background: transparent !important;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	padding: 0 !important;
	box-shadow: none !important;
	-moz-appearance: textfield;
}
.lh-qty-and-cart .quantity > input.qty::-webkit-outer-spin-button,
.lh-qty-and-cart .quantity > input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.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;
}
/* Single product Add to Cart row.
   The whole row is a flex container with quantity input + buy button.
   We set fixed widths so the proportion is balanced — Woo's default lets
   the button stretch to whatever which looks awkward. */
.single-product-summary__cart .lh-qty-and-cart,
.lh-qty-and-cart {
	display: flex;
	gap: 12px;
	align-items: stretch;
	width: 100%;
}

/* Quantity input — narrow, fixed width — sits to the left.
   Width is 130px which fits 3-digit qty + both +/- buttons comfortably. */
.lh-qty-and-cart .quantity,
.lh-qty-and-cart .lh-quantity {
	width: 130px;
	flex-shrink: 0;
}

/* The Buy License button — strong override against WooCommerce defaults
   (the default .button.alt is purple; we force our brand blue and keep it
   consistent with the rest of the theme). The button takes the rest of the row. */
.single-product-summary__cart .lh-cart-btn,
.single_add_to_cart_button.lh-cart-btn,
button.single_add_to_cart_button,
.woocommerce-page button.single_add_to_cart_button,
.woocommerce-page #respond input#submit.alt,
.woocommerce-page button.button.alt,
.lh-cart-btn {
	flex: 1 1 auto !important;
	min-width: 0;
	height: 52px;
	padding: 0 22px;
	font-family: var(--lh-font-body) !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	text-decoration: none !important;
	color: #fff !important;
	background: var(--lh-color-primary) !important;
	background-image: none !important;
	border: 1.5px solid transparent !important;
	border-radius: var(--lh-radius-md) !important;
	box-shadow: 0 1px 2px rgba(10, 60, 255, .15) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	cursor: pointer;
	transition: background .15s var(--lh-ease), transform .12s var(--lh-ease), box-shadow .15s var(--lh-ease);
	-webkit-appearance: none;
	appearance: none;
}

.single-product-summary__cart .lh-cart-btn:hover,
.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover,
.woocommerce-page button.button.alt:hover,
.lh-cart-btn:hover {
	background: var(--lh-color-primary-dark) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(10, 60, 255, .25) !important;
}

.single-product-summary__cart .lh-cart-btn:active,
.lh-cart-btn:active {
	transform: translateY(0);
}

.lh-cart-btn:focus-visible {
	outline: 3px solid rgba(10, 60, 255, .35);
	outline-offset: 2px;
}

/* Icon — fixed 18px, sits next to text, both centered as a unit */
.lh-cart-btn .lh-icon,
.lh-cart-btn > svg {
	width: 18px !important;
	height: 18px !important;
	flex-shrink: 0;
	display: inline-block;
}
.lh-cart-btn > span,
.lh-cart-btn > span:last-child {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

/* Loading state — Woo adds .loading class on AJAX */
.lh-cart-btn.loading {
	pointer-events: none;
	opacity: .85;
}
.lh-cart-btn.loading::after {
	content: '';
	display: inline-block;
	width: 14px; height: 14px;
	margin-left: 4px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: lh-spin .7s linear infinite;
}

.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: 24px 0 28px;
	padding-bottom: 0;
	border-bottom: none;
}
.shop-archive-head__title {
	margin: 0 0 6px;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.shop-archive-head__desc {
	color: var(--lh-color-muted);
	max-width: 65ch;
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
}

/* Result count + ordering bar — sit on a single row, separated from header. */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-result-count {
	color: var(--lh-color-muted);
	font-size: .85rem;
	margin: 0 0 18px;
	padding-top: 14px;
	border-top: 1px solid var(--lh-color-line);
}
.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,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.woocommerce ul.products.columns-1,
	.woocommerce ul.products.columns-2,
	.woocommerce ul.products.columns-3,
	.woocommerce ul.products.columns-4,
	.woocommerce ul.products.columns-5,
	.woocommerce ul.products.columns-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
	.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; }

	/* Mobile header: logo on left, controls on right (no hamburger duplicate). */
	.site-header__inner {
		display: flex !important;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		padding: 10px 14px;
	}
	.site-header__brand {
		justify-self: flex-start;
		margin-right: auto;
	}
	.site-header__search { display: none; }
	.site-header__nav { display: none; }
	.site-header__brand .site-logo__text small { display: none; }
	.site-header__brand .site-logo__text strong { font-size: 1rem; }

	/* Right side controls — compact */
	.lang-switcher__toggle { padding: 7px 9px; }
	.lang-switcher__code { display: none; }
	.header-cart-link__meta { display: none; }
	.header-cart-link { padding: 8px; background: transparent; }

	/* Hamburger goes last (right edge) */
	.mobile-menu-toggle { order: 99; }
	.cat-grid__inner { grid-template-columns: 1fr; }
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.woocommerce ul.products.columns-1,
	.woocommerce ul.products.columns-2,
	.woocommerce ul.products.columns-3,
	.woocommerce ul.products.columns-4,
	.woocommerce ul.products.columns-5,
	.woocommerce ul.products.columns-6 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
	.product-card__body { padding: 12px 14px; }
	.product-card__title.woocommerce-loop-product__title { font-size: .93rem; -webkit-line-clamp: 3; min-height: 4.1em; }
	.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; }

/* ============================================================
   18. Blog — archive (sidebar layout) + cards + single
   ============================================================ */

/* ---- Archive header ---- */
.blog-archive { padding: 40px 0 80px; }
.blog-archive__head {
	max-width: 720px;
	margin: 0 auto 40px;
	text-align: center;
}
.blog-archive__eyebrow {
	display: inline-block;
	padding: 5px 14px;
	background: rgba(10, 60, 255, .08);
	color: var(--lh-color-primary);
	border-radius: 99px;
	font-size: .82rem;
	font-weight: 600;
	margin-bottom: 16px;
	letter-spacing: .02em;
}
.blog-archive__title {
	font-size: clamp(1.875rem, 3.6vw, 2.5rem);
	margin: 0 0 12px;
	letter-spacing: -.02em;
}
.blog-archive__sub {
	color: var(--lh-color-muted);
	font-size: 1.02rem;
	line-height: 1.55;
	margin: 0;
}

/* ---- 2-column layout ---- */
.blog-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 36px;
	align-items: start;
}

/* ---- Sidebar (left) ---- */
.blog-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.blog-sidebar__panel {
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	padding: 18px 20px;
}
.blog-sidebar__title {
	margin: 0 0 12px;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--lh-color-muted);
	font-family: var(--lh-font-body);
}

/* Categories list */
.blog-sidebar__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.blog-cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 12px;
	border-radius: var(--lh-radius-sm);
	color: var(--lh-color-body);
	text-decoration: none;
	font-size: .92rem;
	font-weight: 500;
	transition: background .15s var(--lh-ease), color .15s var(--lh-ease);
	gap: 8px;
}
.blog-cat:hover {
	background: var(--lh-color-surface);
	color: var(--lh-color-primary);
}
.blog-cat.is-active {
	background: rgba(10, 60, 255, .08);
	color: var(--lh-color-primary);
	font-weight: 600;
}
.blog-cat__name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}
.blog-cat__count {
	font-size: .75rem;
	color: var(--lh-color-muted);
	background: var(--lh-color-surface);
	padding: 2px 8px;
	border-radius: 99px;
	font-weight: 600;
	flex-shrink: 0;
}
.blog-cat.is-active .blog-cat__count {
	background: rgba(10, 60, 255, .15);
	color: var(--lh-color-primary);
}

/* Tag pills */
.blog-sidebar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.blog-tag-pill {
	display: inline-block;
	padding: 5px 11px;
	background: var(--lh-color-surface);
	color: var(--lh-color-body);
	font-size: .78rem;
	border-radius: 99px;
	text-decoration: none;
	transition: background .15s var(--lh-ease), color .15s var(--lh-ease);
}
.blog-tag-pill:hover {
	background: var(--lh-color-primary);
	color: white;
}

/* Sidebar CTA */
.blog-sidebar__cta {
	background: linear-gradient(135deg, rgba(10, 60, 255, .04) 0%, rgba(255, 122, 26, .04) 100%);
	border-color: rgba(10, 60, 255, .15);
	text-align: center;
}
.blog-sidebar__cta-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--lh-radius-md);
	background: white;
	color: var(--lh-color-primary);
	display: grid;
	place-items: center;
	margin: 0 auto 10px;
	box-shadow: var(--lh-shadow-sm);
}
.blog-sidebar__cta-title {
	margin: 0 0 4px;
	font-size: 1rem;
	color: var(--lh-color-ink);
}
.blog-sidebar__cta-desc {
	margin: 0 0 12px;
	color: var(--lh-color-body);
	font-size: .85rem;
	line-height: 1.4;
}
.blog-sidebar__cta .button { width: 100%; }

/* ---- Post grid (right) — 3 cols on desktop, like the shop loop ---- */
.blog-main { min-width: 0; }
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.blog-card {
	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);
}
.blog-card:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: var(--lh-shadow-md);
}
.blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

/* Thumbnail — matches shop product card aspect ratio */
.blog-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--lh-color-surface);
}
.blog-card__img,
.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s var(--lh-ease);
}
.blog-card:hover .blog-card__img,
.blog-card:hover .blog-card__media img { transform: scale(1.04); }

.blog-card__cover {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: white;
	font-family: var(--lh-font-display);
	font-weight: 700;
	letter-spacing: -.02em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, .15);
}
.blog-card__cover-letter {
	font-size: clamp(2.5rem, 7vw, 4rem);
}

/* Category badge over thumbnail */
.blog-card__cat-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 9px;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--lh-color-ink);
	border-radius: 99px;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	z-index: 2;
}

.blog-card__body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.blog-card__title {
	font-family: var(--lh-font-display);
	font-size: 1.05rem;
	line-height: 1.3;
	margin: 0 0 8px;
	color: var(--lh-color-ink);
	letter-spacing: -.005em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card__excerpt {
	margin: 0 0 12px;
	color: var(--lh-color-body);
	font-size: .87rem;
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card__meta {
	font-size: .78rem;
	color: var(--lh-color-muted);
	margin-top: auto;
}
.blog-card__sep { margin: 0 6px; opacity: .5; }

/* ---- Single article ---- */
.blog-single { padding-bottom: 80px; }

.blog-article__head {
	padding: 32px 0 24px;
	background: linear-gradient(180deg, var(--lh-color-surface) 0%, transparent 100%);
}
.blog-article__crumbs {
	font-size: .85rem;
	color: var(--lh-color-muted);
	margin-bottom: 24px;
}
.blog-article__crumbs a {
	color: var(--lh-color-body);
	text-decoration: none;
}
.blog-article__crumbs a:hover { color: var(--lh-color-primary); }

.blog-article__cat {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(10, 60, 255, .08);
	color: var(--lh-color-primary);
	border-radius: 99px;
	font-size: .8rem;
	font-weight: 600;
	margin-bottom: 16px;
	text-decoration: none;
	letter-spacing: .02em;
}
.blog-article__cat:hover { background: rgba(10, 60, 255, .12); color: var(--lh-color-primary); }

.blog-article__title {
	font-size: clamp(1.875rem, 4.5vw, 2.875rem);
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 0 0 16px;
	color: var(--lh-color-ink);
}
.blog-article__lede {
	font-size: 1.15rem;
	line-height: 1.55;
	color: var(--lh-color-body);
	margin: 0 0 20px;
	max-width: 60ch;
}
.blog-article__meta {
	font-size: .9rem;
	color: var(--lh-color-muted);
}
.blog-article__sep { margin: 0 6px; opacity: .5; }

.blog-article__hero {
	margin: 0 0 40px;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}
.blog-article__hero img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: var(--lh-radius-lg);
}

/* Article body — readable typography */
.blog-article__content {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--lh-color-body);
	padding: 16px 0 0;
}
.blog-article__content > p:first-child {
	font-size: 1.15rem;
	color: var(--lh-color-ink);
}
.blog-article__content p { margin: 0 0 1.4em; }
.blog-article__content h2 {
	font-size: 1.65rem;
	margin: 2em 0 .6em;
	letter-spacing: -.015em;
	color: var(--lh-color-ink);
}
.blog-article__content h3 {
	font-size: 1.25rem;
	margin: 1.6em 0 .5em;
	color: var(--lh-color-ink);
}
.blog-article__content a {
	color: var(--lh-color-primary);
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}
.blog-article__content a:hover { color: var(--lh-color-primary-dark); }
.blog-article__content code {
	background: var(--lh-color-surface);
	padding: 2px 7px;
	border-radius: 4px;
	font-size: .92em;
	font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	color: var(--lh-color-ink);
	border: 1px solid var(--lh-color-line);
}
.blog-article__content pre {
	background: var(--lh-color-ink);
	color: #e6e9ef;
	padding: 18px 22px;
	border-radius: var(--lh-radius-md);
	overflow-x: auto;
	font-size: .9rem;
	line-height: 1.55;
	margin: 1.5em 0;
}
.blog-article__content pre code {
	background: transparent;
	color: inherit;
	border: none;
	padding: 0;
}
.blog-article__content blockquote {
	margin: 1.6em 0;
	padding: 18px 24px;
	border-left: 4px solid var(--lh-color-primary);
	background: var(--lh-color-surface);
	border-radius: 0 var(--lh-radius-md) var(--lh-radius-md) 0;
	font-style: italic;
	color: var(--lh-color-ink);
}
.blog-article__content ul,
.blog-article__content ol {
	margin: 1.2em 0;
	padding-left: 1.4em;
}
.blog-article__content li { margin-bottom: .5em; }
.blog-article__content strong { color: var(--lh-color-ink); font-weight: 600; }
.blog-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--lh-radius-md);
	margin: 1.5em 0;
}

.blog-article__tags {
	margin: 40px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--lh-color-line);
	font-size: .9rem;
	color: var(--lh-color-muted);
}
.blog-article__tags-label {
	font-weight: 600;
	margin-right: 8px;
	color: var(--lh-color-ink);
}
.blog-article__tags a {
	color: var(--lh-color-body);
	text-decoration: none;
	padding: 3px 10px;
	background: var(--lh-color-surface);
	border-radius: 99px;
	font-size: .82rem;
	margin: 0 4px 4px 0;
	display: inline-block;
}
.blog-article__tags a:hover {
	background: var(--lh-color-primary);
	color: white;
}

/* In-article CTA */
.blog-article__cta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: center;
	margin: 48px 0 0;
	padding: 24px 28px;
	background: linear-gradient(135deg, rgba(10, 60, 255, .04) 0%, rgba(255, 122, 26, .04) 100%);
	border: 1px solid rgba(10, 60, 255, .15);
	border-radius: var(--lh-radius-lg);
}
.blog-article__cta-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--lh-radius-md);
	background: white;
	color: var(--lh-color-primary);
	display: grid;
	place-items: center;
	box-shadow: var(--lh-shadow-sm);
	flex-shrink: 0;
}
.blog-article__cta-title {
	margin: 0 0 4px;
	font-size: 1.1rem;
	color: var(--lh-color-ink);
}
.blog-article__cta-desc {
	margin: 0;
	color: var(--lh-color-body);
	font-size: .92rem;
	line-height: 1.5;
}

/* Related posts */
.blog-related {
	background: var(--lh-color-surface);
	padding: 64px 0;
	margin-top: 80px;
}
.blog-related__title {
	margin: 0 0 28px;
	font-size: 1.6rem;
}
.blog-related .blog-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Pagination */
.blog-archive .pagination,
.blog-archive .navigation.pagination {
	margin-top: 48px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.blog-layout { grid-template-columns: 220px 1fr; gap: 24px; }
	.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.blog-related .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
	.blog-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.blog-sidebar {
		position: static;
		order: 2;
	}
	.blog-main { order: 1; }
	.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.blog-card__body { padding: 12px 14px 14px; }
	.blog-card__title { font-size: .95rem; }
	.blog-archive { padding: 24px 0 60px; }
	.blog-archive__head { margin-bottom: 28px; }
	.blog-related .blog-grid { grid-template-columns: 1fr; }
	.blog-article__cta { grid-template-columns: 1fr; text-align: center; }
	.blog-article__cta-icon { margin: 0 auto; }
}
@media (max-width: 480px) {
	.blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   19. Shop sidebar layout (category nav on archive pages)
   ============================================================ */

/* 2-column layout container */
.shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	align-items: start;
}

/* Sidebar */
.shop-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.shop-sidebar__panel {
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	padding: 18px 18px;
}
.shop-sidebar__title {
	margin: 0 0 14px;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--lh-color-muted);
	font-family: var(--lh-font-body);
}

/* Category list */
.shop-sidebar__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.shop-cat {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: var(--lh-radius-md);
	color: var(--lh-color-body);
	text-decoration: none;
	font-size: .94rem;
	font-weight: 500;
	transition: background .15s var(--lh-ease), color .15s var(--lh-ease), transform .12s var(--lh-ease);
	border: 1.5px solid transparent;
}
.shop-cat:hover {
	background: var(--lh-color-surface);
	color: var(--lh-color-primary);
}
.shop-cat:hover .shop-cat__icon {
	color: var(--lh-color-primary);
	background: white;
}
.shop-cat.is-active {
	background: linear-gradient(135deg, rgba(10, 60, 255, .08) 0%, rgba(10, 60, 255, .02) 100%);
	color: var(--lh-color-primary);
	font-weight: 700;
	border-color: rgba(10, 60, 255, .15);
	box-shadow: 0 1px 2px rgba(10, 60, 255, .08);
}
.shop-cat.is-active .shop-cat__icon {
	color: white;
	background: var(--lh-color-primary);
}
.shop-cat.is-active .shop-cat__count {
	background: var(--lh-color-primary);
	color: white;
}

/* Category icon — small box at the start */
.shop-cat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--lh-color-surface);
	color: var(--lh-color-body);
	flex-shrink: 0;
	transition: background .15s var(--lh-ease), color .15s var(--lh-ease);
}
.shop-cat__icon svg { width: 18px; height: 18px; }

.shop-cat__name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.shop-cat__count {
	font-size: .75rem;
	color: var(--lh-color-muted);
	background: var(--lh-color-surface);
	padding: 2px 8px;
	border-radius: 99px;
	font-weight: 700;
	flex-shrink: 0;
	min-width: 24px;
	text-align: center;
}

/* Trust panel (below categories) */
.shop-sidebar__trust {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.shop-sidebar__trust-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.shop-sidebar__trust-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--lh-color-surface);
	color: var(--lh-color-primary);
	display: grid;
	place-items: center;
}
.shop-sidebar__trust-icon svg { width: 16px; height: 16px; }
.shop-sidebar__trust-item strong {
	display: block;
	font-size: .85rem;
	color: var(--lh-color-ink);
	font-weight: 700;
	margin-bottom: 1px;
}
.shop-sidebar__trust-item small {
	display: block;
	font-size: .75rem;
	color: var(--lh-color-muted);
	line-height: 1.35;
}

/* Main content wrapper — keep grid working at full width */
.shop-main { min-width: 0; }

/* ── Shop sayfası ürün grid: sidebar var, o yüzden 3 sütun (desktop) ── */
.shop-layout .shop-main ul.products,
.shop-layout .shop-main .woocommerce ul.products,
.shop-layout .shop-main ul.products.columns-1,
.shop-layout .shop-main ul.products.columns-2,
.shop-layout .shop-main ul.products.columns-3,
.shop-layout .shop-main ul.products.columns-4,
.shop-layout .shop-main ul.products.columns-5,
.shop-layout .shop-main ul.products.columns-6 {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Tablet ≤900px: sidebar daraldığında 2 sütun */
@media (max-width: 900px) {
	.shop-layout .shop-main ul.products,
	.shop-layout .shop-main .woocommerce ul.products,
	.shop-layout .shop-main ul.products[class*="columns-"] {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}

/* Result count + ordering bar */
.shop-layout .shop-main .woocommerce-result-count {
	margin: 0 0 14px;
	padding-top: 0;
	border-top: none;
}
.shop-layout .shop-main .woocommerce-ordering {
	margin: 0 0 14px;
}

/* Sidebar layout responsive: tablet (≤900px) — narrower sidebar */
@media (max-width: 900px) {
	.shop-layout {
		grid-template-columns: 200px 1fr;
		gap: 20px;
	}
}

/* Sidebar layout responsive: mobile (≤720px) — sidebar moves below products */
@media (max-width: 720px) {
	.shop-layout {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}
	.shop-sidebar {
		position: static !important;
		order: 2;
		margin-top: 8px;
	}
	.shop-main { order: 1; }

	/* Hide trust panel on mobile (already in footer) */
	.shop-sidebar__trust { display: none; }

	/* Categories become horizontally scrollable tab strip on mobile */
	.shop-sidebar__panel:first-child {
		padding: 12px 14px;
	}
	.shop-sidebar__cats {
		flex-direction: row;
		overflow-x: auto;
		gap: 8px;
		padding-bottom: 4px;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}
	.shop-sidebar__cats li { flex-shrink: 0; }
	.shop-cat {
		white-space: nowrap;
		padding: 8px 12px;
		font-size: .85rem;
	}
	.shop-cat__count { display: inline-flex; align-items: center; }
	.shop-cat__icon { width: 26px; height: 26px; }
	.shop-cat__icon svg { width: 14px; height: 14px; }

	/* CRITICAL: product grid inside .shop-main on mobile — 2 compact columns.
	   These selectors have higher specificity than the global ul.products
	   rule so they win. */
	.shop-layout .shop-main ul.products,
	.shop-layout .shop-main .woocommerce ul.products,
	.shop-layout .shop-main ul.products.columns-1,
	.shop-layout .shop-main ul.products.columns-2,
	.shop-layout .shop-main ul.products.columns-3,
	.shop-layout .shop-main ul.products.columns-4,
	.shop-layout .shop-main ul.products.columns-5,
	.shop-layout .shop-main ul.products.columns-6 {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
		width: 100% !important;
	}

	/* Compact card content for narrow mobile column */
	.shop-layout .shop-main .product-card {
		border-radius: var(--lh-radius-md);
	}
	.shop-layout .shop-main .product-card__media {
		aspect-ratio: 1 / 1;
	}
	.shop-layout .shop-main .product-card__body {
		padding: 10px 12px 12px !important;
	}
	.shop-layout .shop-main .product-card__brands {
		gap: 4px;
		margin-bottom: 4px;
		flex-wrap: wrap;
	}
	.shop-layout .shop-main .product-card__brand,
	.shop-layout .shop-main .product-card__cat {
		font-size: .65rem !important;
		padding: 1px 5px !important;
	}
	.shop-layout .shop-main .product-card__title {
		font-size: .85rem !important;
		line-height: 1.3 !important;
		margin: 0 0 4px !important;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.shop-layout .shop-main .product-card .lh-rating {
		display: none;
	}
	.shop-layout .shop-main .product-card .price {
		font-size: .9rem !important;
	}
	.shop-layout .shop-main .product-card .price del {
		font-size: .75rem !important;
	}
	.shop-layout .shop-main .product-card__features {
		display: none;
	}
	.shop-layout .shop-main .product-card__cta {
		padding: 0 12px 12px !important;
	}
	.shop-layout .shop-main .loop-cart-btn,
	.shop-layout .shop-main ul.products li.product .button.add_to_cart_button {
		height: 36px !important;
		font-size: .78rem !important;
		padding: 0 8px !important;
		gap: 5px !important;
	}
	.shop-layout .shop-main .loop-cart-btn__icon svg {
		width: 13px !important;
		height: 13px !important;
	}
	.shop-layout .shop-main .product-card__sale {
		font-size: .65rem !important;
		padding: 3px 7px !important;
		top: 8px !important;
		right: 8px !important;
	}

	/* Result count + ordering bar — stack vertically and full width */
	.shop-layout .shop-main .woocommerce-result-count,
	.shop-layout .shop-main .woocommerce-ordering {
		display: block;
		float: none;
		width: 100%;
		margin: 0 0 10px;
	}
	.shop-layout .shop-main .woocommerce-ordering select {
		width: 100%;
		max-width: none;
	}

	/* Page header tighter spacing on mobile */
	.shop-archive-head {
		margin: 12px 0 18px;
		text-align: left;
	}
	.shop-archive-head__title {
		font-size: clamp(1.5rem, 5vw, 1.875rem);
	}
	.shop-archive-head__desc {
		font-size: .92rem;
	}

	/* Pagination */
	.shop-layout .shop-main .woocommerce-pagination,
	.shop-layout .shop-main .pagination {
		margin-top: 24px;
	}
}

/* Very small phones (≤400px) — keep 2 cols but tighter padding */
@media (max-width: 400px) {
	.shop-layout .shop-main ul.products,
	.shop-layout .shop-main .woocommerce ul.products,
	.shop-layout .shop-main ul.products.columns-1,
	.shop-layout .shop-main ul.products.columns-2,
	.shop-layout .shop-main ul.products.columns-3,
	.shop-layout .shop-main ul.products.columns-4 {
		gap: 8px !important;
	}
	.shop-layout .shop-main .product-card__body {
		padding: 8px 10px 10px !important;
	}
	.shop-layout .shop-main .product-card__cta {
		padding: 0 10px 10px !important;
	}
	.shop-layout .shop-main .product-card__title {
		font-size: .8rem !important;
	}
	.shop-layout .shop-main .product-card .price {
		font-size: .85rem !important;
	}
}

/* ============================================================
   20. MOBILE POLISH — guarantees clean layout on phones
   ============================================================ */

/* General container padding on mobile — never let content touch the edges */
@media (max-width: 720px) {
	.container { padding-left: 16px; padding-right: 16px; }
	.container--narrow { padding-left: 16px; padding-right: 16px; }

	/* Hero section gets proper vertical padding */
	.hero { padding: 32px 0 40px; }
	.hero__title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
	.hero__sub { font-size: 1rem; }
	.hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; }
	.hero__ctas .button { width: 100%; justify-content: center; }
	.hero__bullets { flex-direction: column; gap: 8px; align-items: flex-start; }

	/* Section headers */
	.section-head__title { font-size: 1.4rem; }
	.section-head__sub { font-size: .95rem; }
	.section-head--row { flex-direction: column; align-items: flex-start; gap: 8px; }

	/* Product sections */
	.product-section { padding: 36px 0; }

	/* Testimonials grid */
	.testimonials { grid-template-columns: 1fr !important; }

	/* Categories grid on homepage */
	.cat-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
	.cat-tile { padding: 20px; }

	/* Footer */
	.site-footer__cols { grid-template-columns: 1fr !important; gap: 28px; }
	.site-footer__newsletter { grid-column: 1; }
	.site-footer__bottom { flex-direction: column; text-align: center; gap: 12px; }

	/* Single product page */
	.single-product__layout { grid-template-columns: 1fr !important; gap: 24px; }
	.single-product__gallery { position: static; }
	.product-tabs__list { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.product-tabs__list .product-tabs__tab { white-space: nowrap; }

	/* Buy license cart row on single product — stack qty + button */
	.lh-qty-and-cart { flex-direction: column; gap: 10px; }
	.lh-qty-and-cart .quantity,
	.lh-qty-and-cart .lh-quantity { width: 100%; }
	.single-product-summary__cart .lh-cart-btn,
	.lh-cart-btn { width: 100%; }

	/* Mini cart drawer */
	.mini-cart { width: 100% !important; max-width: 100vw !important; }

	/* Cart / checkout pages — make WooCommerce default tables responsive */
	.woocommerce table.shop_table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Search form */
	.search-form { width: 100%; }

	/* Blog single article */
	.blog-article__title { font-size: clamp(1.5rem, 5vw, 2rem); }
	.blog-article__lede { font-size: 1rem; }
	.blog-article__content { font-size: 1rem; line-height: 1.65; }
	.blog-article__content h2 { font-size: 1.3rem; }
	.blog-article__content h3 { font-size: 1.1rem; }
	.blog-article__hero { padding: 0 16px; }
	.blog-article__hero img { max-height: 280px; }
}

/* ---- Header on mobile ---- */
@media (max-width: 900px) {
	.site-header__topbar { display: none; }
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
		padding: 12px 16px;
	}
	.primary-menu { display: none; }  /* Replaced by hamburger menu */
	.site-header__search { display: none; }  /* Search becomes a button */

	/* Mobile menu toggle should be visible */
	.mobile-menu-toggle { display: inline-flex !important; }

	/* Cart icon shows just count, hide price text on small screens */
	.header-cart__price { display: none; }
}

/* ---- Very small phones (≤480px) ---- */
@media (max-width: 480px) {
	.container { padding-left: 14px; padding-right: 14px; }

	/* Product cards on small phones — single column */
	.product-card__title { font-size: .95rem; }
	.product-card .price { font-size: .95rem; }

	/* Blog cards on phones */
	.blog-grid { grid-template-columns: 1fr !important; }

	/* Lang switcher inside mobile header — keep visible but compact */
	.lang-switcher__code { display: none; }

	/* Cart icon takes minimal space */
	.header-cart { padding: 6px 8px; }
}

/* Make sure no element causes horizontal overflow */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }

/* Mobile hamburger toggle button — hidden on desktop, visible on mobile via @media above */
.mobile-menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: var(--lh-color-ink);
	border-radius: var(--lh-radius-md);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.mobile-menu-toggle:hover { background: var(--lh-color-surface); }

/* Mobile menu and overlay — completely hidden on desktop. */
.mobile-menu,
.mobile-menu__overlay {
	display: none;
}

/* On mobile screens, show as fixed slide-in panel */
@media (max-width: 900px) {
	.mobile-menu {
		display: block;
		position: fixed;
		top: 0; right: 0;
		width: 88vw;
		max-width: 360px;
		height: 100vh;
		background: white;
		z-index: 9999;
		transform: translateX(100%);
		transition: transform .25s var(--lh-ease);
		overflow-y: auto;
		box-shadow: -8px 0 32px rgba(0, 0, 0, .12);
		padding: 20px;
	}
	.mobile-menu.is-open { transform: translateX(0); }

	.mobile-menu__overlay {
		display: block;
		position: fixed; inset: 0;
		background: rgba(0, 0, 0, .4);
		z-index: 9998;
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s var(--lh-ease);
	}
	.mobile-menu__overlay.is-open {
		opacity: 1;
		pointer-events: auto;
	}

	.mobile-menu__list {
		list-style: none;
		margin: 24px 0 0;
		padding: 0;
	}
	.mobile-menu__list a {
		display: block;
		padding: 14px 4px;
		color: var(--lh-color-ink);
		text-decoration: none;
		font-size: 1.05rem;
		font-weight: 500;
		border-bottom: 1px solid var(--lh-color-line);
	}
}

/* Mobile menu search */
.mobile-menu__search {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
	border: 1.5px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	padding: 6px;
}
.mobile-menu__search input[type="search"] {
	flex: 1;
	border: none;
	outline: none;
	padding: 6px 8px;
	font-size: 1rem;
	background: transparent;
}
.mobile-menu__search button {
	border: none;
	background: var(--lh-color-primary);
	color: white;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	cursor: pointer;
	display: grid;
	place-items: center;
}

/* ============================================================
   21. MOBILE PRODUCT LISTING — pixel-perfect on phones
   ============================================================ */

/* Tablet (≤900px): 3 columns */
@media (max-width: 900px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products.columns-1,
	ul.products.columns-2,
	ul.products.columns-3,
	ul.products.columns-4,
	ul.products.columns-5,
	ul.products.columns-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}

/* Mobile (≤600px): always 2 columns of compact cards */
@media (max-width: 600px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products.columns-1,
	ul.products.columns-2,
	ul.products.columns-3,
	ul.products.columns-4,
	ul.products.columns-5,
	ul.products.columns-6 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	/* Compact product card on mobile — smaller padding, smaller fonts */
	.product-card {
		border-radius: var(--lh-radius-md);
	}
	.product-card__media {
		aspect-ratio: 1 / 1;
	}
	.product-card__body {
		padding: 10px 12px 12px !important;
	}
	.product-card__brands {
		gap: 4px;
		margin-bottom: 4px;
	}
	.product-card__brand,
	.product-card__cat {
		font-size: .65rem !important;
		padding: 1px 5px !important;
	}
	.product-card__title,
	.product-card__title.woocommerce-loop-product__title {
		font-size: .88rem !important;
		line-height: 1.4 !important;
		margin: 0 0 6px !important;
		-webkit-line-clamp: 3 !important;
		min-height: 4.2em !important;
		word-break: break-word !important;
		overflow-wrap: break-word !important;
	}
	.product-card .lh-rating {
		display: none; /* save vertical space on small phones */
	}
	.product-card .price {
		font-size: .92rem !important;
	}
	.product-card .price del {
		font-size: .75rem !important;
		display: inline;
	}
	.product-card .price ins {
		font-weight: 700 !important;
	}
	.product-card__features {
		display: none; /* feature list takes too much vertical space on mobile */
	}

	/* Cart button on mobile — compact */
	.product-card__cta {
		padding: 0 12px 12px !important;
	}
	.product-card .loop-cart-btn,
	ul.products li.product .button.add_to_cart_button {
		height: 36px !important;
		font-size: .8rem !important;
		padding: 0 10px !important;
		gap: 5px !important;
	}
	.loop-cart-btn__icon svg {
		width: 13px !important;
		height: 13px !important;
	}

	/* Sale badge smaller */
	.product-card__sale {
		font-size: .7rem !important;
		padding: 3px 8px !important;
		top: 8px !important;
		right: 8px !important;
	}
}

/* Tiny phones (≤360px) — still 2 columns, just tighter */
@media (max-width: 360px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products.columns-1,
	ul.products.columns-2,
	ul.products.columns-3,
	ul.products.columns-4,
	ul.products.columns-5,
	ul.products.columns-6 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 8px !important;
	}
	.product-card .lh-rating { display: none; }
	.product-card__title { font-size: .82rem !important; -webkit-line-clamp: 3 !important; min-height: 4.0em !important; }
	.product-card__body { padding: 8px 10px 10px !important; }
}

/* Lazy loading hint — fade in images smoothly when they load */
.product-card__media img,
.blog-card__media img,
.blog-card__img {
	transition: opacity .25s var(--lh-ease);
}
img[loading="lazy"]:not([src]) {
	opacity: 0;
}

/* Performance: avoid layout shift while images load */
.product-card__media,
.blog-card__media {
	background: var(--lh-color-surface);
	min-height: 100px;
}

/* ============================================================
   22. RELATED / UPSELLS / CROSS-SELLS — mobile polish
   ============================================================ */

/* WooCommerce wraps related products in <section class="related products"> or
   <section class="up-sells upsells">. We target both. */
.related.products,
.upsells.products,
.up-sells.products,
.cross-sells {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--lh-color-line);
	clear: both;
}
.related.products > h2,
.upsells.products > h2,
.up-sells.products > h2,
.cross-sells > h2 {
	font-size: 1.5rem;
	margin: 0 0 24px;
	letter-spacing: -.015em;
}

/* Mobile (≤720px): compact cards + horizontal scroll like a carousel */
@media (max-width: 720px) {
	.related.products,
	.upsells.products,
	.up-sells.products,
	.cross-sells {
		margin-top: 40px;
		padding-top: 24px;
	}
	.related.products > h2,
	.upsells.products > h2,
	.up-sells.products > h2,
	.cross-sells > h2 {
		font-size: 1.2rem;
		margin-bottom: 16px;
		padding-left: 4px;
	}

	/* Override grid: make it a horizontal scroll strip */
	.related.products ul.products,
	.upsells.products ul.products,
	.up-sells.products ul.products,
	.cross-sells ul.products {
		display: flex !important;
		grid-template-columns: none !important;
		gap: 12px !important;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding: 4px 4px 16px;
		margin: 0 -16px !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		scrollbar-width: thin;
	}

	/* Each card gets a fixed width so it sits nicely in the scroll strip */
	.related.products ul.products li.product,
	.upsells.products ul.products li.product,
	.up-sells.products ul.products li.product,
	.cross-sells ul.products li.product {
		flex: 0 0 200px !important;
		min-width: 200px !important;
		max-width: 200px !important;
		scroll-snap-align: start;
	}

	/* Compact card content for narrow width */
	.related.products .product-card__media,
	.upsells.products .product-card__media,
	.up-sells.products .product-card__media,
	.cross-sells .product-card__media {
		aspect-ratio: 1 / 1;
	}
	.related.products .product-card__body,
	.upsells.products .product-card__body,
	.up-sells.products .product-card__body,
	.cross-sells .product-card__body {
		padding: 10px 12px 12px !important;
	}
	.related.products .product-card__title,
	.upsells.products .product-card__title,
	.up-sells.products .product-card__title,
	.cross-sells .product-card__title {
		font-size: .85rem !important;
		line-height: 1.3 !important;
		margin-bottom: 4px !important;
		-webkit-line-clamp: 2;
	}
	.related.products .product-card .lh-rating,
	.related.products .product-card__features,
	.upsells.products .product-card__features,
	.up-sells.products .product-card__features {
		display: none;
	}
	.related.products .product-card .price,
	.upsells.products .product-card .price,
	.up-sells.products .product-card .price {
		font-size: .9rem !important;
	}
	.related.products .product-card__cta,
	.upsells.products .product-card__cta,
	.up-sells.products .product-card__cta {
		padding: 0 12px 12px !important;
	}
	.related.products .loop-cart-btn,
	.upsells.products .loop-cart-btn,
	.up-sells.products .loop-cart-btn {
		height: 36px !important;
		font-size: .78rem !important;
		padding: 0 8px !important;
		gap: 5px !important;
	}

	/* Scroll hint shadow on the right edge */
	.related.products,
	.upsells.products,
	.up-sells.products {
		position: relative;
	}

	/* Hide WC's default columns class effect */
	.related.products ul.products.columns-2,
	.related.products ul.products.columns-3,
	.related.products ul.products.columns-4,
	.upsells.products ul.products.columns-2,
	.upsells.products ul.products.columns-3,
	.upsells.products ul.products.columns-4,
	.up-sells.products ul.products.columns-2,
	.up-sells.products ul.products.columns-3,
	.up-sells.products ul.products.columns-4 {
		display: flex !important;
	}
}

/* Very small phones (≤400px) — even smaller cards so 2 fit on screen */
@media (max-width: 400px) {
	.related.products ul.products li.product,
	.upsells.products ul.products li.product,
	.up-sells.products ul.products li.product,
	.cross-sells ul.products li.product {
		flex: 0 0 170px !important;
		min-width: 170px !important;
		max-width: 170px !important;
	}
}

/* ============================================================
   23. MOBILE OVERFLOW SAFETY NET
   Prevents any element from causing horizontal scroll on small screens.
   ============================================================ */

@media (max-width: 720px) {
	/* Hard rule: nothing inside <body> may exceed viewport width */
	html, body { overflow-x: hidden !important; max-width: 100vw; }

	/* Force every common wrapper to fit inside the viewport */
	.site-main,
	.shop-main-wrap,
	.shop-archive-wrap,
	.shop-layout,
	.shop-main,
	.product-section,
	main, section, article {
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
	}

	/* Container padding always 16px on mobile, never more */
	.container {
		padding-left: 16px !important;
		padding-right: 16px !important;
		max-width: 100% !important;
	}

	/* Remove any negative margins that could push content outside the viewport */
	.shop-main ul.products,
	.shop-archive-wrap ul.products,
	.shop-layout ul.products {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Result count + ordering: stack vertically, no float, full width */
	.woocommerce-result-count,
	.woocommerce-ordering {
		display: block !important;
		float: none !important;
		width: 100% !important;
		margin: 0 0 10px !important;
	}
	.woocommerce-ordering select {
		width: 100% !important;
		max-width: none !important;
	}

	/* Product cards: never wider than their column */
	ul.products li.product,
	.product-card {
		max-width: 100% !important;
		min-width: 0 !important;
	}
	.product-card__media,
	.product-card__media img {
		max-width: 100% !important;
	}
}

/* ============================================================
   24. NUCLEAR MOBILE OVERFLOW FIX
   Last-resort rules to prevent ANY horizontal scroll on mobile.
   These are aggressive but necessary when something we can't see is overflowing.
   ============================================================ */

@media (max-width: 720px) {

	/* Step 1: lock the viewport. Nothing — and we mean nothing — escapes 100vw. */
	html {
		overflow-x: hidden !important;
		max-width: 100vw !important;
	}
	body {
		overflow-x: hidden !important;
		max-width: 100vw !important;
		width: 100% !important;
		position: relative !important;
	}

	/* Step 2: every direct child of body must fit. */
	body > * {
		max-width: 100vw !important;
		min-width: 0 !important;
	}

	/* Step 3: every container, section, main, article, aside, div MUST fit. */
	body * {
		max-width: 100% !important;
	}
	/* But allow images, videos, iframes, table cells to behave normally */
	body img, body svg, body video, body iframe {
		max-width: 100% !important;
		height: auto;
	}

	/* Step 4: defeat any element with explicit pixel-width that's too wide. */
	body > div,
	body > main,
	body > section,
	body > header,
	body > footer {
		width: 100% !important;
		max-width: 100vw !important;
		box-sizing: border-box !important;
	}

	/* Step 5: kill any rogue floats (legacy WC habit) */
	.shop-archive-wrap *,
	.shop-layout *,
	.product-section *,
	ul.products * {
		float: none !important;
	}

	/* Step 6: WooCommerce pages — wrap in viewport */
	.woocommerce, .woocommerce-page {
		max-width: 100% !important;
		overflow-x: hidden !important;
	}

	/* Step 7: result count + ordering — alt alta sıkı */
	.woocommerce-result-count,
	.woocommerce-ordering,
	.woocommerce-ordering form,
	.woocommerce-ordering select {
		display: block !important;
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		clear: both !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Step 8: product cards stay in their grid cells */
	ul.products li.product {
		grid-column: span 1 !important;
		float: none !important;
		clear: none !important;
	}

	/* Step 9: gracefully shrink any wide table */
	table {
		display: block !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
	}

	/* Step 10: fix transform-based animations that can extend the layout box */
	.product-card:hover { transform: none !important; }
}

/* ============================================================
   MOBILE OVERHAUL — LicenseHub custom fixes
   ============================================================ */

/* ---- 1. Ürün detay sayfası: resim mobilde tam genişlik ve büyük ---- */
@media (max-width: 1024px) {
	/* Ürün resim alanı: tek sütuna geçince resim daha büyük görünsün */
	.single-product-grid__media {
		width: 100%;
	}
	.product-gallery {
		aspect-ratio: 4 / 3;       /* Daha yatay → resim büyük görünür */
		padding: 20px;
		max-width: 560px;
		margin: 0 auto;
	}
}

@media (max-width: 720px) {
	/* Mobilde resim hemen hemen tam ekran genişliği */
	.product-gallery {
		aspect-ratio: 1 / 1;       /* Kare kutu — resim maksimum boyutta */
		padding: 14px;
		max-width: 100%;
		border-radius: var(--lh-radius-md);
	}
	.product-gallery img,
	.product-gallery .wp-post-image,
	.product-gallery .woocommerce-product-gallery__image img,
	.product-gallery .flex-viewport img {
		width: 100% !important;
		height: 100% !important;
		max-width: 100% !important;
		max-height: 100% !important;
		object-fit: contain !important;
	}
	/* Ürün resmi satış rozeti mobilde daha küçük */
	.product-gallery__sale-badge {
		top: 12px; right: 12px;
		min-width: 58px; min-height: 58px;
		padding: 10px 12px;
	}
	.product-gallery__sale-badge strong { font-size: 1.1rem; }
}

/* ---- 2. Ürün listesi mobil grid — 2 sütun tam uyumlu ---- */
@media (max-width: 720px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	ul.products li.product,
	.woocommerce ul.products li.product {
		width: 100% !important;
		margin: 0 !important;
		float: none !important;
	}
}

@media (max-width: 400px) {
	/* Çok küçük ekranlar — tek sütun */
	ul.products,
	.woocommerce ul.products {
		grid-template-columns: 1fr !important;
	}
}

/* ---- 3. Blog/Archive sayfası mobil ---- */
@media (max-width: 720px) {
	.blog-layout {
		display: flex !important;
		flex-direction: column !important;
		gap: 24px !important;
	}
	.blog-sidebar {
		order: 2; /* Sidebar alta taşı */
		width: 100% !important;
	}
	.blog-main {
		order: 1;
		width: 100% !important;
	}
	.blog-grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}
	.blog-archive__head {
		padding: 20px 0 !important;
	}
	.blog-archive__title {
		font-size: 1.6rem !important;
	}
	.blog-sidebar__cats {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
	}
	.blog-sidebar__cats li {
		flex: 0 0 auto !important;
	}
}

/* ---- 4. Header mobil düzeltmeleri ---- */
@media (max-width: 480px) {
	.site-header__inner {
		padding: 8px 12px !important;
	}
	.site-logo__text strong {
		font-size: .95rem !important;
	}
	/* Sepet ikonu her zaman görünsün */
	.header-cart-link {
		display: inline-flex !important;
	}
}

/* ---- 5. Tek ürün sayfası özet alanı mobil ---- */
@media (max-width: 720px) {
	.single-product-summary__title {
		font-size: 1.4rem !important;
		line-height: 1.3 !important;
	}
	.single-product-summary__price {
		margin: 12px 0 !important;
	}
	.product-detail-tabs__nav {
		overflow-x: auto !important;
		white-space: nowrap !important;
		-webkit-overflow-scrolling: touch !important;
		display: flex !important;
		gap: 4px !important;
		padding-bottom: 8px !important;
	}
	.product-detail-tabs__nav button {
		flex: 0 0 auto !important;
		font-size: .82rem !important;
		padding: 8px 12px !important;
	}
	.trust-badges {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px !important;
	}
}

/* ---- 6. Genel container / overflow koruması ---- */
@media (max-width: 720px) {
	html, body {
		overflow-x: hidden !important;
		max-width: 100vw !important;
	}
	.container {
		padding-left: 14px !important;
		padding-right: 14px !important;
	}
	img {
		max-width: 100% !important;
		height: auto !important;
	}
}

/* ---- 7. Footer mobil ---- */
@media (max-width: 480px) {
	.site-footer__inner {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}
	.site-footer__bottom {
		flex-direction: column !important;
		gap: 8px !important;
		text-align: center !important;
	}
}


/* ================================================================
   KESIN MOBİL ÜRÜN GRID — TÜM SAYFALAR
   Masaüstü: 4 sütun | Tablet ≤1024px: 3 sütun | Mobil ≤768px: 2 sütun
   ================================================================ */

/* Masaüstü (varsayılan) — 4 sütun */
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce ul.products[class*="columns-"],
.product-section ul.products,
.front-page ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* Tablet: ≤1024px → 3 sütun */
@media (max-width: 1024px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.woocommerce ul.products[class*="columns-"],
	.product-section ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}

/* Mobil: ≤768px → 2 sütun, demo tasarımı */
@media (max-width: 768px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.woocommerce ul.products[class*="columns-"],
	.product-section ul.products,
	.shop-layout ul.products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
		padding: 0 12px !important;
		margin: 0 !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	ul.products li.product,
	.woocommerce ul.products li.product {
		width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		float: none !important;
		clear: none !important;
		box-sizing: border-box !important;
	}
	
	/* Ürün kartı - flex layout */
	.product-card {
		display: flex !important;
		flex-direction: column !important;
		height: 100% !important;
	}
	
	.product-card__link {
		display: flex !important;
		flex-direction: column !important;
		flex: 1 !important;
	}
	
	/* Görsel */
	.product-card__media {
		padding: 16px !important;
		background: #f9fafb !important;
	}
	
	.product-card__media img {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 1 / 1 !important;
		object-fit: contain !important;
	}
	
	/* İndirim rozeti */
	.product-card__media .onsale {
		top: 8px !important;
		right: 8px !important;
		left: auto !important;
		font-size: 10px !important;
		font-weight: 600 !important;
		padding: 4px 8px !important;
		border-radius: 12px !important;
	}
	
	/* Body */
	.product-card__body {
		padding: 10px !important;
		flex: 1 !important;
		display: flex !important;
		flex-direction: column !important;
	}
	
	/* Chip'ler */
	.product-card__chips {
		display: flex !important;
		gap: 4px !important;
		flex-wrap: wrap !important;
		margin-bottom: 6px !important;
	}
	
	.chip {
		font-size: 9px !important;
		font-weight: 600 !important;
		padding: 2px 6px !important;
	}
	
	/* Başlık - okunaklı */
	.product-card__title,
	.product-card__title.woocommerce-loop-product__title {
		font-size: 13px !important;
		font-weight: 500 !important;
		line-height: 1.3 !important;
		-webkit-line-clamp: 2 !important;
		min-height: 34px !important;
		max-height: 34px !important;
		margin: 0 0 8px !important;
		display: -webkit-box !important;
		-webkit-box-orient: vertical !important;
		overflow: hidden !important;
		word-break: break-word !important;
	}
	
	/* Rating */
	.product-card__rating {
		font-size: 10px !important;
		margin-bottom: 6px !important;
	}
	
	/* Fiyat */
	.product-card .price {
		margin-bottom: 8px !important;
	}
	
	.product-card .price del {
		display: block !important;
		font-size: 10px !important;
		margin-bottom: 2px !important;
	}
	
	.product-card .price ins,
	.product-card .price .amount,
	.product-card .price > bdi {
		font-size: 16px !important;
		font-weight: 600 !important;
	}
	
	/* Özellikler - GÖR */
	.product-card__features,
	.loop-features {
		display: block !important;
		font-size: 10px !important;
		line-height: 1.4 !important;
		margin: 0 0 10px !important;
		color: var(--color-text-secondary) !important;
	}
	
	.product-card__features li,
	.loop-features li {
		display: flex !important;
		gap: 4px !important;
		margin-bottom: 2px !important;
	}
	
	/* CTA */
	.product-card__cta {
		padding: 0 10px 10px !important;
		margin-top: auto !important;
	}
	
	.product-card .loop-cart-btn,
	ul.products li.product .button.add_to_cart_button {
		width: 100% !important;
		height: 38px !important;
		font-size: 12px !important;
		font-weight: 500 !important;
		padding: 10px !important;
	}
}

/* Çok küçük ekran: ≤380px */
@media (max-width: 380px) {
	ul.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		gap: 8px !important;
		padding: 0 8px !important;
	}
	
	.product-card__body {
		padding: 8px !important;
	}
	
	.product-card__title,
	.product-card__title.woocommerce-loop-product__title {
		font-size: 12px !important;
		min-height: 31px !important;
		max-height: 31px !important;
	}
	
	.product-card .price ins,
	.product-card .price .amount {
		font-size: 14px !important;
	}
	
	.product-card__features,
	.loop-features {
		font-size: 9px !important;
	}
}

/* Container kenar boşluklarını mobilde sıfırla — tam genişlik */
@media (max-width: 768px) {
	.product-section .container,
	.product-section > .container,
	.woocommerce .container,
	.shop-archive-wrap.container {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}
}

/* ================================================================
   ÜRÜN DETAY SAYFASI — Görsel büyütme & USP strip düzeltmesi
   ================================================================ */

/* Media container: gallery + usp-strip dikey sıralı */
.single-product-grid__media {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

/* Ürün galeri kutusu — tam genişlik, büyük */
.single-product-grid__media .product-gallery,
.single-product-grid__media .woocommerce-product-gallery {
	width: 100% !important;
	aspect-ratio: 4 / 3 !important;
	padding: 24px !important;
	box-sizing: border-box !important;
	display: grid !important;
	place-items: center !important;
}

/* Galeri içindeki resim tam alanı kaplasın */
.single-product-grid__media .product-gallery img,
.single-product-grid__media .product-gallery .wp-post-image,
.single-product-grid__media .woocommerce-product-gallery img,
.single-product-grid__media .woocommerce-product-gallery .wp-post-image,
.woocommerce-product-gallery__image img,
.woocommerce-product-gallery__image a img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	display: block !important;
}

/* WooCommerce gallery wrapper tam doldursun */
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
	width: 100% !important;
	height: 100% !important;
}

/* USP strip — galeri altında, ortalı */
.single-product__usp-strip {
	display: flex !important;
	flex-direction: row !important;
	justify-content: center !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
	margin-top: 16px !important;
	padding: 0 !important;
	width: 100% !important;
}

.single-product__usp {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	padding: 7px 16px !important;
	background: var(--lh-color-surface) !important;
	border-radius: 99px !important;
	font-size: .85rem !important;
	font-weight: 500 !important;
	white-space: nowrap !important;
}

/* Masaüstü: grid oranı — sol (görsel) biraz daha geniş */
@media (min-width: 1025px) {
	.single-product-grid {
		grid-template-columns: 1.15fr 0.85fr !important;
		gap: 48px !important;
	}
}

/* Tablet 768px–1024px: yine tek sütun ama görsel büyük */
@media (max-width: 1024px) {
	.single-product-grid {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}
	.single-product-grid__media .product-gallery,
	.single-product-grid__media .woocommerce-product-gallery {
		aspect-ratio: 4 / 3 !important;
		max-width: 600px !important;
		margin: 0 auto !important;
	}
	.single-product__usp-strip {
		max-width: 600px !important;
		margin: 14px auto 0 !important;
	}
}

/* Mobil: tam genişlik görsel */
@media (max-width: 768px) {
	.single-product-grid__media .product-gallery,
	.single-product-grid__media .woocommerce-product-gallery {
		aspect-ratio: 1 / 1 !important;
		max-width: 100% !important;
		padding: 16px !important;
	}
	.single-product__usp-strip {
		flex-direction: column !important;
		align-items: center !important;
		gap: 8px !important;
		max-width: 100% !important;
	}
}

/* ================================================================
   KESİN OVERRIDE — SHOP & KATEGORİ SAYFASI PC GRID DÜZELTMESİ
   Sidebar'lı shop sayfalarında ürünler sol boşluk bırakmadan
   tam .shop-main genişliğini doldurur.
   ================================================================ */

/* shop-main her zaman tam genişlik alır */
.shop-layout {
	display: grid !important;
	grid-template-columns: 260px 1fr !important;
	gap: 32px !important;
	width: 100% !important;
	box-sizing: border-box !important;
}
.shop-main {
	min-width: 0 !important;
	width: 100% !important;
	overflow: hidden !important;
}

/* Ürün grid — shop-main içinde 3 sütun (sidebar var) */
.shop-layout .shop-main ul.products,
.shop-layout .shop-main ul.products[class*="columns-"],
.woocommerce .shop-layout .shop-main ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	box-sizing: border-box !important;
}

/* Ürünler tam hücreyi kaplar */
.shop-layout .shop-main ul.products li.product {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

/* Tablet ≤1024px: sidebar 200px, ürünler 2 sütun */
@media (max-width: 1024px) {
	.shop-layout {
		grid-template-columns: 200px 1fr !important;
		gap: 20px !important;
	}
	.shop-layout .shop-main ul.products,
	.shop-layout .shop-main ul.products[class*="columns-"] {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
}

/* Mobil ≤768px: sidebar üste tab olur, ürünler 2 sütun tam genişlik */
@media (max-width: 768px) {
	.shop-layout {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}
	.shop-sidebar {
		position: static !important;
		order: 2 !important;
	}
	.shop-main {
		order: 1 !important;
		width: 100% !important;
	}
	.shop-layout .shop-main ul.products,
	.shop-layout .shop-main ul.products[class*="columns-"] {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}
}

/* ── Ana sayfa product-section (sidebar yok) — 4 sütun ── */
.product-section .shop-main ul.products,
.product-section ul.products,
.front-page ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 1024px) {
	.product-section ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 768px) {
	.product-section ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* ================================================================
   BLOG SINGLE SAYFA — Çift breadcrumb & içerik genişliği düzeltmesi
   ================================================================ */

/* Blog makale container — 820px dar değil, 960px okunabilir genişlik */
.blog-article__container {
	max-width: 960px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Blog article head breadcrumb container da aynı genişlikte */
.blog-article__head .container {
	max-width: 960px !important;
}

/* İçerik okunabilirlik */
.blog-article__content {
	max-width: 100% !important;
	font-size: 1.05rem !important;
	line-height: 1.75 !important;
}

/* Lede (özet) paragrafı tam genişlik */
.blog-article__lede {
	max-width: 100% !important;
}

/* Blog hero görsel tam genişlik */
.blog-article__hero {
	max-width: 960px !important;
	padding: 0 20px !important;
}

/* Header breadcrumb (licensehub_breadcrumbs) blog single'da
   is_singular('post') kontrolüyle zaten gizlendi (seo-schema.php).
   Yedek olarak CSS ile de gizle */
.lh-blog-single .breadcrumbs {
	display: none !important;
}

/* Blog article head breadcrumb spacing */
.blog-article__crumbs {
	margin-bottom: 20px !important;
	font-size: .88rem !important;
}

/* Makale başlığı tam genişlik */
.blog-article__title {
	max-width: 100% !important;
}

/* CTA banner orantılı */
.blog-article__cta {
	max-width: 100% !important;
}

/* Mobilde blog single */
@media (max-width: 768px) {
	.blog-article__container,
	.blog-article__head .container {
		max-width: 100% !important;
		padding: 0 14px !important;
	}
	.blog-article__title {
		font-size: clamp(1.5rem, 5vw, 2rem) !important;
	}
	.blog-article__content {
		font-size: 1rem !important;
	}
	.blog-article__hero {
		padding: 0 14px !important;
		max-width: 100% !important;
	}
}

/* ================================================================
   DARK MODE — [data-theme="dark"] ile aktifleşir
   ================================================================ */

/* Gece modu renk değişkenleri */
[data-theme="dark"] {
	--lh-color-bg:         #0f1117;
	--lh-color-surface:    #1a1d27;
	--lh-color-surface-2:  #22263a;
	--lh-color-line:       #2e3348;
	--lh-color-line-soft:  #252838;
	--lh-color-ink:        #f0f2ff;
	--lh-color-body:       #b8bdd4;
	--lh-color-muted:      #6b7280;
	--lh-color-primary:    #4d78ff;
	--lh-color-primary-dark: #3a62ff;
	--lh-color-accent:     #ff8c35;
	--lh-color-accent-soft: #2a1a0a;
	--lh-color-success:    #10b981;
	--lh-color-success-bg: #052e1c;
	--lh-color-danger:     #f87171;
	--lh-color-warning:    #fbbf24;
}

/* Arka plan ve metin geçişi */
[data-theme="dark"] body {
	background: var(--lh-color-bg);
	color: var(--lh-color-body);
}

/* Header */
[data-theme="dark"] .site-header {
	background: rgba(15, 17, 23, 0.96) !important;
	border-bottom-color: var(--lh-color-line) !important;
}
[data-theme="dark"] .top-bar {
	background: #080a10 !important;
}

/* Kartlar & paneller */
[data-theme="dark"] .product-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .cat-card,
[data-theme="dark"] .shop-sidebar__panel,
[data-theme="dark"] .blog-sidebar__panel,
[data-theme="dark"] .trust-badge,
[data-theme="dark"] .hero__product-card {
	background: var(--lh-color-surface) !important;
	border-color: var(--lh-color-line) !important;
}

/* Ürün kartı medya alanı */
[data-theme="dark"] .product-card__media,
[data-theme="dark"] .product-gallery {
	background: var(--lh-color-surface-2) !important;
}

/* Input & form */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
	background: var(--lh-color-surface) !important;
	border-color: var(--lh-color-line) !important;
	color: var(--lh-color-ink) !important;
}
[data-theme="dark"] .site-header__search input {
	background: var(--lh-color-surface-2) !important;
	color: var(--lh-color-ink) !important;
}

/* Mobil menü */
[data-theme="dark"] .mobile-menu {
	background: #12151f !important;
}
[data-theme="dark"] .mobile-menu__list a {
	color: var(--lh-color-ink) !important;
}

/* Butonlar */
[data-theme="dark"] .button--ghost {
	border-color: var(--lh-color-line) !important;
	color: var(--lh-color-ink) !important;
}
[data-theme="dark"] .button--ghost:hover {
	background: var(--lh-color-surface) !important;
}

/* Footer */
[data-theme="dark"] .site-footer {
	background: #080a10 !important;
	border-top-color: var(--lh-color-line) !important;
}

/* Ürün detay sayfası */
[data-theme="dark"] .product-detail-tabs__nav {
	background: var(--lh-color-surface) !important;
	border-color: var(--lh-color-line) !important;
}
[data-theme="dark"] .product-detail-tabs__nav button {
	color: var(--lh-color-body) !important;
}
[data-theme="dark"] .product-detail-tabs__nav button.is-active {
	color: var(--lh-color-primary) !important;
	border-bottom-color: var(--lh-color-primary) !important;
}

/* Fiyat renkleri */
[data-theme="dark"] .price ins {
	color: var(--lh-color-ink) !important;
}
[data-theme="dark"] .price del {
	color: var(--lh-color-muted) !important;
}

/* Hero arka plan */
[data-theme="dark"] .hero {
	background: #0a0c14 !important;
}
[data-theme="dark"] .hero__bg {
	opacity: 0.6 !important;
}

/* Section alt arka plan */
[data-theme="dark"] .product-section--alt,
[data-theme="dark"] .cat-grid,
[data-theme="dark"] .trust-strip {
	background: var(--lh-color-surface) !important;
}

/* Chip etiketler */
[data-theme="dark"] .chip {
	background: var(--lh-color-surface-2) !important;
	color: var(--lh-color-muted) !important;
}
[data-theme="dark"] .chip--brand {
	background: rgba(77, 120, 255, 0.15) !important;
	color: var(--lh-color-primary) !important;
}

/* Blog article */
[data-theme="dark"] .blog-article__head {
	background: linear-gradient(180deg, var(--lh-color-surface) 0%, transparent 100%) !important;
}

/* Geçiş animasyonu — her element yumuşak değişsin */
*, *::before, *::after {
	transition-property: background-color, border-color, color, box-shadow;
	transition-duration: 0.25s;
	transition-timing-function: ease;
}

/* ── Dark mode toggle butonu ── */
.lh-dark-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--lh-color-line);
	border-radius: 50%;
	background: var(--lh-color-surface);
	cursor: pointer;
	padding: 0;
	font-size: 1.1rem;
	line-height: 1;
	flex-shrink: 0;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lh-dark-toggle:hover {
	background: var(--lh-color-surface-2);
	border-color: var(--lh-color-primary);
	transform: rotate(15deg);
}

/* Hangi ikon görünür: light modda 🌙, dark modda ☀️ */
.lh-dark-toggle__icon--sun  { display: none; }
.lh-dark-toggle__icon--moon { display: inline; }

[data-theme="dark"] .lh-dark-toggle__icon--sun  { display: inline; }
[data-theme="dark"] .lh-dark-toggle__icon--moon { display: none; }

[data-theme="dark"] .lh-dark-toggle {
	background: var(--lh-color-surface-2) !important;
	border-color: var(--lh-color-line) !important;
}

/* Lang switcher artık kullanılmıyor — gizle */
.lang-switcher { display: none !important; }

/* ================================================================
   SHOP GRID — FLOAT & BOŞLUK KESİN DÜZELTMESİ
   ================================================================ */

/* WooCommerce'in tüm float/clear kalıntılarını sıfırla */
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce ul.products,
.woocommerce ul.products li.product,
.woocommerce-page ul.products,
.woocommerce-page ul.products li.product {
	float: none !important;
	clear: none !important;
}

/* Ordering bar: her zaman flex satır, sort sağda */
.shop-main .woocommerce-result-count,
.woocommerce .woocommerce-result-count,
.shop-ordering-row {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	margin-bottom: 20px !important;
	float: none !important;
	clear: none !important;
}

/* ul.products — sidebar'lı shop için kesin 3 sütun grid */
.shop-layout .shop-main > ul.products,
.shop-layout .shop-main .woocommerce > ul.products,
.shop-layout .shop-main > .woocommerce > ul.products,
.woocommerce .shop-layout .shop-main ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 18px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	float: none !important;
	clear: none !important;
	box-sizing: border-box !important;
}

/* Ürün li: grid hücresini tam doldur */
.shop-layout .shop-main ul.products li.product {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	box-sizing: border-box !important;
}

/* WooCommerce bazen .products'tan önce boş bir div bırakır — gizle */
.shop-main .woocommerce > p.woocommerce-result-count { display: none; }

/* shop-main direkt çocukları arasında flex olmayan öğeleri sıfırla */
.shop-main::before,
.shop-main::after,
.shop-main .woocommerce::before,
.shop-main .woocommerce::after {
	display: none !important;
	content: none !important;
	clear: none !important;
}

/* Tüm :after/:before clear hack'leri kaldır */
.woocommerce ul.products::after,
.woocommerce ul.products::before {
	display: none !important;
	content: none !important;
}

/* shop-main wrapper: flex column — ordering bar üstte, grid altta */
.shop-layout .shop-main {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	min-width: 0 !important;
	width: 100% !important;
}

/* Sayfalama */
.shop-layout .shop-main .woocommerce-pagination {
	width: 100% !important;
	clear: none !important;
	margin-top: 28px !important;
}

/* Tablet ≤1024px */
@media (max-width: 1024px) {
	.shop-layout .shop-main > ul.products,
	.shop-layout .shop-main .woocommerce > ul.products,
	.shop-layout .shop-main > .woocommerce > ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}
	.shop-layout {
		grid-template-columns: 200px 1fr !important;
	}
}

/* Mobil ≤768px */
@media (max-width: 768px) {
	.shop-layout {
		grid-template-columns: 1fr !important;
	}
	.shop-layout .shop-main > ul.products,
	.shop-layout .shop-main .woocommerce > ul.products,
	.shop-layout .shop-main > .woocommerce > ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}
}

/* ================================================================
   SHOP ORDERING BAR — Float izolasyonu
   ================================================================ */
.shop-ordering-bar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	margin-bottom: 20px !important;
	float: none !important;
	clear: both !important;
	overflow: hidden !important; /* float içerir */
}

.shop-ordering-bar .woocommerce-result-count {
	margin: 0 !important;
	float: none !important;
}

.shop-ordering-bar .woocommerce-ordering {
	float: none !important;
	margin: 0 !important;
	margin-left: auto !important;
}

/* ul.products — ordering-bar'dan sonra temiz başlar */
.shop-main .woocommerce > ul.products,
.shop-main > ul.products {
	clear: none !important;
	float: none !important;
	margin-top: 0 !important;
}

/* ================================================================
   ÜRÜN BAŞLIĞI — TAM OKUNAKLI (tüm ekranlar)
   ================================================================ */

/* Desktop & genel */
.product-card__title,
.product-card__title.woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
	font-size: 1rem !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	min-height: 4.35em !important;
	word-break: break-word !important;
	overflow-wrap: break-word !important;
	white-space: normal !important;
	text-overflow: unset !important;
}

/* Tablet ≤1024px */
@media (max-width: 1024px) {
	.product-card__title,
	.product-card__title.woocommerce-loop-product__title,
	ul.products li.product .woocommerce-loop-product__title {
		font-size: .95rem !important;
		-webkit-line-clamp: 3 !important;
		min-height: 4.1em !important;
	}
}

/* Mobil ≤768px — sidebar'lı sayfada kartlar dar, 3 satır yeterli */
@media (max-width: 768px) {
	.product-card__title,
	.product-card__title.woocommerce-loop-product__title,
	ul.products li.product .woocommerce-loop-product__title {
		font-size: .88rem !important;
		line-height: 1.4 !important;
		-webkit-line-clamp: 3 !important;
		min-height: 3.9em !important;
	}
}

/* Çok küçük ekran ≤380px */
@media (max-width: 380px) {
	.product-card__title,
	.product-card__title.woocommerce-loop-product__title {
		font-size: .82rem !important;
		-webkit-line-clamp: 3 !important;
		min-height: 3.7em !important;
	}
}

/* WooCommerce default breadcrumb — tema kendi breadcrumb'ını kullanıyor, bunu gizle */
.woocommerce-breadcrumb {
	display: none !important;
}

/* ================================================================
   FORUM & COMMUNITY SAYFASI — BuddyPress + bbPress
   ================================================================ */

/* ── Forum Hero ── */
.forum-hero {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
	padding: 48px 0 40px;
	border-bottom: 1px solid var(--lh-color-line);
	margin-bottom: 36px;
}
.forum-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--lh-color-primary);
	background: var(--lh-color-surface-2);
	border-radius: 99px;
	padding: 4px 12px;
	margin-bottom: 12px;
}
.forum-hero__title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--lh-color-ink);
	margin: 0 0 12px;
	line-height: 1.2;
}
.forum-hero__desc {
	color: var(--lh-color-body);
	font-size: 1.05rem;
	margin: 0 0 24px;
	max-width: 520px;
}
.forum-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.forum-hero__stats {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.forum-stat-card {
	background: var(--lh-color-surface);
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	padding: 16px 24px;
	text-align: center;
	min-width: 100px;
}
.forum-stat-card strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--lh-color-primary);
	line-height: 1;
}
.forum-stat-card span {
	font-size: .75rem;
	color: var(--lh-color-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* ── Forum Layout ── */
.forum-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 28px;
	align-items: start;
}

/* ── Forum Sidebar ── */
.forum-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.forum-sidebar__panel {
	background: var(--lh-color-surface);
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	padding: 18px;
}
.forum-sidebar__title {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--lh-color-muted);
	margin: 0 0 12px;
}
.forum-sidebar__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.forum-sidebar__cat a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px;
	border-radius: var(--lh-radius-sm);
	color: var(--lh-color-body);
	font-size: .88rem;
	text-decoration: none;
	transition: background .15s, color .15s;
}
.forum-sidebar__cat a:hover,
.forum-sidebar__cat.is-active a {
	background: var(--lh-color-surface-2);
	color: var(--lh-color-primary);
}
.forum-sidebar__cat-count {
	background: var(--lh-color-line);
	color: var(--lh-color-muted);
	font-size: .72rem;
	font-weight: 600;
	border-radius: 99px;
	padding: 2px 7px;
	min-width: 22px;
	text-align: center;
}
.forum-sidebar__stats .forum-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.forum-stats li {
	display: flex;
	justify-content: space-between;
	font-size: .88rem;
}
.forum-stats__label { color: var(--lh-color-muted); }
.forum-stats__val { font-weight: 700; color: var(--lh-color-ink); }

.forum-sidebar__see-all {
	display: block;
	font-size: .82rem;
	color: var(--lh-color-primary);
	text-decoration: none;
	margin-top: 10px;
	text-align: center;
}
.forum-sidebar__see-all:hover { text-decoration: underline; }

/* Aktif üyeler avatarları */
.forum-active-members {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}
.forum-active-member img,
.forum-active-member .avatar {
	width: 36px !important;
	height: 36px !important;
	border-radius: 50% !important;
	border: 2px solid var(--lh-color-bg);
	display: block;
}

/* ── Forum Main ── */
.forum-main { min-width: 0; }

/* Tab bar */
.forum-tab-bar {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid var(--lh-color-line);
	margin-bottom: 24px;
}
.forum-tab {
	padding: 10px 18px;
	font-size: .9rem;
	font-weight: 600;
	color: var(--lh-color-muted);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	border-radius: var(--lh-radius-sm) var(--lh-radius-sm) 0 0;
	transition: color .15s, border-color .15s;
}
.forum-tab:hover { color: var(--lh-color-ink); }
.forum-tab.is-active {
	color: var(--lh-color-primary);
	border-bottom-color: var(--lh-color-primary);
}
.forum-tab-content { display: none; }
.forum-tab-content.is-active { display: block; }

/* ── Forum Category Card ── */
.forum-category-card {
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	margin-bottom: 16px;
	overflow: hidden;
	transition: box-shadow .2s, border-color .2s;
}
.forum-category-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
	border-color: var(--lh-color-primary);
}
.forum-category-card__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
}
.forum-category-card__icon {
	font-size: 1.8rem;
	line-height: 1;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lh-color-surface-2);
	border-radius: var(--lh-radius-md);
}
.forum-category-card__info { flex: 1; min-width: 0; }
.forum-category-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 4px;
}
.forum-category-card__title a {
	color: var(--lh-color-ink);
	text-decoration: none;
}
.forum-category-card__title a:hover { color: var(--lh-color-primary); }
.forum-category-card__desc {
	font-size: .85rem;
	color: var(--lh-color-muted);
	margin: 0;
}
.forum-category-card__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-end;
	flex-shrink: 0;
}
.forum-stat-pill {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--lh-color-surface);
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-sm);
	padding: 6px 12px;
	font-size: .78rem;
	color: var(--lh-color-muted);
	min-width: 60px;
	text-align: center;
}
.forum-stat-pill strong {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--lh-color-ink);
	line-height: 1;
}

/* Son konular listesi */
.forum-recent-topics {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--lh-color-line);
}
.forum-recent-topic {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 24px;
	border-bottom: 1px solid var(--lh-color-line-soft);
	gap: 12px;
}
.forum-recent-topic:last-child { border-bottom: none; }
.forum-recent-topic__title {
	font-size: .88rem;
	color: var(--lh-color-body);
	text-decoration: none;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.forum-recent-topic__title:hover { color: var(--lh-color-primary); }
.forum-recent-topic__meta {
	font-size: .78rem;
	color: var(--lh-color-muted);
	white-space: nowrap;
	flex-shrink: 0;
}
.forum-category-card__more {
	display: block;
	padding: 10px 24px;
	font-size: .82rem;
	color: var(--lh-color-primary);
	text-decoration: none;
	border-top: 1px solid var(--lh-color-line);
	background: var(--lh-color-surface);
}
.forum-category-card__more:hover { background: var(--lh-color-surface-2); }

/* ── Recent Topics List ── */
.forum-topic-list { display: flex; flex-direction: column; gap: 1px; }
.forum-topic-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-md);
	margin-bottom: 8px;
	transition: box-shadow .15s;
}
.forum-topic-row:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.forum-topic-row__avatar img,
.forum-topic-row__avatar .avatar {
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	flex-shrink: 0;
}
.forum-topic-row__info { flex: 1; min-width: 0; }
.forum-topic-row__title {
	display: block;
	font-size: .95rem;
	font-weight: 600;
	color: var(--lh-color-ink);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.forum-topic-row__title:hover { color: var(--lh-color-primary); }
.forum-topic-row__meta { font-size: .78rem; color: var(--lh-color-muted); }
.forum-topic-row__replies {
	text-align: center;
	flex-shrink: 0;
}
.forum-topic-row__replies strong {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--lh-color-ink);
}
.forum-topic-row__replies span { font-size: .72rem; color: var(--lh-color-muted); }

/* ── Members Grid ── */
.forum-members-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}
.forum-member-card {
	background: white;
	border: 1px solid var(--lh-color-line);
	border-radius: var(--lh-radius-lg);
	padding: 20px 14px;
	text-align: center;
	text-decoration: none;
	transition: box-shadow .2s, border-color .2s;
}
.forum-member-card:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
	border-color: var(--lh-color-primary);
}
.forum-member-card__avatar {
	margin: 0 auto 10px;
	width: 60px;
	height: 60px;
}
.forum-member-card__avatar img,
.forum-member-card__avatar .avatar {
	width: 60px !important;
	height: 60px !important;
	border-radius: 50% !important;
}
.forum-member-card__name {
	font-size: .88rem;
	font-weight: 600;
	color: var(--lh-color-ink);
	margin-bottom: 4px;
}
.forum-member-card__active { font-size: .75rem; color: var(--lh-color-muted); }
.forum-members-more { text-align: center; }

/* ── Empty State ── */
.forum-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--lh-color-muted);
}
.forum-empty__icon { font-size: 3rem; margin-bottom: 16px; }
.forum-empty h3 { color: var(--lh-color-ink); margin-bottom: 8px; }

/* ── bbPress default overrides ── */
#bbpress-forums { font-family: var(--lh-font-body) !important; }
#bbpress-forums .bbp-forum-title,
#bbpress-forums .bbp-topic-title,
#bbpress-forums .bbp-reply-title { color: var(--lh-color-ink) !important; }
#bbpress-forums li.bbp-header { background: var(--lh-color-surface) !important; border-color: var(--lh-color-line) !important; }
#bbpress-forums li.bbp-body { border-color: var(--lh-color-line) !important; }
#bbpress-forums .bbp-forums-list li,
#bbpress-forums .bbp-topics-list li,
#bbpress-forums .bbp-replies-list li { border-color: var(--lh-color-line) !important; }
#bbpress-forums .bbp-pagination .bbp-pagination-links a,
#bbpress-forums .bbp-pagination .bbp-pagination-links span { border-radius: var(--lh-radius-sm) !important; }
#bbpress-forums input[type="submit"],
#bbpress-forums button[type="submit"] {
	background: var(--lh-color-primary) !important;
	color: white !important;
	border: none !important;
	border-radius: var(--lh-radius-md) !important;
	padding: 10px 20px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
}
#bbpress-forums input[type="submit"]:hover,
#bbpress-forums button[type="submit"]:hover {
	background: var(--lh-color-primary-dark) !important;
}
#bbpress-forums .bbp-reply-content,
#bbpress-forums .bbp-topic-content { color: var(--lh-color-body) !important; line-height: 1.7 !important; }

/* Dark mode — forum kartları */
[data-theme="dark"] .forum-category-card,
[data-theme="dark"] .forum-topic-row,
[data-theme="dark"] .forum-member-card {
	background: var(--lh-color-surface) !important;
	border-color: var(--lh-color-line) !important;
}
[data-theme="dark"] .forum-category-card__more {
	background: var(--lh-color-surface-2) !important;
}
[data-theme="dark"] #bbpress-forums li.bbp-header {
	background: var(--lh-color-surface-2) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.forum-layout { grid-template-columns: 200px 1fr; gap: 20px; }
	.forum-members-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
	.forum-hero { grid-template-columns: 1fr; gap: 24px; }
	.forum-hero__stats { flex-direction: row; flex-wrap: wrap; }
	.forum-stat-card { flex: 1; min-width: 80px; }
	.forum-layout { grid-template-columns: 1fr; }
	.forum-sidebar { position: static; order: 2; }
	.forum-main { order: 1; }
	.forum-members-grid { grid-template-columns: repeat(2, 1fr); }
	.forum-category-card__head { flex-wrap: wrap; }
	.forum-category-card__meta { flex-direction: row; align-items: center; width: 100%; }
}
@media (max-width: 480px) {
	.forum-tab { padding: 8px 12px; font-size: .82rem; }
	.forum-members-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.forum-topic-row { flex-wrap: wrap; }
}
