/* ============================================================
   LicenseHub — Universal Product Card
   .pcard her yerde çalışır:
   - Shop archive (mağaza)
   - Product category sayfası
   - Ana sayfa [products] shortcode'u
   - Single product sayfası related/upsells/cross-sells
   - Search results
   ============================================================ */

/* ---------- Dark mode kapat ---------- */
html[data-theme="dark"] { color-scheme: light !important; }
.lh-dark-toggle, #lhDarkToggle { display: none !important; }

/* ---------- shop-clean konteyneri (shop archive sayfaları) ---------- */
.shop-clean {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 24px 16px 60px;
}
@media (max-width: 599px) {
	.shop-clean { padding: 16px 12px 40px; }
}

.shop-clean__head { margin: 0 0 22px; }
.shop-clean__title {
	font-family: var(--lh-font-display, 'Bricolage Grotesque'), system-ui, sans-serif;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	font-weight: 700;
	color: #0c0d10;
	letter-spacing: -0.02em;
	margin: 0 0 6px;
	line-height: 1.2;
}
.shop-clean__desc {
	margin: 0;
	color: #6b7280;
	font-size: 0.92rem;
	line-height: 1.55;
	max-width: 60ch;
}
@media (max-width: 599px) {
	.shop-clean__title { font-size: 1.3rem; }
	.shop-clean__desc { font-size: 0.82rem; }
	.shop-clean__head { margin-bottom: 14px; }
}

.shop-clean__toolbar {
	display: flex; justify-content: space-between; align-items: center;
	gap: 12px; flex-wrap: wrap;
	margin: 0 0 22px; padding: 0 0 14px;
	border-bottom: 1px solid #f1f3f8;
}
.shop-clean__toolbar .woocommerce-result-count { margin: 0; font-size: 0.86rem; color: #6b7280; }
.shop-clean__toolbar .woocommerce-ordering { margin: 0; }
.shop-clean__toolbar select {
	height: 38px; font-size: 0.86rem; padding: 0 32px 0 12px;
	border: 1px solid #e6e9ef; border-radius: 8px;
	background: #fff; color: #0c0d10; max-width: 240px;
}
@media (max-width: 599px) {
	.shop-clean__toolbar { margin-bottom: 14px; padding-bottom: 10px; gap: 8px; }
	.shop-clean__toolbar .woocommerce-result-count { font-size: 0.78rem; }
	.shop-clean__toolbar select { height: 36px; font-size: 0.8rem; max-width: 180px; padding: 0 28px 0 10px; }
}

/* ---------- Grid: her yerde 4/3/2/2 ---------- */
/* Bu kurallar hem .shop-clean içinde hem ana sayfa .product-section içinde hem related/upsells'de çalışır */
ul.products:has(li.pcard),
.product-section ul.products:has(li.pcard),
.related ul.products:has(li.pcard),
.upsells ul.products:has(li.pcard),
.cross-sells ul.products:has(li.pcard) {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
@media (min-width: 600px) {
	ul.products:has(li.pcard),
	.product-section ul.products:has(li.pcard),
	.related ul.products:has(li.pcard),
	.upsells ul.products:has(li.pcard),
	.cross-sells ul.products:has(li.pcard) {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 16px !important;
	}
}
@media (min-width: 1024px) {
	ul.products:has(li.pcard),
	.product-section ul.products:has(li.pcard),
	.related ul.products:has(li.pcard),
	.upsells ul.products:has(li.pcard),
	.cross-sells ul.products:has(li.pcard) {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 20px !important;
	}
}
@media (min-width: 1280px) {
	ul.products:has(li.pcard),
	.product-section ul.products:has(li.pcard) {
		gap: 24px !important;
	}
}

/* Fallback: tarayıcı :has() desteklemiyorsa (Firefox eski versiyonlar) */
@supports not (selector(:has(*))) {
	ul.products {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}
	@media (min-width: 600px) {
		ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 16px !important; }
	}
	@media (min-width: 1024px) {
		ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 20px !important; }
	}
}

/* ---------- Ürün kartı — HER YERDE ---------- */
/* .pcard sınıfı content-product.php'den geliyor — wrapper'a bakmaksızın çalışır */
li.pcard,
ul.products li.pcard.product,
.product-section ul.products li.pcard,
.related ul.products li.pcard,
.upsells ul.products li.pcard {
	background: #fff !important;
	border: 1px solid #eef0f4 !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	list-style: none !important;
}
li.pcard:hover {
	transform: translateY(-2px);
	border-color: transparent !important;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Eski .product-card stilini (ana CSS'ten gelen) bu yeni .pcard içinde devre dışı bırak */
li.pcard.product-card { all: revert; }
li.pcard {
	background: #fff !important;
	border: 1px solid #eef0f4 !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	list-style: none !important;
}

/* ---------- Resim alanı ---------- */
.pcard__media-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.pcard__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f5f6f8;
	overflow: hidden;
	padding: 24px 20px;
	display: grid;
	place-items: center;
}
.pcard__media img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	transition: transform 0.3s ease;
	display: block;
	mix-blend-mode: multiply;
}
.pcard:hover .pcard__media img { transform: scale(1.04); }

.pcard__media .onsale { display: none !important; }

.pcard__sale {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: var(--lh-color-primary, #0a3cff);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 99px;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

@media (max-width: 599px) {
	.pcard__media { padding: 14px 12px; aspect-ratio: 1 / 1; }
	.pcard__sale {
		font-size: 0.65rem;
		padding: 3px 8px;
		top: 8px;
		left: 8px;
	}
}

/* ---------- Body ---------- */
.pcard__body {
	padding: 18px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
@media (max-width: 599px) {
	.pcard__body { padding: 12px 12px 12px; gap: 4px; }
}

.pcard__cat {
	display: inline-block;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--lh-color-primary, #0a3cff);
	text-decoration: none;
	padding: 0;
	margin: 0 0 2px;
	width: fit-content;
	background: none;
	letter-spacing: 0;
	text-transform: none;
	transition: opacity 0.15s ease;
}
.pcard__cat:hover { opacity: 0.75; text-decoration: none; color: var(--lh-color-primary, #0a3cff); }
@media (max-width: 599px) { .pcard__cat { font-size: 0.74rem; } }

.pcard__title-link {
	text-decoration: none;
	color: inherit;
	display: block;
}
.pcard__title-link:hover { text-decoration: none; }
.pcard__title-link:hover .pcard__title { color: var(--lh-color-primary, #0a3cff); }

.pcard__title,
.pcard__title.woocommerce-loop-product__title {
	font-family: var(--lh-font-body, 'Manrope'), system-ui, sans-serif !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	color: #0c0d10 !important;
	margin: 0 0 10px !important;
	padding: 0 !important;
	line-height: 1.4 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	min-height: 4.2em !important;
	transition: color 0.15s ease;
	letter-spacing: -0.005em;
}
@media (max-width: 599px) {
	.pcard__title,
	.pcard__title.woocommerce-loop-product__title {
		font-size: 0.85rem !important;
		margin-bottom: 6px !important;
		min-height: 3.6em !important;
		-webkit-line-clamp: 2 !important;
	}
}

/* ---------- Fiyat ---------- */
.pcard__price-row {
	display: flex !important;
	align-items: baseline !important;
	gap: 10px !important;
	margin-top: auto !important;
	margin-bottom: 14px !important;
	flex-wrap: wrap !important;
	flex-direction: row !important;
	min-height: 28px;
}
li.pcard .pcard__price-row .price,
li.pcard .price {
	display: flex !important;
	align-items: baseline !important;
	gap: 10px !important;
	flex-wrap: wrap !important;
	flex-direction: row !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #0c0d10 !important;
	font-size: inherit !important;
	line-height: 1.3 !important;
	text-decoration: none !important;
}
li.pcard .pcard__price-row .price ins,
li.pcard .pcard__price-row .price > .amount,
li.pcard .pcard__price-row .price > bdi,
li.pcard .pcard__price-row .price ins .amount,
li.pcard .pcard__price-row .price ins bdi,
li.pcard .price ins,
li.pcard .price > .amount,
li.pcard .price > bdi {
	font-size: 1.4rem !important;
	font-weight: 800 !important;
	color: var(--lh-color-primary, #0a3cff) !important;
	text-decoration: none !important;
	background: none !important;
	letter-spacing: -0.01em !important;
	display: inline-block !important;
	white-space: nowrap !important;
	line-height: 1.2 !important;
	padding: 0 !important;
	margin: 0 !important;
}
li.pcard .pcard__price-row .price del,
li.pcard .pcard__price-row .price del .amount,
li.pcard .pcard__price-row .price del bdi,
li.pcard .price del,
li.pcard .price del .amount,
li.pcard .price del bdi {
	font-size: 0.95rem !important;
	color: #dc2626 !important;
	text-decoration: line-through !important;
	text-decoration-color: #dc2626 !important;
	text-decoration-thickness: 2px !important;
	font-weight: 600 !important;
	margin: 0 !important;
	padding: 0 !important;
	display: inline-block !important;
	white-space: nowrap !important;
	opacity: 1 !important;
	background: none !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
}
li.pcard .pcard__price-row .screen-reader-text,
li.pcard .price .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px) !important;
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
@media (max-width: 599px) {
	.pcard__price-row { gap: 6px !important; margin-bottom: 10px !important; }
	li.pcard .pcard__price-row .price ins,
	li.pcard .pcard__price-row .price > .amount,
	li.pcard .pcard__price-row .price > bdi,
	li.pcard .price ins,
	li.pcard .price > .amount,
	li.pcard .price > bdi {
		font-size: 1.15rem !important;
	}
	li.pcard .pcard__price-row .price del,
	li.pcard .pcard__price-row .price del .amount,
	li.pcard .pcard__price-row .price del bdi {
		font-size: 0.82rem !important;
		text-decoration-thickness: 1.5px !important;
	}
}

/* ---------- CTA: tek buton (Check Out) ---------- */
.pcard__cta-wrap {
	width: 100%;
	display: block !important;
}

/* Ana tema CSS'inden gelen TÜM eski buton stillerini sıfırla */
li.pcard a.pcard__cta,
li.pcard a.pcard__cta.button,
li.pcard a.pcard__cta.add_to_cart_button,
li.pcard a.added_to_cart,
ul.products li.product a.button.pcard__cta,
ul.products li.product .button.add_to_cart_button.pcard__cta {
	all: unset !important;
	box-sizing: border-box !important;
	-webkit-tap-highlight-color: transparent;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	width: 100% !important;
	height: 44px !important;
	padding: 0 14px !important;
	margin: 0 !important;
	border: 1.5px solid transparent !important;
	border-radius: 10px !important;
	font-family: var(--lh-font-body, 'Manrope', system-ui, sans-serif) !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	background: var(--lh-color-primary, #0a3cff) !important;
	color: #fff !important;
	box-shadow: 0 1px 2px rgba(10, 60, 255, 0.15) !important;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease !important;
	clip-path: none !important;
	-webkit-clip-path: none !important;
	transform: none !important;
}

/* "View cart" linki tamamen gizle (görsel hatadan kaçınmak için) */
li.pcard a.added_to_cart,
ul.products li.product a.added_to_cart {
	display: none !important;
}

li.pcard a.pcard__cta:hover,
ul.products li.product a.button.pcard__cta:hover {
	background: #0731cc !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 6px 16px rgba(10, 60, 255, 0.22) !important;
	color: #fff !important;
}
li.pcard a.pcard__cta:active {
	transform: translateY(0) !important;
}
li.pcard a.pcard__cta:focus-visible {
	outline: 3px solid rgba(10, 60, 255, 0.35) !important;
	outline-offset: 2px !important;
}

.pcard__cta-icon {
	width: 16px !important;
	height: 16px !important;
	flex-shrink: 0 !important;
	display: inline-block !important;
}
.pcard__cta svg {
	width: 16px !important;
	height: 16px !important;
	flex-shrink: 0 !important;
}
.pcard__cta span { display: inline-block; }

li.pcard a.pcard__cta.loading { opacity: 0.7; pointer-events: none; }
li.pcard a.pcard__cta.added { background: var(--lh-color-success, #0e9b6c) !important; }
li.pcard a.pcard__cta.added::after {
	content: " ✓";
	font-weight: 700;
	margin-left: 4px;
}

@media (max-width: 599px) {
	li.pcard a.pcard__cta {
		height: 40px !important;
		font-size: 0.82rem !important;
		padding: 0 10px !important;
		border-radius: 8px !important;
	}
	.pcard__cta-icon,
	.pcard__cta svg { width: 14px !important; height: 14px !important; }
}

/* ---------- Trust strip (shop arşivinde altta) ---------- */
.shop-clean__trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 40px 0 0;
	padding: 28px 0 0;
	border-top: 1px solid #eef0f4;
}
.shop-clean__trust-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.shop-clean__trust-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	color: var(--lh-color-primary, #0a3cff);
}
.shop-clean__trust-icon svg { width: 32px !important; height: 32px !important; }
.shop-clean__trust-text strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #0c0d10;
	letter-spacing: -0.005em;
	margin-bottom: 4px;
	line-height: 1.3;
}
.shop-clean__trust-text small {
	display: block;
	font-size: 0.84rem;
	color: #6b7280;
	line-height: 1.45;
}

@media (max-width: 1023px) {
	.shop-clean__trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 599px) {
	.shop-clean__trust {
		grid-template-columns: 1fr; gap: 14px;
		margin-top: 28px; padding-top: 20px;
	}
	.shop-clean__trust-icon { width: 36px; height: 36px; }
	.shop-clean__trust-icon svg { width: 26px !important; height: 26px !important; }
	.shop-clean__trust-text strong { font-size: 0.92rem; }
	.shop-clean__trust-text small { font-size: 0.78rem; }
}

/* ---------- Pagination ---------- */
.shop-clean .woocommerce-pagination { margin-top: 32px; text-align: center; }
.shop-clean .woocommerce-pagination ul {
	display: inline-flex; gap: 4px; list-style: none; padding: 0; margin: 0; border: none;
}
.shop-clean .woocommerce-pagination ul li { border: none; margin: 0; }
.shop-clean .woocommerce-pagination ul li a,
.shop-clean .woocommerce-pagination ul li span {
	min-width: 38px; height: 38px; padding: 0 12px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid #e6e9ef; border-radius: 8px;
	background: #fff; color: #2a2d35;
	font-weight: 600; font-size: 0.86rem; text-decoration: none;
	transition: all 0.15s ease;
}
.shop-clean .woocommerce-pagination ul li a:hover {
	border-color: var(--lh-color-primary, #0a3cff);
	color: var(--lh-color-primary, #0a3cff);
}
.shop-clean .woocommerce-pagination ul li span.current {
	background: var(--lh-color-primary, #0a3cff); color: #fff;
	border-color: var(--lh-color-primary, #0a3cff);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	li.pcard, .pcard__media img, li.pcard a.pcard__cta {
		transition: none !important;
	}
	li.pcard:hover { transform: none; }
	li.pcard a.pcard__cta:hover { transform: none; }
}

/* ---------- Related products & footer arası boşluk ---------- */
/* Single product sayfasındaki related/upsells bölümünün altına nefes alanı ekle */
.related.products,
.up-sells.products,
.upsells.products,
.cross-sells.products {
	margin-top: 48px !important;
	margin-bottom: 64px !important;
	padding-bottom: 24px !important;
}

.related.products > h2,
.up-sells.products > h2,
.upsells.products > h2,
.cross-sells.products > h2 {
	font-family: var(--lh-font-display, 'Bricolage Grotesque'), system-ui, sans-serif !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	color: #0c0d10 !important;
	margin: 0 0 24px !important;
	letter-spacing: -0.02em !important;
	line-height: 1.2 !important;
}

/* Site footer'ı (colophon) related products'tan ayır */
.site-footer,
#colophon {
	margin-top: 48px !important;
}

@media (max-width: 599px) {
	.related.products,
	.up-sells.products,
	.upsells.products,
	.cross-sells.products {
		margin-top: 32px !important;
		margin-bottom: 40px !important;
	}
	.related.products > h2,
	.up-sells.products > h2 {
		font-size: 1.2rem !important;
		margin-bottom: 16px !important;
	}
	.site-footer,
	#colophon {
		margin-top: 32px !important;
	}
}

/* ============================================================
   Partners strip — ana sayfa altında 3'lü logo kolajı
   (Microsoft, Kaspersky, Avast)
   ============================================================ */
.partners-strip {
	background: #f8f9fc;
	padding: 60px 0 70px;
	margin-top: 40px;
	border-top: 1px solid #eef0f4;
	border-bottom: 1px solid #eef0f4;
}
.partners-strip__head {
	text-align: center;
	margin: 0 auto 36px;
	max-width: 640px;
	padding: 0 16px;
}
.partners-strip__title {
	font-family: var(--lh-font-display, 'Bricolage Grotesque'), system-ui, sans-serif;
	font-size: clamp(1.4rem, 2.4vw, 1.85rem);
	font-weight: 700;
	color: #0c0d10;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
	line-height: 1.25;
}
.partners-strip__desc {
	margin: 0;
	color: #6b7280;
	font-size: 0.96rem;
	line-height: 1.55;
}
.partners-strip__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: center;
	justify-items: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 16px;
}
.partners-strip__item {
	width: 100%;
	max-width: 260px;
	height: 120px;
	background: #fff;
	border: 1px solid #e6e9ef;
	border-radius: 14px;
	padding: 20px 24px;
	display: grid;
	place-items: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.partners-strip__item:hover {
	transform: translateY(-2px);
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.partners-strip__item img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	filter: none;
	transition: filter 0.2s ease;
}

/* Tablet — 3 sıra kalır ama daha kompakt */
@media (max-width: 900px) {
	.partners-strip { padding: 44px 0 50px; }
	.partners-strip__list { gap: 16px; }
	.partners-strip__item { height: 100px; padding: 16px 18px; }
}

/* Mobil — alt alta 3 logo */
@media (max-width: 599px) {
	.partners-strip { padding: 36px 0 40px; }
	.partners-strip__head { margin-bottom: 24px; }
	.partners-strip__title { font-size: 1.2rem; }
	.partners-strip__desc { font-size: 0.84rem; }
	.partners-strip__list {
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: 320px;
	}
	.partners-strip__item {
		height: 90px;
		padding: 14px 20px;
	}
}

/* ============================================================
   "Need help choosing the right license?" CTA bölümü tamamen gizle
   Bu bölüm PHP'den kaldırıldı ama Elementor/cache/page builder
   gibi yerlerden gelse bile görünmesin diye CSS ile de gizliyoruz.
   ============================================================ */
.cta-strip,
section.cta-strip,
.cta-strip__inner,
.cta-strip__actions {
	display: none !important;
}

/* ============================================================
   Single product — sol kolon altı güven paneli (.sp-trust-panel)
   Ürün görseli altındaki boş alanı dolduran istatistik + söz kartı
   ============================================================ */
.sp-trust-panel {
	background: #fff;
	border: 1px solid #eef0f4;
	border-radius: 14px;
	padding: 22px 22px 24px;
	margin-top: 18px;
}

/* Stats row */
.sp-trust-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid #eef0f4;
}
.sp-trust-stat {
	text-align: center;
}
.sp-trust-stat__num {
	font-family: var(--lh-font-display, 'Bricolage Grotesque'), system-ui, sans-serif;
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--lh-color-primary, #0a3cff);
	letter-spacing: -0.02em;
	line-height: 1.1;
	display: block;
	margin-bottom: 4px;
}
.sp-trust-stat__star {
	font-size: 1.1rem;
	color: #f59e0b;
	margin-left: 2px;
}
.sp-trust-stat__label {
	font-size: 0.7rem;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.3;
	display: block;
}

/* Title */
.sp-trust-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--lh-font-body, 'Manrope'), system-ui, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	color: #0c0d10;
	margin: 0 0 14px;
	letter-spacing: -0.005em;
}
.sp-trust-title svg { color: var(--lh-color-success, #0e9b6c); flex-shrink: 0; }

/* ============================================================
   Official Partner bölümü — Microsoft + Kaspersky + Avast logoları
   ============================================================ */
.sp-partner {
	margin-bottom: 18px;
}
.sp-partner__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}
.sp-partner__title {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--lh-font-body, 'Manrope'), system-ui, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	color: #0c0d10;
	margin: 0;
	letter-spacing: -0.005em;
	line-height: 1.3;
}
.sp-partner__title svg {
	color: var(--lh-color-success, #0e9b6c);
	flex-shrink: 0;
}
.sp-partner__stamp {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--lh-color-success-bg, #e6f8f0);
	color: var(--lh-color-success, #0e9b6c);
	font-size: 0.65rem;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 99px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid #c3edd9;
	line-height: 1.2;
	flex-shrink: 0;
}
.sp-partner__stamp svg {
	width: 12px;
	height: 12px;
	stroke-width: 2.5;
}
.sp-partner__sub {
	font-size: 0.78rem;
	color: #6b7280;
	margin: 0 0 14px;
	line-height: 1.5;
}
.sp-partner__logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.sp-partner__logo {
	background: #fff;
	border: 1.5px solid #eef0f4;
	border-radius: 10px;
	padding: 14px 10px;
	display: grid;
	place-items: center;
	position: relative;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	min-height: 78px;
}
.sp-partner__logo:hover {
	border-color: var(--lh-color-primary, #0a3cff);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}
.sp-partner__logo img {
	max-width: 100%;
	max-height: 50px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
/* Yeşil ✓ check noktası sağ üstte — "verified" göstergesi */
.sp-partner__logo::after {
	content: '';
	position: absolute;
	top: 6px;
	right: 6px;
	width: 14px;
	height: 14px;
	background: var(--lh-color-success, #0e9b6c);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12 10 18 20 6'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 8px;
	box-shadow: 0 1px 3px rgba(14, 155, 108, 0.3);
}

/* Promise list — ESKİ (kullanılmıyor ama eski sürümlerden kalan kart yapısında geri uyum için bırakıyoruz) */
.sp-trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.sp-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0 !important;
	padding: 0 !important;
}
.sp-trust-item__icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: rgba(10, 60, 255, 0.08);
	color: var(--lh-color-primary, #0a3cff);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.sp-trust-item__icon svg { width: 18px; height: 18px; }
.sp-trust-item__text strong {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: #0c0d10;
	line-height: 1.3;
	margin-bottom: 2px;
}
.sp-trust-item__text small {
	display: block;
	font-size: 0.78rem;
	color: #6b7280;
	line-height: 1.45;
}

/* Live activity ribbon — turuncu nabız */
.sp-trust-activity {
	margin-top: 18px;
	padding: 11px 14px;
	background: linear-gradient(135deg, #fff9ed 0%, #fef3d8 100%);
	border: 1px solid #fde6c2;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	color: #854f0b;
	font-weight: 500;
	line-height: 1.4;
}
.sp-trust-activity strong { color: #854f0b; font-weight: 700; }
.sp-trust-activity__pulse {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #f59e0b;
	flex-shrink: 0;
	position: relative;
}
.sp-trust-activity__pulse::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(245, 158, 11, 0.4);
	animation: sp-trust-pulse 1.6s ease-in-out infinite;
}
@keyframes sp-trust-pulse {
	0%, 100% { transform: scale(0.75); opacity: 0.7; }
	50%      { transform: scale(1.8); opacity: 0; }
}

/* Payment methods */
.sp-trust-payments {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed #eef0f4;
}
.sp-trust-payments__label {
	font-size: 0.7rem;
	color: #6b7280;
	margin-bottom: 8px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.sp-trust-payments__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.sp-pay-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 9px;
	background: #f8f9fc;
	border: 1px solid #eef0f4;
	border-radius: 6px;
	font-size: 0.68rem;
	font-weight: 700;
	color: #2a2d35;
	letter-spacing: 0.02em;
	line-height: 1;
}
.sp-pay-badge svg { width: 13px; height: 13px; }
.sp-pay-badge--visa { color: #1a1f71; }
.sp-pay-badge--mc { color: #eb001b; }
.sp-pay-badge--ssl { color: var(--lh-color-success, #0e9b6c); }

/* Mobil ayarlamaları */
@media (max-width: 599px) {
	.sp-trust-panel { padding: 18px 16px 20px; margin-top: 14px; }
	.sp-trust-stats { gap: 8px; margin-bottom: 18px; padding-bottom: 18px; }
	.sp-trust-stat__num { font-size: 1.5rem; }
	.sp-trust-stat__label { font-size: 0.62rem; }
	.sp-trust-item__icon { width: 32px; height: 32px; border-radius: 8px; }
	.sp-trust-item__icon svg { width: 16px; height: 16px; }
	.sp-trust-item__text strong { font-size: 0.82rem; }
	.sp-trust-item__text small { font-size: 0.72rem; }
	.sp-trust-activity { font-size: 0.74rem; padding: 9px 12px; }
	.sp-pay-badge { font-size: 0.62rem; padding: 4px 7px; }

	/* Partner bölümü */
	.sp-partner { margin-bottom: 14px; }
	.sp-partner__title { font-size: 0.82rem; }
	.sp-partner__stamp { font-size: 0.58rem; padding: 3px 7px; }
	.sp-partner__stamp svg { width: 10px; height: 10px; }
	.sp-partner__sub { font-size: 0.72rem; margin-bottom: 10px; }
	.sp-partner__logos { gap: 6px; }
	.sp-partner__logo { padding: 10px 8px; min-height: 64px; }
	.sp-partner__logo img { max-height: 38px; }
	.sp-partner__logo::after { width: 12px; height: 12px; top: 4px; right: 4px; background-size: 7px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.sp-trust-activity__pulse::after { animation: none !important; }
}

/* ============================================================
   SEO Keyword Block — ürün başlığına göre dinamik açıklama
   ============================================================ */
.sp-seo-block {
	background: #fff;
	border: 1px solid #eef0f4;
	border-radius: 14px;
	padding: 28px 32px;
	margin: 28px 0 24px;
	max-width: 100%;
}
.sp-seo-block__title {
	font-family: var(--lh-font-display, 'Bricolage Grotesque'), system-ui, sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 700;
	color: #0c0d10;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	line-height: 1.25;
}
.sp-seo-block__body {
	font-family: var(--lh-font-body, 'Manrope'), system-ui, sans-serif;
	font-size: 0.96rem;
	line-height: 1.75;
	color: #2a2d35;
	margin: 0;
}
.sp-seo-block__body strong {
	color: #0c0d10;
	font-weight: 700;
}
.sp-seo-block__body a {
	color: var(--lh-color-primary, #0a3cff);
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
	font-weight: 600;
	transition: opacity 0.15s ease;
}
.sp-seo-block__body a:hover {
	opacity: 0.75;
	color: var(--lh-color-primary-dark, #0731cc);
}

@media (max-width: 599px) {
	.sp-seo-block {
		padding: 20px 18px;
		margin: 22px 0 18px;
		border-radius: 12px;
	}
	.sp-seo-block__title {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
	.sp-seo-block__body {
		font-size: 0.86rem;
		line-height: 1.65;
	}
}
