/**
 * Theme enhancements: a11y, typography scale, social-proof mobile, horizontal scroll + Lenis.
 */

/* ============================================================
   POST-HERO STACKING: all siblings after .hero-pin must
   sit above the sticky hero (z-index 5, position relative).
   The JS only adds section-rise to the FIRST sibling;
   every subsequent block needs the same stacking context.
   ============================================================ */
.hero-pin ~ *:not(.hero-pin):not(script):not(style):not(.person-modal):not(.testimonial-modal):not(.report-modal) {
	position: relative;
	z-index: 5;
}

/* ============================================================
   GLOBAL SECTION SPACING REDUCTION
   ============================================================ */
section.section,
.section {
	padding: 80px 0 !important;
}
section.section-tight,
.section-tight {
	padding: 56px 0 !important;
}
section.features,
.features {
	padding-top: 32px !important;
	padding-bottom: 32px !important;
}
.features-intro {
	padding: 20px 0 16px !important;
}
section.tiers,
.tiers {
	padding: 32px 0 !important;
}
section.proof,
.proof {
	padding: 64px 0 !important;
}
.proof-head {
	margin-bottom: 32px !important;
}
section.editorial-carousel,
.editorial-carousel {
	padding: 64px 0 !important;
}
section.contact-faq,
.contact-faq {
	padding: 72px 0 !important;
}
.story-page-body {
	padding-bottom: 20px !important;
	margin-top: -60px !important;
}
section.prod-showcase,
.prod-showcase {
	padding-top: 40px !important;
	padding-bottom: 64px !important;
}
section.sample-benefits,
.sample-benefits {
	padding: 64px 0 !important;
}
section.technology-list,
.technology-list {
	padding: 72px 0 !important;
}
section.labs,
.labs {
	padding: 72px 0 !important;
}
section.product-steps,
.product-steps {
	padding: 16px 0 36px !important;
}

@media (max-width: 880px) {
	section.section,
	.section {
		padding: 48px 0 !important;
	}
	section.section-tight,
	.section-tight {
		padding: 36px 0 !important;
	}
	section.features,
	.features {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.features-intro {
		padding: 12px var(--gutter, 18px) 10px !important;
	}
	section.tiers,
	.tiers {
		padding: 20px 0 !important;
	}
	section.proof,
	.proof {
		padding: 40px 0 !important;
	}
	section.editorial-carousel,
	.editorial-carousel {
		padding: 40px 0 !important;
	}
	section.contact-faq,
	.contact-faq {
		padding: 48px 0 !important;
	}
	.story-page-body {
		padding-bottom: 12px !important;
		margin-top: -36px !important;
	}
	section.prod-showcase,
	.prod-showcase {
		padding-top: 24px !important;
		padding-bottom: 40px !important;
	}
	section.technology-list,
	.technology-list {
		padding: 48px 0 !important;
	}
	section.labs,
	.labs {
		padding: 48px 0 !important;
	}
	section.product-steps,
	.product-steps {
		padding: 10px 0 28px !important;
	}
	body.single-product .product-steps-grid,
	.product-steps .product-steps-grid {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		touch-action: pan-x pan-y pinch-zoom;
		overscroll-behavior-x: contain;
		gap: 14px !important;
		padding-bottom: 6px;
		grid-template-columns: none !important;
	}
	body.single-product .product-steps-card,
	.product-steps .product-steps-card {
		scroll-snap-align: start;
		flex: 0 0 78vw !important;
		min-width: 78vw !important;
		max-width: 78vw !important;
	}
}

/* ============================================================
   ADVANCED LABS — GRID MODE (3×4 Bento)
   Layout:
     "c1  c2  c2  c2"
     "c1  c3  c4  c4"
     "c5  c5  c6  c6"
   ============================================================ */
section.labs.labs-grid-mode,
.labs.labs-grid-mode {
	background: #fff !important;
	padding: 64px 0 !important;
}

.lgm-title {
	font-size: clamp(28px, 3.5vw, 46px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.08 !important;
	color: #0f1b2c !important;
	margin: 0 0 28px !important;
}

.lgm {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, minmax(0, 1fr));
	grid-template-areas:
		"c1  c2  c2  c2"
		"c1  c3  c4  c4"
		"c5  c5  c6  c6";
	gap: 14px;
	height: clamp(680px, calc(100vh - 120px), 920px);
}

/* — Cards — */
.lgm-c {
	border-radius: 20px;
	background: #162236;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lgm-c:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

/* Image as card bg with overlay */
.lgm-c--has-img {
	position: relative;
}
.lgm-c--has-img .lgm-c-img {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.lgm-c--has-img .lgm-c-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lgm-c--has-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 16, 28, 0.25) 0%, rgba(10, 16, 28, 0.85) 100%);
	z-index: 1;
	pointer-events: none;
	border-radius: 20px;
}
.lgm-c--has-img .lgm-c-copy {
	position: relative;
	z-index: 2;
}
.lgm-c--has-img h3 { color: #fff !important; }
.lgm-c--has-img p { color: rgba(255, 255, 255, 0.7) !important; }

/* Copy area */
.lgm-c-copy {
	padding: 24px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.lgm-c h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	line-height: 1.25;
}
.lgm-c p {
	font-size: 0.85rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

/* No-image card: hide empty img div */
.lgm-c:not(.lgm-c--has-img) .lgm-c-img { display: none; }

/* Grid placement — 3 rows × 4 cols */
.lgm-c1 { grid-area: c1; }
.lgm-c2 { grid-area: c2; }
.lgm-c3 { grid-area: c3; }
.lgm-c4 { grid-area: c4; }
.lgm-c5 { grid-area: c5; }
.lgm-c6 { grid-area: c6; }

/* Tall card (c1) — slightly darker bg when no image */
.lgm-c1:not(.lgm-c--has-img) {
	background: #0f1b2c;
}
.lgm-c1:not(.lgm-c--has-img) h3 { color: #fff; }
.lgm-c1:not(.lgm-c--has-img) p { color: rgba(255, 255, 255, 0.65); }

/* Wide card (c2) — accent bg when no image */
.lgm-c2:not(.lgm-c--has-img) {
	background: linear-gradient(135deg, #1a3a5c 0%, #0f1b2c 100%);
}
.lgm-c2:not(.lgm-c--has-img) h3 { color: #fff; }
.lgm-c2:not(.lgm-c--has-img) p { color: rgba(255, 255, 255, 0.65); }

/* — Responsive: tablet — */
@media (max-width: 1024px) {
	.lgm {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto auto auto auto;
		grid-template-areas:
			"c1  c2"
			"c1  c3"
			"c4  c5"
			"c6  c6";
		height: auto;
	}
	.lgm-title {
		margin-bottom: 22px !important;
	}
}

/* — Responsive: mobile — */
@media (max-width: 880px) {
	section.labs.labs-grid-mode,
	.labs.labs-grid-mode {
		padding: 48px 0 !important;
	}
	.lgm-title {
		font-size: 26px !important;
		margin-bottom: 18px !important;
	}
	.lgm {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto auto;
		grid-template-areas:
			"c1  c2"
			"c3  c4"
			"c5  c5"
			"c6  c6";
		gap: 10px;
		height: auto;
	}
	.lgm-c {
		border-radius: 16px;
		min-height: 240px;
	}
	.lgm-c5,
	.lgm-c6 {
		min-height: 260px;
	}
	.lgm-c--has-img::after { border-radius: 16px; }
	.lgm-c-copy { padding: 18px 16px; }
	.lgm-c h3 { font-size: 0.95rem; }
	.lgm-c p { font-size: 0.8rem; }
}

/* ============================================================
   EDITORIAL CAROUSEL — VISUAL UPGRADE + MOBILE SWIPE
   ============================================================ */
.editorial-slide {
	background: linear-gradient(145deg, #0f1b2c 0%, #162236 60%, #1a2d45 100%) !important;
	border: 1px solid rgba(47, 163, 242, 0.10) !important;
	color: #fff !important;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18) !important;
}
.editorial-slide-visual {
	background: #0d1726 !important;
}
.editorial-slide-copy {
	background: transparent !important;
}
.editorial-slide-copy h3 {
	color: #fff !important;
}
.editorial-slide-description {
	color: rgba(255, 255, 255, 0.65) !important;
}
.editorial-slide-points li {
	color: rgba(255, 255, 255, 0.85) !important;
}
.editorial-slide-points li::before {
	background: #2FA3F2 !important;
	box-shadow: 0 0 0 6px rgba(47, 163, 242, 0.15) !important;
}
.editorial-slide-eyebrow,
.editorial-slide-placeholder-mark {
	background: rgba(47, 163, 242, 0.12) !important;
	color: #2FA3F2 !important;
}
.editorial-slide-copy .btn {
	background: #2FA3F2 !important;
	color: #fff !important;
	border-color: #2FA3F2 !important;
}
.editorial-slide-copy .btn:hover {
	background: #1b8ad8 !important;
}

.editorial-carousel-head h2 {
	font-weight: 700 !important;
}

@media (max-width: 880px) {
	.editorial-carousel-viewport {
		overflow: visible !important;
	}
	.editorial-carousel-track {
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		gap: 14px;
		padding-bottom: 8px;
	}
	.editorial-carousel-track > * {
		scroll-snap-align: start;
		flex: 0 0 85vw !important;
		min-width: 85vw !important;
	}
	.editorial-carousel-controls {
		display: none !important;
	}
}

/* ============================================================
   LABS VISUAL — MOBILE: less dead space
   ============================================================ */
@media (max-width: 880px) {
	.labs-visual {
		aspect-ratio: auto !important;
		max-height: 360px;
		background: #142133 !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.labs-visual img {
		width: auto !important;
		height: auto !important;
		max-height: 320px;
		max-width: 90%;
		object-fit: contain !important;
	}
}

/* ——— Sample Benefits: zero cropping ——— */
section.sample-benefits .sample-benefits-visual,
.sample-benefits .sample-benefits-visual {
	aspect-ratio: unset !important;
	height: auto !important;
	max-height: none !important;
	overflow: hidden !important;
	border-radius: 28px !important;
}
section.sample-benefits .sample-benefits-visual img,
.sample-benefits .sample-benefits-visual img {
	width: 100% !important;
	height: auto !important;
	max-height: none !important;
	object-fit: unset !important;
	display: block !important;
}

/* ——— Sample Benefits head ——— */
.sample-benefits-head {
	max-width: 680px;
	margin-bottom: 36px;
}
.sample-benefits-head h2 {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin-bottom: 10px;
}
.sample-benefits-head p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-muted, rgba(0,0,0,.55));
	max-width: 52ch;
}

/* ——— Footer brand column fix ——— */
.footer-brand-col .logo {
	display: block !important;
	margin-bottom: 14px;
}
.footer-brand-col .logo img,
.footer-brand-col .logo .custom-logo {
	margin: 0 !important;
}
.footer-brand-col p {
	margin-top: 0;
}

/* :focus-visible for keyboard users */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
	outline: 2px solid var(--primary, #2fa3f2);
	outline-offset: 2px;
}

/* ——— Heading scale (desktop caps; mobile clamps unchanged at low end) ——— */
:root {
	--display: clamp(48px, 7vw, 92px);
	--h1: clamp(36px, 5vw, 60px);
	--h2: clamp(28px, 3.5vw, 46px);
}

/* ——— Lenis disabled: force native scroll everywhere ——— */
html.lenis,
html.lenis body,
html.lenis-smooth,
html.lenis-smooth body {
	scroll-behavior: auto !important;
	overflow-y: auto !important;
}
html.lenis-stopped {
	overflow: auto !important;
}
body.whoop-lenis-native {
	overflow-y: auto !important;
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
	html.lenis,
	html.lenis body {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.proof-card:hover,
	.proof-card.proof-quote:hover {
		transform: none !important;
	}
}

/* ——— Social proof: premium 2-column mobile (overrides dist 700px 1-col) ——— */
@media (max-width: 700px) {
	.proof-head {
		margin-bottom: 24px;
	}

	.proof-head h2 {
		line-height: 1.08;
		margin-bottom: 12px;
	}

	.proof-head p {
		line-height: 1.45;
	}

	.proof-mosaic {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-auto-rows: auto !important;
		grid-auto-flow: row;
		align-items: stretch;
		gap: 12px !important;
		width: 100%;
	}

	.proof-mosaic .proof-card {
		min-width: 0;
		min-height: 0;
		width: 100%;
		overflow: hidden;
		border-radius: 14px;
	}

	/* ACF wide/large: tek hücre — tam satır kaplama yok */
	.proof-mosaic .proof-card.span-2,
	.proof-mosaic .proof-card.row-2 {
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.proof-card:hover,
	.proof-card.proof-quote:hover {
		transform: none !important;
	}

	/* Görsel kartlar: sabit oran, medya taşmasın */
	.proof-card.proof-image {
		position: relative;
		width: 100%;
		aspect-ratio: 4 / 5;
		min-height: 0;
	}

	.proof-card.proof-image img,
	.proof-card.proof-image video {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: none !important;
	}

	.proof-card.proof-image .meta {
		left: 12px;
		right: 48px;
		bottom: 12px;
	}

	.proof-card.proof-image .meta-name {
		font-size: clamp(12px, 3.4vw, 15px);
		line-height: 1.2;
	}

	.proof-card.proof-image .meta-role {
		font-size: 11px;
	}

	.proof-plus {
		right: 10px;
		bottom: 10px;
		width: 34px;
		height: 34px;
		flex-shrink: 0;
	}

	.proof-play {
		width: 52px;
		height: 52px;
	}

	.proof-play svg {
		width: 18px;
		height: 18px;
	}

	/* Alıntı kartları: görsel kartlarla aynı hücre oranı */
	.proof-card.proof-quote {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		aspect-ratio: 4 / 5;
		min-height: 0;
		padding: 14px 14px 16px;
		box-sizing: border-box;
	}

	.proof-card.proof-quote .proof-quote-text {
		flex: 1 1 auto;
		min-height: 0;
		font-size: clamp(13px, 3.6vw, 16px);
		line-height: 1.35;
		margin-bottom: 10px;
		overflow: hidden;
		overflow-wrap: anywhere;
		word-break: break-word;
		hyphens: auto;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 6;
		line-clamp: 6;
	}

	.proof-card.proof-quote .proof-quote-meta {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 8px;
		flex-shrink: 0;
		min-width: 0;
	}

	.proof-card.proof-quote .proof-quote-meta > div {
		min-width: 0;
		flex: 1 1 auto;
	}

	.proof-card.proof-quote .meta-name {
		font-size: clamp(12px, 3.2vw, 14px);
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.proof-card.proof-quote .meta-role {
		font-size: 11px;
	}

	.proof-card.proof-quote .proof-plus {
		position: static;
		width: 32px;
		height: 32px;
		flex-shrink: 0;
	}
}

/* ============================================================
   PROOF QUOTE CARDS — REDESIGNED TYPOGRAPHY
   Reference: quote-mark top-left, dark purple text,
   larger name, role below, subtle gradient bg.
   ============================================================ */
.proof-card.proof-quote {
	background: linear-gradient(180deg, #f8f9fd 0%, #eef1f8 100%) !important;
	padding: 32px !important;
}

.proof-quote-mark {
	color: #2FA3F2;
	margin-bottom: 20px;
	line-height: 1;
}

.proof-card.proof-quote .proof-quote-text {
	font-size: clamp(20px, 2.2vw, 26px) !important;
	font-weight: 700 !important;
	line-height: 1.28 !important;
	letter-spacing: -0.02em !important;
	color: #1a1040 !important;
	margin-bottom: auto !important;
}

.proof-card.proof-quote .meta-name {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #1a1040 !important;
	line-height: 1.25 !important;
}

.proof-card.proof-quote .meta-role {
	font-size: 14px !important;
	font-weight: 400 !important;
	color: rgba(26, 16, 64, 0.55) !important;
	margin-top: 4px !important;
}

.proof-card.proof-quote .proof-plus {
	background: var(--primary) !important;
	color: #fff !important;
}

@media (max-width: 700px) {
	.proof-card.proof-quote {
		padding: 18px 16px 16px !important;
	}

	.proof-quote-mark {
		margin-bottom: 12px;
	}

	.proof-quote-mark svg {
		width: 24px;
		height: 18px;
	}

	.proof-card.proof-quote .proof-quote-text {
		font-size: clamp(14px, 3.8vw, 18px) !important;
		line-height: 1.32 !important;
		-webkit-line-clamp: 7 !important;
		line-clamp: 7 !important;
	}

	.proof-card.proof-quote .meta-name {
		font-size: clamp(13px, 3.4vw, 15px) !important;
	}

	.proof-card.proof-quote .meta-role {
		font-size: 11px !important;
	}
}

/* ——— Horizontal feature track: Firefox + Lenis coexistence ——— */
.feature-track {
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	/* Mobile: explicitly allow vertical pan as well, otherwise touching the
	 * track to scroll the page does nothing (sticky-hero-style trap). Letting
	 * pan-y through here doesn't break the horizontal swipe — both axes work,
	 * and the browser picks the dominant gesture from the user's finger
	 * movement. Reported as "Güvenli Ödeme ile Siparişini Ver — mobilde dikey
	 * kaydırma çalışmıyor". */
	touch-action: pan-x pan-y pinch-zoom;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

/* ——— Mobile header: logo left, hamburger right (overrides built nav CSS) ——— */
@media (max-width: 880px) {
	.nav-inner .logo {
		order: 0;
		margin-left: 0;
		margin-right: 0;
		justify-content: flex-start;
		max-width: min(52vw, 200px);
	}

	.nav-inner .logo .custom-logo-link {
		justify-content: flex-start;
	}

	.nav-inner .logo img,
	.nav-inner .logo .custom-logo {
		object-position: left center;
	}

	.nav-inner .menu-toggle {
		order: 0;
		margin-left: auto;
	}

	.hero-product-detail {
		min-height: 100svh;
		padding-bottom: 0;
		background: #000;
		overflow: hidden;
	}

	.hero-product-detail .hero-content.container {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 14px;
		z-index: 2;
		padding: 0;
	}

	.hero-product-detail .hero-title,
	.hero-product-detail .hero-sub,
	.hero-product-detail .hero-actions {
		margin-left: 18px;
		margin-right: 18px;
	}

	.hero-product-detail .hero-title {
		margin-top: 0;
		font-size: clamp(2.85rem, 9.8vw, 4rem);
		line-height: 0.9;
		max-width: 7ch;
	}

	.hero-product-detail .hero-sub {
		max-width: 24ch;
		font-size: 0.96rem;
		line-height: 1.38;
	}

	.hero-product-detail .hero-actions {
		gap: 8px;
	}

	.hero-product-detail .hero-video,
	.hero-product-detail .hero-video-embed,
	.hero-product-detail .hero-poster {
		height: 100svh;
		object-position: center 42%;
	}

	.hero-product-detail .hero-poster {
		object-position: center 34%;
	}

	.hero-product-detail .hero-overlay {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.9) 100%);
		opacity: 1 !important;
	}
}

/* ——— Labs ISO certificates ——— */
.labs-iso-certs {
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
	margin: 22px 0 28px;
}

.labs-iso-cert {
	width: 72px;
	height: 72px;
	padding: 6px;
	border: 1px solid rgba(47, 163, 242, 0.18);
	border-radius: 14px;
	background: #fff;
	flex: 0 0 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.labs-iso-cert img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 880px) {
	.labs-iso-certs {
		margin: 18px 0 22px;
	}

	.labs-iso-cert {
		width: 60px;
		height: 60px;
		flex: 0 0 60px;
	}
}

/* ——— Feature slider arrows: hide on mobile ——— */
@media (max-width: 880px) {
	.features .slider-arrows {
		display: none !important;
	}
}

/* ——— Feature slider: swipeable cards ——— */
.features .feature-track {
	touch-action: pan-x pan-y pinch-zoom;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}

.features .feature-track::-webkit-scrollbar {
	display: none;
}

.features .feature-card,
.features .feature-card:hover {
	cursor: default;
	transform: none !important;
	aspect-ratio: auto !important;
}

.features .feature-card img {
	width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
}

.features .feature-plus,
.features .feat-modal,
.features .feat-modal-card {
	display: none !important;
}

@media (max-width: 880px) {
	.features {
		padding-top: 44px;
		padding-bottom: 52px;
	}

	.features .feature-slider {
		margin-left: calc(var(--gutter, 18px) * -0.45);
		margin-right: calc(var(--gutter, 18px) * -0.45);
	}

	.features .feature-card {
		position: relative;
		aspect-ratio: auto;
		flex: 0 0 85% !important;
		display: block !important;
		padding: 0 !important;
		overflow: hidden;
		border-radius: 22px;
		background: #08111c;
	}

	.features .feature-card img {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		object-fit: contain !important;
		object-position: center center !important;
		background: #08111c !important;
		padding: 0 !important;
		transform: none !important;
	}

	.features .feature-card::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(4, 12, 20, 0.1) 16%, rgba(4, 12, 20, 0.28) 50%, rgba(4, 12, 20, 0.72) 100%);
		pointer-events: none;
	}

	.features .feature-card .feature-card-content {
		position: absolute !important;
		left: 14px;
		right: 14px;
		bottom: 14px;
		z-index: 1;
		padding: 0 !important;
		background: transparent !important;
		pointer-events: none;
	}

	.features .feature-card .feature-card-content h3 {
		margin: 0;
		color: #fff;
		font-size: clamp(1.1rem, 4.4vw, 1.45rem);
		line-height: 1.08;
		text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
	}
}

/* ——— Technology list: section-level dark surface, flatter inner structure ——— */
.technology-list {
	background: #142133;
	padding: clamp(40px, 6vw, 72px) 0;
}

.technology-list .technology-list-head h2,
.technology-list .technology-list-head p {
	color: #fff;
}

.technology-list .technology-list-shell {
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.technology-list .technology-list-grid {
	align-items: stretch;
	gap: 22px;
}

.technology-list .technology-list-visuals {
	border-radius: 26px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	min-height: 100%;
	position: relative;
}

.technology-list .technology-list-visual {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.technology-list .technology-list-item-mobile-visual {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}

.technology-list .technology-list-visual img,
.technology-list .technology-list-item-mobile-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.technology-list .technology-list-items {
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.technology-list .technology-list-item {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding-inline: 18px;
}

.technology-list .technology-list-item:first-child {
	border-top: 0;
}

.technology-list .technology-list-item-index {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
}

.technology-list .technology-list-item-copy h3 {
	color: #fff;
}

.technology-list .technology-list-item-copy p,
.technology-list .technology-list-head p {
	color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 880px) {
	.technology-list .technology-list-shell {
		padding: 0;
		border-radius: 0;
	}

	.technology-list .technology-list-grid {
		gap: 14px;
	}

	.technology-list .technology-list-items {
		padding: 0;
		background: transparent;
	}

	.technology-list .technology-list-item {
		position: relative;
		display: block;
		padding: 0;
		border-top: 0;
		overflow: hidden;
	}

	.technology-list .technology-list-item-mobile-visual {
		margin: 0;
		border-radius: 18px;
		background: #0f1b2c;
		padding: 0;
		overflow: hidden;
		aspect-ratio: auto !important;
		max-height: none !important;
		min-height: 280px;
	}

	.technology-list .technology-list-item-mobile-visual::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(8, 15, 28, 0.08) 0%, rgba(8, 15, 28, 0.22) 36%, rgba(8, 15, 28, 0.84) 100%);
		pointer-events: none;
	}

	.technology-list .technology-list-item-mobile-visual img {
		width: 100% !important;
		height: 100% !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		transform: none !important;
	}

	.technology-list .technology-list-item-index {
		position: absolute;
		top: 14px;
		left: 14px;
		z-index: 2;
		display: inline-flex;
		margin: 0;
	}

	.technology-list .technology-list-item-copy {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		margin-top: 0;
		padding: 18px 16px 18px;
	}

	.technology-list .technology-list-item-copy h3 {
		font-size: clamp(1.45rem, 5.2vw, 1.9rem);
		line-height: 1.05;
		margin-bottom: 8px;
	}

	.technology-list .technology-list-item-copy p {
		color: rgba(255, 255, 255, 0.86);
		font-size: 0.98rem;
		line-height: 1.45;
	}
}

/* ============================================================
   STORY PAGE ENHANCEMENTS
   ============================================================ */

/* ——— Hero: centered, immersive ——— */
.story-page-hero {
	min-height: min(82vh, 780px) !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center !important;
	padding-top: var(--header-h, 109px) !important;
	padding-bottom: 120px !important;
}
.story-page-hero-overlay {
	background:
		linear-gradient(180deg,
			rgba(6, 10, 20, 0.20) 0%,
			rgba(6, 10, 20, 0.10) 30%,
			rgba(6, 10, 20, 0.82) 100%
		) !important;
}
.story-page-hero-copy {
	text-align: center !important;
	max-width: 780px !important;
	margin: 0 auto !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.story-page-hero-copy h1,
.story-page-hero-copy h2 {
	font-size: clamp(32px, 5vw, 64px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.03em !important;
	font-weight: 700 !important;
	max-width: 20ch;
	margin-bottom: 14px !important;
}
.story-page-hero-copy p {
	font-size: 17px !important;
	max-width: 50ch;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.75) !important;
	line-height: 1.6 !important;
}
.story-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 50px;
	background: #2FA3F2;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(47, 163, 242, 0.25);
}
.story-hero-cta:hover {
	background: #1b8ad8;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(47, 163, 242, 0.35);
}

/* ——— Curve softer ——— */
.story-page-hero-curve {
	height: 180px !important;
	bottom: -90px !important;
}

/* ——— Body: more breathing room ——— */
.story-page-body {
	padding-bottom: 100px !important;
}
.story-page-sections {
	gap: 0 !important;
}

/* ——— Sections: alternating full-bleed bands ——— */
.story-page-section {
	gap: 48px !important;
	padding: 72px 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.story-page-section:last-child {
	border-bottom: 0;
}
.story-page-section:nth-child(even) {
	/* same bg as odd sections */
}

/* ——— Visual: accent frame + depth ——— */
.story-page-section-visual {
	position: relative !important;
	border-radius: 24px !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10) !important;
	overflow: hidden !important;
}
.story-page-section-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 24px;
	border: 1px solid rgba(47, 163, 242, 0.12);
	pointer-events: none;
}
.story-page-section-visual img {
	transition: transform 0.5s var(--ease, ease) !important;
}
.story-page-section:hover .story-page-section-visual img {
	transform: scale(1.03);
}

/* ——— Copy: stronger hierarchy ——— */
.story-page-section-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.story-page-section-copy h2 {
	font-size: clamp(26px, 3.5vw, 44px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.03em !important;
	margin-bottom: 18px !important;
	position: relative;
}
.story-page-section-copy h2::before {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: #2FA3F2;
	border-radius: 2px;
	margin-bottom: 16px;
}
.story-page-section.is-reversed .story-page-section-copy h2::before {
	margin-left: 0;
}
.story-page-section-text {
	font-size: 15.5px !important;
	line-height: 1.75 !important;
	color: var(--text-muted, rgba(0,0,0,.58)) !important;
}
.story-page-section-text p + p {
	margin-top: 16px !important;
}

/* ——— Bullets ——— */
.story-bullets {
	list-style: none !important;
	padding: 0 !important;
	margin: 22px 0 0 !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.story-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--text, #000);
}
.story-bullet-icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: #2FA3F2;
}

/* ——— CTA button ——— */
.story-section-cta,
.story-page-section-copy .btn {
	margin-top: 28px !important;
	padding: 13px 28px !important;
	border-radius: 12px !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	display: inline-flex !important;
	width: auto !important;
}

/* ——— Section background variants ——— */
.story-section-light {
	background: var(--bg-elev-1, #f4f5f9);
	margin-left: calc(var(--gutter, 32px) * -1);
	margin-right: calc(var(--gutter, 32px) * -1);
	padding: 72px var(--gutter, 32px);
	border-radius: 0;
	border-bottom: 0;
}
.story-section-dark {
	background: #0f1b2c;
	margin-left: calc(var(--gutter, 32px) * -1);
	margin-right: calc(var(--gutter, 32px) * -1);
	padding: 72px var(--gutter, 32px);
	border-radius: 0;
	border-bottom: 0;
}
.story-section-dark .story-page-section-copy h2 {
	color: #fff;
}
.story-section-dark .story-page-section-copy h2::before {
	background: #2FA3F2;
}
.story-section-dark .story-page-section-text,
.story-section-dark .story-page-section-text p {
	color: rgba(255, 255, 255, 0.68) !important;
}
.story-section-dark .story-bullets li {
	color: rgba(255, 255, 255, 0.82);
}
.story-section-dark .story-page-section-copy .btn {
	background: #2FA3F2 !important;
	color: #fff !important;
	border-color: #2FA3F2 !important;
}

/* ——— Story page mobile ——— */
@media (max-width: 880px) {
	.story-page-hero {
		min-height: min(68vh, 520px) !important;
		padding-top: calc(var(--header-h, 101px) + 20px) !important;
		padding-bottom: 100px !important;
		align-items: flex-end !important;
	}
	.story-page-hero-copy h1,
	.story-page-hero-copy h2 {
		font-size: 28px !important;
	}
	.story-page-hero-copy p {
		font-size: 14px !important;
		margin-bottom: 20px;
	}
	.story-hero-cta {
		padding: 13px 26px;
		font-size: 0.88rem;
	}
	.story-page-hero-curve {
		height: 120px !important;
		bottom: -60px !important;
	}
	.story-page-section {
		padding: 48px 0 !important;
		gap: 28px !important;
	}
	.story-page-section:nth-child(even) {
		/* same bg as odd */
	}
	.story-page-section-visual {
		border-radius: 18px !important;
		max-width: 100% !important;
	}
	.story-page-section-copy h2::before {
		width: 32px;
		margin-bottom: 12px;
	}
	.story-page-section-copy .btn {
		width: 100% !important;
		justify-content: center !important;
	}
	.story-section-light,
	.story-section-dark {
		margin-left: calc(var(--gutter, 18px) * -1);
		margin-right: calc(var(--gutter, 18px) * -1);
		padding: 48px var(--gutter, 18px);
	}
}

/* ——— About hero: stronger right visual and less dead space ——— */
.about-hero .about-hero-grid {
	align-items: center;
	gap: clamp(24px, 4vw, 56px);
}

.about-hero .about-hero-content h2 {
	max-width: 12ch;
}

.about-hero .about-hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(18px, 2.4vw, 30px);
	border-radius: 36px;
	background:
		radial-gradient(circle at 26% 18%, rgba(173, 124, 226, 0.28), transparent 28%),
		radial-gradient(circle at 74% 70%, rgba(47, 163, 242, 0.22), transparent 30%),
		linear-gradient(180deg, #173050 0%, #102133 100%);
	box-shadow: none;
	overflow: hidden;
	min-height: clamp(360px, 40vw, 560px);
}

.about-hero .about-hero-visual::after {
	content: "";
	position: absolute;
	inset: auto 10% -18% 10%;
	height: 58%;
	border: 0;
	border-radius: 999px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 68%);
	pointer-events: none;
}

.about-hero .about-hero-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
		linear-gradient(315deg, rgba(255, 255, 255, 0.04), transparent 30%);
	pointer-events: none;
}

.about-hero .about-hero-visual img {
	position: relative;
	z-index: 1;
	width: min(100%, 760px);
	max-height: 88%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 26px 46px rgba(8, 15, 28, 0.34));
}

@media (max-width: 880px) {
	.about-hero .about-hero-grid {
		gap: 18px;
	}

	.about-hero .about-hero-visual {
		min-height: 280px;
		padding: 12px;
		border-radius: 24px;
	}

	.about-hero .about-hero-visual::after {
		inset: auto 5% -10% 5%;
		height: 46%;
		border-radius: 999px;
	}

	.about-hero .about-hero-visual img {
		width: min(100%, 460px);
		max-height: 96%;
	}
}

/* ——— Homepage hero fullscreen fix ——— */
.hero-poster {
	object-fit: cover !important;
	object-position: center center !important;
	width: 100% !important;
	height: 100% !important;
}

.hero-video,
.hero-video-embed {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
}

.hero-video-frame {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: max(100vw, 177.78vh) !important;
	height: max(56.25vw, 100vh) !important;
	max-width: none !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	border: 0 !important;
}

.hero video.hero-video {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
}

/* ============================================================
   PRODUCT SHOWCASE BLOCK
   ============================================================ */
.prod-showcase {
	padding: 40px 0 60px;
	background: #fff;
}

.prod-showcase-intro {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 36px;
}
.prod-showcase-intro h2 {
	margin-bottom: 8px;
}
.prod-showcase-intro p {
	font-size: 0.98rem;
	color: var(--text-muted, rgba(0,0,0,.62));
	line-height: 1.55;
}

.prod-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	align-items: start;
	max-width: 880px;
	margin: 0 auto;
}

/* — Card — */
.prod-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 16px;
	padding: 24px 22px 22px;
	transition: box-shadow 0.3s ease;
}
.prod-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

/* Badge */
.prod-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 4px 12px;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	z-index: 2;
}

/* Header: logo + subtitle */
.prod-card-header {
	text-align: center;
	margin-bottom: 14px;
}
.prod-logo {
	max-height: 40px;
	width: auto;
	margin: 0 auto 4px;
}
.prod-subtitle {
	font-size: 0.8rem;
	color: var(--text-muted, rgba(0,0,0,.55));
}

/* Visual */
.prod-card-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 14px;
}
.prod-card-visual img {
	max-height: 240px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* Rating */
.prod-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 6px;
}
.prod-stars {
	display: flex;
	gap: 1px;
	color: #f5a623;
}
.prod-rating-text {
	font-size: 0.82rem;
	color: var(--text-muted, rgba(0,0,0,.55));
}

/* Title + Certs row */
.prod-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}
.prod-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text, #000);
	margin: 0;
}

/* Certificates — inline next to title */
.prod-certs {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}
.prod-cert {
	width: 36px;
	height: 36px;
	padding: 3px;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 8px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.prod-cert img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Price */
.prod-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 12px;
}
.prod-price-old {
	font-size: 0.95rem;
	color: var(--text-dim, rgba(0,0,0,.4));
	text-decoration: line-through;
}
.prod-price-new {
	font-size: 1.25rem;
	font-weight: 700;
	color: #16a34a;
}

/* Features */
.prod-features {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.prod-features li {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 0.88rem;
	line-height: 1.4;
	color: var(--text, #000);
}
.prod-features li.highlight {
	font-weight: 600;
}
.prod-features li.highlight .prod-check {
	color: #16a34a;
}
.prod-check {
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--text-dim, rgba(0,0,0,.45));
}

/* Actions */
.prod-card-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.prod-cta {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
	background: #2FA3F2;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}
.prod-cta:hover {
	background: #1b8ad8;
	transform: translateY(-1px);
}
.prod-cta-secondary {
	display: block;
	width: 100%;
	text-align: center;
	padding: 11px 18px;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text, #000);
	background: transparent;
	border: 1px solid rgba(0,0,0,0.12);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.prod-cta-secondary:hover {
	background: rgba(0,0,0,0.03);
	border-color: rgba(0,0,0,0.22);
}

/* Product showcase — mobile */
@media (max-width: 740px) {
	.prod-showcase {
		padding: 24px 0 40px;
	}
	.prod-showcase-intro {
		margin-bottom: 24px;
	}
	.prod-showcase-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 100%;
	}
	.prod-card {
		padding: 20px 18px 18px;
	}
	.prod-badge {
		position: static;
		display: inline-block;
		margin-bottom: 10px;
	}
	.prod-card-visual img {
		max-height: 200px;
	}
	.prod-title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* ============================================================
   MEMBERSHIPS — MOBILE SWIPE
   ============================================================ */
@media (max-width: 880px) {
	.tiers .tier-tabs {
		display: none !important;
	}
	.tiers .tier-panels {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		touch-action: pan-x pan-y pinch-zoom;
		overscroll-behavior-x: contain;
		gap: 16px;
		padding-bottom: 8px;
	}
	.tiers .tier-panels::-webkit-scrollbar {
		display: none;
	}
	.tiers .tier-panel {
		display: block !important;
		scroll-snap-align: center;
		flex: 0 0 88vw !important;
		min-width: 88vw !important;
		max-width: 88vw !important;
	}
}

/* ============================================================
   BUNDLE OFFER CARDS — CLICKABLE STYLE
   ============================================================ */
body.single-product div.product .whoop-product-bundle-offer[data-qty] {
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.single-product div.product .whoop-product-bundle-offer[data-qty]:hover {
	border-color: rgba(47, 163, 242, 0.5);
	box-shadow: 0 0 0 2px rgba(47, 163, 242, 0.18);
}
body.single-product div.product .whoop-product-bundle-offer[data-qty].is-selected {
	border-color: #2FA3F2;
	box-shadow: 0 0 0 2px rgba(47, 163, 242, 0.3);
	background: linear-gradient(180deg, rgba(47, 163, 242, 0.14), rgba(38, 18, 70, 0.08));
}

/* =========================================================
 *  CONTENT PAGES REFACTOR — Trendyol / Apple seviyesi
 *  Hakkımızda + Gıda İntoleransı sayfaları için modern stil
 *
 *  Breakpoint stratejisi:
 *    > 1280px  : ferah desktop, max content width 1280
 *    1024-1280 : tablet landscape, content max 960
 *    768-1024  : tablet portrait, 1-2 column layouts
 *    480-768   : mobile landscape, single column
 *    < 480     : küçük mobil, minimal padding
 *
 *  Tipografi: clamp() ile fluid responsive
 *  Spacing: 8/16/24/32/48/64/96 ölçek
 *  Renkler: #261246 (primary), #2FA3F2 (accent), #d4006c (magenta)
 * ========================================================= */

/* ---------- STORY-PAGE BLOCK (Hakkımızda + Gıda İntoleransı hero) ---------- */

/* ============================================================
 * STORY-PAGE HERO — modern gradient + decorative shapes
 * Background image inline tarzında geliyor, biz override edip
 * pure gradient + floating decoration kullanıyoruz.
 * ============================================================ */
.story-page-hero,
html body .story-page-hero {
	position: relative !important;
	min-height: clamp(380px, 55vh, 560px) !important;
	display: flex !important;
	align-items: center !important;
	padding-top: calc(var(--header-h, 109px) + clamp(40px, 6vh, 80px)) !important;
	padding-bottom: clamp(60px, 8vh, 100px) !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	background: linear-gradient(135deg, #1a0b30 0%, #261246 35%, #3d1d6e 70%, #1a0b30 100%) !important;
	background-size: 200% 200% !important;
	background-position: 0% 50% !important;
	background-image: linear-gradient(135deg, #1a0b30 0%, #261246 35%, #3d1d6e 70%, #1a0b30 100%) !important;
	background-repeat: no-repeat !important;
	color: #fff !important;
	overflow: hidden !important;
	isolation: isolate !important;
}

/* Decorative radial glows (sol üstte magenta + sağ altta mavi) */
.story-page-hero::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	background:
		radial-gradient(circle at 15% 25%, rgba(212, 0, 108, 0.35), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(47, 163, 242, 0.30), transparent 45%),
		radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.15), transparent 60%) !important;
	z-index: 0 !important;
	pointer-events: none !important;
	animation: bii-hero-glow 12s ease-in-out infinite alternate;
}

/* Subtle grid pattern overlay for texture */
.story-page-hero::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 60px 60px !important;
	background-position: center !important;
	mask-image: radial-gradient(ellipse 80% 60% at center, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at center, #000, transparent 75%);
	z-index: 1 !important;
	pointer-events: none !important;
	opacity: 0.6;
}

/* Floating decorative shapes (3 abstract orbs) */
.story-page-hero > .container::before {
	content: "" !important;
	position: absolute !important;
	top: 15%;
	left: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 0, 108, 0.45), rgba(212, 0, 108, 0) 65%);
	filter: blur(40px);
	z-index: -1;
	pointer-events: none;
	animation: bii-hero-float 14s ease-in-out infinite;
}
.story-page-hero > .container::after {
	content: "" !important;
	position: absolute !important;
	bottom: -40px;
	right: -60px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 163, 242, 0.35), rgba(47, 163, 242, 0) 65%);
	filter: blur(50px);
	z-index: -1;
	pointer-events: none;
	animation: bii-hero-float 18s ease-in-out infinite reverse;
}

.story-page-hero .container {
	position: relative !important;
	z-index: 2 !important;
	width: min(900px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
	text-align: center !important;
}

/* Eski overlay'i şeffaf yap (override) */
.story-page-hero-overlay,
html body .story-page-hero-overlay {
	background: transparent !important;
	display: none !important;
}

/* Hero copy block — daha üst hierarchy */
.story-page-hero-copy {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

/* Pill badge istek üzerine kaldırıldı */

@keyframes bii-hero-glow {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
@keyframes bii-hero-float {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(40px, -30px); }
}

/* Hero bottom curve (mevcut .story-page-hero-curve daha pürüzsüz) */
.story-page-hero-curve {
	position: absolute !important;
	left: -10% !important;
	right: -10% !important;
	bottom: -2px !important;
	height: 90px !important;
	background: #fff !important;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
	z-index: 4 !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
	.story-page-hero,
	html body .story-page-hero {
		min-height: clamp(320px, 50vh, 460px) !important;
	}
	.story-page-hero > .container::before {
		width: 160px;
		height: 160px;
		left: -60px;
		top: 10%;
	}
	.story-page-hero > .container::after {
		width: 200px;
		height: 200px;
		right: -50px;
		bottom: -30px;
	}
	.story-page-hero::after {
		background-size: 40px 40px !important;
	}
	/* (badge kaldırıldı) */
}
@media (max-width: 480px) {
	.story-page-hero,
	html body .story-page-hero {
		min-height: 280px !important;
		padding-top: calc(var(--header-h, 64px) + 30px) !important;
		padding-bottom: 50px !important;
	}
	.story-page-hero-curve {
		height: 60px !important;
	}
}

.story-page-hero-overlay {
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(180deg, rgba(38, 18, 70, 0.55) 0%, rgba(38, 18, 70, 0.85) 100%) !important;
	z-index: 1 !important;
}

.story-page-hero .container {
	position: relative !important;
	z-index: 2 !important;
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
}

.story-page-hero-copy {
	max-width: 640px;
	text-align: center;
	margin: 0 auto;
}

.story-page-hero-copy h1,
.story-page-hero-copy h2 {
	font-size: clamp(1.8rem, 4.5vw, 3.4rem) !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.025em !important;
	margin: 0 0 18px !important;
	color: #fff !important;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.story-page-hero-copy p {
	font-size: clamp(0.95rem, 1.4vw, 1.15rem) !important;
	line-height: 1.5 !important;
	color: rgba(255, 255, 255, 0.92) !important;
	margin: 0 0 28px !important;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.story-hero-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 52px !important;
	padding: 14px 32px !important;
	background: linear-gradient(135deg, #d4006c 0%, #ff3399 100%) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 12px !important;
	font-size: 0.96rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.03em !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px -6px rgba(212, 0, 108, 0.5) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.story-hero-cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 12px 28px -8px rgba(212, 0, 108, 0.6) !important;
}

.story-page-hero-curve {
	position: absolute !important;
	left: -10%; right: -10%;
	bottom: -1px !important;
	height: 80px !important;
	background: #fff !important;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0 !important;
	z-index: 2 !important;
}

/* Story sections — modern image+text alternating */
.story-page-body {
	padding: clamp(48px, 8vh, 96px) 0 !important;
	background: #fff !important;
}
.story-page-body .container {
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
}

.story-page-sections {
	display: flex !important;
	flex-direction: column !important;
	gap: clamp(48px, 8vh, 112px) !important;
}

.story-page-section {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: clamp(32px, 5vw, 80px) !important;
	align-items: center !important;
	padding: clamp(40px, 6vw, 72px) !important;
	background: linear-gradient(135deg, #fff 0%, #faf8fd 100%) !important;
	border-radius: clamp(20px, 3vw, 32px) !important;
	border: 1px solid rgba(38, 18, 70, 0.06) !important;
	box-shadow: 0 12px 40px -20px rgba(38, 18, 70, 0.1) !important;
}
.story-page-section:nth-child(even) {
	background: linear-gradient(135deg, #faf5ff 0%, #fff 100%) !important;
}
/* Reverse pattern: 1., 3., 5. bloklarda image SAĞDA (text solda) */
/* `order` property ile explicit kontrol — direction:rtl'den daha güvenilir */
html body .story-page-section.is-reversed .story-page-section-visual {
	order: 2 !important;
}
html body .story-page-section.is-reversed .story-page-section-copy {
	order: 1 !important;
}

.story-page-section-visual {
	border-radius: clamp(16px, 2.5vw, 28px) !important;
	overflow: hidden !important;
	background: #f4f2f9 !important;
	box-shadow: 0 12px 40px -16px rgba(38, 18, 70, 0.18) !important;
	aspect-ratio: 4/5 !important;
	max-width: 100% !important;
}
.story-page-section-visual img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.5s ease !important;
}
.story-page-section:hover .story-page-section-visual img {
	transform: scale(1.04) !important;
}

.story-page-section-copy h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.02em !important;
	color: #261246 !important;
	margin: 0 0 18px !important;
}
.story-page-section-copy h2::before {
	content: "" !important;
	display: block !important;
	width: 56px !important;
	height: 4px !important;
	background: linear-gradient(90deg, #d4006c, #ff3399) !important;
	border-radius: 4px !important;
	margin-bottom: 18px !important;
}

.story-page-section-text {
	font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important;
	line-height: 1.65 !important;
	color: rgba(38, 18, 70, 0.78) !important;
}
.story-page-section-text p { margin: 0 0 14px !important; }
.story-page-section-text p:last-child { margin-bottom: 0 !important; }

.story-bullets {
	list-style: none !important;
	padding: 0 !important;
	margin: 20px 0 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}
.story-bullets li {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
	font-size: 0.96rem !important;
	line-height: 1.4 !important;
	color: #261246 !important;
}
.story-bullet-icon {
	flex: 0 0 22px !important;
	width: 22px !important;
	height: 22px !important;
	margin-top: 2px !important;
	padding: 4px !important;
	background: linear-gradient(135deg, #2FA3F2, #1e7fc4) !important;
	color: #fff !important;
	border-radius: 50% !important;
}

.story-page-section-copy .btn,
.story-section-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 52px !important;
	padding: 14px 32px !important;
	margin-top: 24px !important;
	background: linear-gradient(135deg, #261246, #3d1d6e) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 12px !important;
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
	text-decoration: none !important;
	box-shadow: 0 6px 18px -6px rgba(38, 18, 70, 0.4) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.story-page-section-copy .btn:hover,
.story-section-cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 24px -8px rgba(38, 18, 70, 0.5) !important;
}

/* Dark section variant */
.story-section-dark {
	background: linear-gradient(135deg, #261246 0%, #1a0b30 100%) !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 80px) !important;
	border-radius: 0 !important;
}
.story-section-dark .story-page-section-copy h2 {
	color: #fff !important;
}
.story-section-dark .story-page-section-text {
	color: rgba(255, 255, 255, 0.82) !important;
}
.story-section-dark .story-bullets li { color: #fff !important; }

/* Story stats */
.story-stats {
	background: #fff !important;
	padding: clamp(32px, 6vh, 60px) 0 !important;
}
.story-stats-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
	gap: clamp(24px, 4vw, 48px) !important;
	text-align: center !important;
}
.story-stat {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
}
.story-stat-value {
	font-size: clamp(2rem, 4vw, 3.2rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	background: linear-gradient(135deg, #d4006c, #2FA3F2) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
	line-height: 1 !important;
}
.story-stat-label {
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	color: rgba(38, 18, 70, 0.7) !important;
}

/* ---------- FEATURES-SLIDER ("Güvenli Ödeme ile Siparişini Ver") ---------- */

section.features {
	padding: clamp(48px, 8vh, 96px) 0 !important;
}
section.features .features-intro {
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto clamp(28px, 5vh, 56px) !important;
	text-align: center !important;
}
section.features .features-intro h2 + p,
section.features .features-intro p {
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 720px !important;
}
section.features .features-intro h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.025em !important;
	color: #261246 !important;
	margin: 0 0 12px !important;
	/* Tek satır kalsın — alan yetiyorsa */
	white-space: nowrap !important;
	max-width: 100% !important;
}
/* Tablet/mobile: container'a sığmıyorsa wrap'a izin ver */
@media (max-width: 1024px) {
	section.features .features-intro h2 {
		white-space: normal !important;
		text-wrap: balance !important;
	}
}
section.features .features-intro p {
	font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important;
	color: rgba(38, 18, 70, 0.7) !important;
	margin: 0 !important;
}

.feature-slider {
	position: relative !important;
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
}

/* Features slider — ana sayfa gibi yatay kaydırılabilir track */
html body .feature-slider {
	position: relative !important;
}
html body .feature-slider .feature-track,
html body .features .feature-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: clamp(14px, 1.6vw, 22px) !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	overscroll-behavior-x: contain !important;
	/* Allow BOTH horizontal swipe (carousel) AND vertical pan (page scroll).
	 * Without pan-y the user can't drag past this band on mobile — touching
	 * the track to scroll the page is a no-op. The browser dispatches the
	 * gesture to whichever axis the finger moves more in. */
	touch-action: pan-x pan-y pinch-zoom !important;
	scroll-snap-type: x mandatory !important;
	scroll-behavior: smooth !important;
	scroll-padding-left: clamp(16px, 3vw, 32px) !important;
	scrollbar-width: none !important;
	-webkit-overflow-scrolling: touch !important;
	padding: 4px clamp(16px, 3vw, 32px) 20px !important;
	margin: 0 calc(clamp(16px, 3vw, 32px) * -1) !important;
	width: calc(100% + clamp(32px, 6vw, 64px)) !important;
	max-width: none !important;
}
html body .feature-slider .feature-track::-webkit-scrollbar,
html body .features .feature-track::-webkit-scrollbar {
	display: none !important;
}

html body .feature-slider .feature-card,
html body .features .feature-card {
	position: relative !important;
	overflow: hidden !important;
	border-radius: clamp(16px, 2vw, 24px) !important;
	background: #f4f2f9 !important;
	aspect-ratio: 4/5 !important;
	cursor: pointer !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	box-shadow: 0 4px 16px -6px rgba(38, 18, 70, 0.1) !important;
	/* Slider için sabit kart genişliği */
	flex: 0 0 auto !important;
	width: clamp(240px, 26vw, 320px) !important;
	min-width: clamp(240px, 26vw, 320px) !important;
	max-width: clamp(240px, 26vw, 320px) !important;
	scroll-snap-align: start !important;
}

/* Slider okları — visible, professional */
html body .feature-slider .slider-arrows {
	display: flex !important;
	gap: 10px !important;
	justify-content: flex-end !important;
	margin: 18px 0 0 !important;
	padding: 0 clamp(16px, 3vw, 32px) !important;
}
html body .feature-slider .slider-arrow {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 48px !important;
	height: 48px !important;
	border-radius: 50% !important;
	background: #fff !important;
	border: 1.5px solid rgba(38, 18, 70, 0.12) !important;
	color: #261246 !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	padding: 0 !important;
	box-shadow: 0 2px 8px rgba(38, 18, 70, 0.06) !important;
}
html body .feature-slider .slider-arrow:hover:not(:disabled) {
	background: linear-gradient(135deg, #261246, #3d1d6e) !important;
	color: #fff !important;
	border-color: #261246 !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 8px 18px -4px rgba(38, 18, 70, 0.3) !important;
}
html body .feature-slider .slider-arrow:disabled {
	opacity: 0.35 !important;
	cursor: not-allowed !important;
}
html body .feature-slider .slider-arrow svg {
	width: 18px !important;
	height: 18px !important;
}

/* Mobile: kart genişliği viewport'a daha uyumlu */
@media (max-width: 768px) {
	html body .feature-slider .feature-card,
	html body .features .feature-card {
		width: 78vw !important;
		min-width: 78vw !important;
		max-width: 320px !important;
	}
	html body .feature-slider .slider-arrows {
		display: none !important;  /* mobile'da touch-swipe yeterli */
	}
}
.feature-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 16px 36px -10px rgba(38, 18, 70, 0.25) !important;
}
.feature-card img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.5s ease !important;
}
.feature-card:hover img {
	transform: scale(1.08) !important;
}
.feature-card-content {
	position: absolute !important;
	inset: auto 0 0 0 !important;
	padding: clamp(20px, 3vw, 32px) !important;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.85) 100%) !important;
	color: #fff !important;
	z-index: 2 !important;
}
.feature-card-content h3 {
	font-size: clamp(1.1rem, 1.8vw, 1.5rem) !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.01em !important;
	margin: 0 !important;
	color: #fff !important;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Slider arrows — only visible on overflow */
.slider-arrows {
	display: none !important;  /* Grid mode'da gerek yok */
}

/* ---------- MEMBERSHIPS (Elite/Platinum tabs) ---------- */

section.memberships {
	padding: clamp(48px, 8vh, 96px) 0 !important;
}
section.memberships .container {
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
}
section.memberships h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.025em !important;
	color: #261246 !important;
	text-align: center !important;
	margin: 0 0 clamp(28px, 5vh, 56px) !important;
}

/* Tabs container — wrapper olarak hep flex, hem mobile hem desktop */
html body .tier-tabs,
html body .memberships-tabs,
html body .tiers .tier-tabs {
	display: flex !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
	max-width: 100% !important;
	background: #f4f2f9 !important;
	border-radius: 999px !important;
	padding: 6px !important;
	margin: 0 auto clamp(28px, 5vh, 48px) !important;
	gap: 4px !important;
	justify-content: center !important;
	align-items: stretch !important;
	flex-wrap: nowrap !important;
	overflow: visible !important;
	box-shadow: 0 2px 8px rgba(38, 18, 70, 0.06) !important;
}
html body .tier-tab,
html body .memberships-tab {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	min-height: 40px !important;
}
.tier-tab,
.memberships-tab {
	padding: 10px 28px !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: rgba(38, 18, 70, 0.6) !important;
	font-weight: 700 !important;
	font-size: 0.96rem !important;
	cursor: pointer !important;
	border: 0 !important;
	transition: all 0.2s ease !important;
}
.tier-tab.is-active,
.memberships-tab.is-active {
	background: #fff !important;
	color: #261246 !important;
	box-shadow: 0 4px 12px -4px rgba(38, 18, 70, 0.15) !important;
}

/* Tier panel — kendisi sadece kart, içindeki tier-shell zaten grid (woocommerce-custom.css'te 1fr 1fr).
   Hakkımızda'daki memberships block için: tier-media image YOK ise hide, tier-body full width al. */
body:not(.single-product) .tier-panel .tier-shell {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) !important;
	gap: clamp(24px, 4vw, 48px) !important;
	align-items: center !important;
	background: #fff !important;
	border-radius: clamp(20px, 3vw, 28px) !important;
	overflow: hidden !important;
	padding: clamp(20px, 3vw, 40px) !important;
	box-shadow: 0 16px 48px -16px rgba(38, 18, 70, 0.12) !important;
	border: 1px solid rgba(38, 18, 70, 0.06) !important;
}
/* Tier-media image yoksa sol kolonu gizle, body full width */
body:not(.single-product) .tier-panel .tier-shell:not(:has(.tier-media img)) {
	grid-template-columns: 1fr !important;
}
body:not(.single-product) .tier-panel .tier-shell:not(:has(.tier-media img)) .tier-media {
	display: none !important;
}
body:not(.single-product) .tier-panel .tier-media img {
	width: 100% !important;
	height: auto !important;
	border-radius: clamp(14px, 2vw, 20px) !important;
	display: block !important;
}
body:not(.single-product) .tier-panel .tier-body {
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
	padding: 0 !important;
}
body:not(.single-product) .tier-panel:not(.is-active) {
	display: none !important;
}

/* MOBILE: tier-shell tek sütun, image üstte, ana sayfa kalitesinde polish */
@media (max-width: 768px) {
	body:not(.single-product) .tier-panel .tier-shell {
		grid-template-columns: 1fr !important;
		gap: 22px !important;
		padding: 24px 20px 28px !important;
		border-radius: 20px !important;
		background: #fff !important;
		box-shadow: 0 12px 40px -12px rgba(38, 18, 70, 0.18) !important;
		border: 1.5px solid rgba(38, 18, 70, 0.06) !important;
		position: relative !important;
	}
	body:not(.single-product) .tier-panel .tier-media {
		order: -1 !important;
		max-width: 240px !important;
		margin: 0 auto !important;
		width: 100% !important;
		background: linear-gradient(135deg, #faf5ff 0%, #f0e8fb 100%) !important;
		border-radius: 16px !important;
		padding: 16px !important;
	}
	body:not(.single-product) .tier-panel .tier-media img {
		width: 100% !important;
		max-width: 200px !important;
		height: auto !important;
		max-height: 240px !important;
		object-fit: contain !important;
		margin: 0 auto !important;
		display: block !important;
	}
	body:not(.single-product) .tier-panel .tier-body {
		width: 100% !important;
		padding: 0 !important;
		gap: 16px !important;
	}
	body:not(.single-product) .tier-panel .tier-title {
		font-size: 1.45rem !important;
		font-weight: 800 !important;
		letter-spacing: -0.02em !important;
		color: #261246 !important;
		text-align: center !important;
		margin: 0 !important;
		line-height: 1.15 !important;
	}
	body:not(.single-product) .tier-panel .tier-certs {
		justify-content: center !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
		margin: 0 !important;
	}
	body:not(.single-product) .tier-panel .tier-cert {
		width: 56px !important;
		height: 56px !important;
		padding: 6px !important;
		border: 1px solid rgba(38, 18, 70, 0.1) !important;
		border-radius: 12px !important;
		background: #fff !important;
		flex: 0 0 56px !important;
	}
	body:not(.single-product) .tier-panel .tier-features {
		font-size: 0.94rem !important;
		line-height: 1.5 !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		list-style: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	body:not(.single-product) .tier-panel .tier-features li {
		display: grid !important;
		grid-template-columns: 20px 1fr !important;
		gap: 10px !important;
		align-items: start !important;
		color: #4a3a78 !important;
	}
	/* Price */
	body:not(.single-product) .tier-panel .tier-price,
	body:not(.single-product) .tier-panel .price {
		display: flex !important;
		align-items: baseline !important;
		justify-content: center !important;
		gap: 10px !important;
		font-size: 1.4rem !important;
		font-weight: 800 !important;
		color: #d4006c !important;
		margin: 6px 0 0 !important;
	}
	body:not(.single-product) .tier-panel .tier-compare-price,
	body:not(.single-product) .tier-panel del {
		font-size: 0.95rem !important;
		font-weight: 500 !important;
		color: rgba(38, 18, 70, 0.45) !important;
		text-decoration: line-through !important;
	}
	/* CTA buttons */
	body:not(.single-product) .tier-panel .tier-actions {
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		margin-top: 4px !important;
	}
	body:not(.single-product) .tier-panel .tier-actions .btn,
	body:not(.single-product) .tier-panel .tier-body a.btn {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		min-height: 52px !important;
		padding: 14px 24px !important;
		border-radius: 12px !important;
		font-size: 0.95rem !important;
		font-weight: 800 !important;
		letter-spacing: 0.06em !important;
		text-transform: uppercase !important;
		text-decoration: none !important;
		text-align: center !important;
		transition: transform 0.2s ease, box-shadow 0.2s ease !important;
		box-sizing: border-box !important;
	}
	/* Primary CTA: gradient magenta-purple */
	body:not(.single-product) .tier-panel .tier-actions .btn-primary,
	body:not(.single-product) .tier-panel .tier-body a.btn-primary {
		background: linear-gradient(135deg, #261246 0%, #3d1d6e 100%) !important;
		color: #fff !important;
		border: 0 !important;
		box-shadow: 0 8px 20px -6px rgba(38, 18, 70, 0.4) !important;
	}
	body:not(.single-product) .tier-panel .tier-actions .btn-primary:hover,
	body:not(.single-product) .tier-panel .tier-body a.btn-primary:hover {
		transform: translateY(-2px) !important;
		box-shadow: 0 12px 28px -8px rgba(38, 18, 70, 0.55) !important;
	}
	/* Secondary CTA: outline */
	body:not(.single-product) .tier-panel .tier-actions .btn-outline,
	body:not(.single-product) .tier-panel .tier-body a.btn-outline,
	body:not(.single-product) .tier-panel .tier-actions .btn-secondary {
		background: #fff !important;
		color: #261246 !important;
		border: 1.5px solid rgba(38, 18, 70, 0.15) !important;
	}
	body:not(.single-product) .tier-panel .tier-actions .btn-outline:hover,
	body:not(.single-product) .tier-panel .tier-body a.btn-outline:hover {
		border-color: #d4006c !important;
		color: #d4006c !important;
		background: rgba(212, 0, 108, 0.04) !important;
	}
	/* Tier rating row */
	body:not(.single-product) .tier-panel .tier-rating {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 6px !important;
		font-size: 0.86rem !important;
		color: rgba(38, 18, 70, 0.7) !important;
	}
	body:not(.single-product) .tier-panel .tier-stars {
		color: #f59e0b !important;
		letter-spacing: 1px !important;
	}
}

/* Small mobile: kart daha sıkı */
@media (max-width: 480px) {
	body:not(.single-product) .tier-panel .tier-shell {
		padding: 14px !important;
		gap: 16px !important;
	}
	body:not(.single-product) .tier-panel .tier-media,
	body:not(.single-product) .tier-panel .tier-media img {
		max-width: 240px !important;
		max-height: 280px !important;
	}
	body:not(.single-product) .tier-panel .tier-title {
		font-size: 1.2rem !important;
	}
}

/* MOBILE: story-page hero padding fix (smaller header on mobile) */
@media (max-width: 768px) {
	.story-page-hero {
		padding-top: calc(var(--header-h, 64px) + 32px) !important;
		padding-bottom: 50px !important;
		min-height: 280px !important;
	}
}

/* MOBILE: tier-tabs hem Elite hem Platinum eşit görünür */
@media (max-width: 768px) {
	.tier-tabs,
	.memberships-tabs {
		display: flex !important;
		width: auto !important;
		max-width: 100% !important;
		margin: 0 auto !important;
		justify-content: center !important;
		align-items: stretch !important;
		flex-wrap: nowrap !important;
		gap: 4px !important;
		overflow: visible !important;
	}
	.tier-tab,
	.memberships-tab {
		flex: 0 1 auto !important;
		min-width: 110px !important;
		padding: 11px 22px !important;
		font-size: 0.92rem !important;
		text-align: center !important;
		white-space: nowrap !important;
	}
}

/* ---------- PRODUCT-SHOWCASE (Gıda İntoleransı 2-ürün) ----------
 * Memberships tier card visual treatment'i birebir uygulanmıştır.
 * Class'lar prod-* ama görsel = tier-* (ana sayfa)
 */

/* Section wrapper */
html body section.prod-showcase {
	padding: clamp(48px, 8vh, 96px) 0 !important;
	background: linear-gradient(180deg, #fff 0%, #faf8fd 100%) !important;
}
html body section.prod-showcase .container {
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
}
html body section.prod-showcase .prod-showcase-intro {
	text-align: center !important;
	margin: 0 0 clamp(28px, 5vh, 48px) !important;
}
html body section.prod-showcase .prod-showcase-intro h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.025em !important;
	color: #261246 !important;
	margin: 0 0 12px !important;
}
html body section.prod-showcase .prod-showcase-intro p {
	font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important;
	color: rgba(38, 18, 70, 0.7) !important;
	margin: 0 !important;
}

/* Grid 2-col */
html body .prod-showcase-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
	gap: clamp(20px, 3vw, 36px) !important;
	align-items: stretch !important;
	max-width: 960px !important;
	margin: 0 auto !important;
}

/* Card */
html body .prod-card {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	background: #fff !important;
	border-radius: clamp(20px, 3vw, 28px) !important;
	overflow: visible !important;
	border: 1.5px solid rgba(38, 18, 70, 0.06) !important;
	box-shadow: 0 12px 40px -16px rgba(38, 18, 70, 0.15) !important;
	padding: clamp(24px, 3vw, 32px) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
html body .prod-card:hover {
	transform: translateY(-6px) !important;
	border-color: rgba(212, 0, 108, 0.18) !important;
	box-shadow: 0 24px 60px -20px rgba(38, 18, 70, 0.22) !important;
}

/* Badge (En Kapsamlı) */
html body .prod-badge {
	position: absolute !important;
	top: -10px !important;
	left: 18px !important;
	z-index: 2 !important;
	padding: 6px 14px !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #d4006c 0%, #ff3399 100%) !important;
	color: #fff !important;
	font-size: 0.74rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	box-shadow: 0 4px 14px -4px rgba(212, 0, 108, 0.5) !important;
}

/* Card header (logo + subtitle) */
html body .prod-card-header {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 4px !important;
	text-align: center !important;
	margin: 0 !important;
}
html body .prod-logo {
	height: 38px !important;
	width: auto !important;
	max-width: 160px !important;
	object-fit: contain !important;
}
html body .prod-subtitle {
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	color: rgba(38, 18, 70, 0.55) !important;
	margin: 0 !important;
}

/* Card visual (phone mockup) */
html body .prod-card-visual {
	margin: 4px auto 6px !important;
	max-width: 280px !important;
	width: 100% !important;
	background: linear-gradient(135deg, #faf5ff 0%, #f0e8fb 100%) !important;
	border-radius: clamp(14px, 2vw, 20px) !important;
	padding: 16px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
html body .prod-card-visual img {
	width: 100% !important;
	max-width: 220px !important;
	max-height: 260px !important;
	height: auto !important;
	object-fit: contain !important;
	display: block !important;
	margin: 0 auto !important;
}

/* Rating */
html body .prod-rating {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: 0.86rem !important;
	color: rgba(38, 18, 70, 0.7) !important;
	margin: 0 !important;
}
html body .prod-stars {
	color: #f59e0b !important;
	display: inline-flex !important;
	gap: 2px !important;
}

/* Title + Certs row → mobile'a uygun column */
html body .prod-title-row {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 12px !important;
	text-align: center !important;
	margin: 0 !important;
}
html body .prod-card-title {
	font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em !important;
	color: #261246 !important;
	line-height: 1.15 !important;
	margin: 0 !important;
}
html body .prod-certs {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	gap: 8px !important;
}
html body .prod-cert {
	width: 52px !important;
	height: 52px !important;
	padding: 5px !important;
	border: 1px solid rgba(38, 18, 70, 0.1) !important;
	border-radius: 12px !important;
	background: #fff !important;
	flex: 0 0 52px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
html body .prod-cert img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}

/* Price */
html body .prod-price {
	display: flex !important;
	align-items: baseline !important;
	justify-content: center !important;
	gap: 10px !important;
	margin: 4px 0 !important;
}
html body .prod-price-old {
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	color: rgba(38, 18, 70, 0.45) !important;
	text-decoration: line-through !important;
}
html body .prod-price-new {
	font-size: clamp(1.5rem, 2.2vw, 1.9rem) !important;
	font-weight: 800 !important;
	color: #d4006c !important;
	letter-spacing: -0.02em !important;
}

/* Features list */
html body .prod-features {
	list-style: none !important;
	padding: 0 !important;
	margin: 4px 0 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	border-top: 1px solid rgba(38, 18, 70, 0.06) !important;
	padding-top: 16px !important;
}
html body .prod-features li {
	display: grid !important;
	grid-template-columns: 20px 1fr !important;
	gap: 10px !important;
	align-items: start !important;
	font-size: 0.94rem !important;
	line-height: 1.5 !important;
	color: #4a3a78 !important;
}
html body .prod-features li.highlight {
	font-weight: 700 !important;
	color: #261246 !important;
}
html body .prod-check {
	flex: 0 0 20px !important;
	width: 20px !important;
	height: 20px !important;
	margin-top: 2px !important;
	padding: 3px !important;
	background: linear-gradient(135deg, #16a34a, #22c55e) !important;
	color: #fff !important;
	border-radius: 50% !important;
}

/* Card actions (CTA + secondary) */
html body .prod-card-actions {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	margin-top: auto !important;
	padding-top: 12px !important;
}
html body .prod-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 54px !important;
	padding: 14px 24px !important;
	background: linear-gradient(135deg, #261246 0%, #3d1d6e 100%) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 12px !important;
	font-size: 0.96rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px -6px rgba(38, 18, 70, 0.4) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease !important;
}
html body .prod-cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 12px 28px -8px rgba(38, 18, 70, 0.55) !important;
	background: linear-gradient(135deg, #3d1d6e 0%, #261246 100%) !important;
}
html body .prod-cta-secondary {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	padding: 14px 24px !important;
	background: #fff !important;
	color: #261246 !important;
	border: 1.5px solid rgba(38, 18, 70, 0.15) !important;
	border-radius: 12px !important;
	font-size: 0.92rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
	text-decoration: none !important;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease !important;
}
html body .prod-cta-secondary:hover {
	border-color: #d4006c !important;
	color: #d4006c !important;
	background: rgba(212, 0, 108, 0.04) !important;
}

/* Mobile (≤ 768px): cards stack, full width */
@media (max-width: 768px) {
	html body .prod-showcase-grid {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}
	html body .prod-card {
		padding: 22px 18px !important;
	}
	html body .prod-card-visual {
		max-width: 240px !important;
	}
	html body .prod-card-visual img {
		max-width: 200px !important;
		max-height: 230px !important;
	}
	html body .prod-card-title {
		font-size: 1.3rem !important;
	}
	html body .prod-price-new {
		font-size: 1.55rem !important;
	}
}
@media (max-width: 480px) {
	html body .prod-card {
		padding: 20px 16px !important;
	}
	html body .prod-card-visual {
		max-width: 200px !important;
	}
	html body .prod-card-visual img {
		max-width: 180px !important;
		max-height: 210px !important;
	}
}

/* ---------- DEPRECATED — old generic showcase block CSS ---------- */

section.category-showcase,
section.product-showcase {
	padding: clamp(48px, 8vh, 96px) 0 !important;
	background: linear-gradient(180deg, #fff 0%, #faf8fd 100%) !important;
}
section.category-showcase .container,
section.product-showcase .container {
	width: min(1280px, calc(100% - 32px)) !important;
	margin: 0 auto !important;
}
section.category-showcase h2,
section.product-showcase h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
	font-weight: 800 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.025em !important;
	color: #261246 !important;
	text-align: center !important;
	margin: 0 0 12px !important;
}
section.category-showcase .showcase-intro,
section.product-showcase .showcase-intro {
	text-align: center !important;
	color: rgba(38, 18, 70, 0.7) !important;
	margin: 0 0 clamp(32px, 5vh, 56px) !important;
}

/* Product cards grid */
.showcase-grid,
.product-showcase-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
	gap: clamp(20px, 3vw, 40px) !important;
	align-items: stretch !important;
}

.showcase-card,
.product-showcase-card {
	display: flex !important;
	flex-direction: column !important;
	background: #fff !important;
	border-radius: clamp(20px, 3vw, 28px) !important;
	overflow: hidden !important;
	border: 1.5px solid rgba(38, 18, 70, 0.08) !important;
	box-shadow: 0 12px 36px -16px rgba(38, 18, 70, 0.15) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.showcase-card:hover,
.product-showcase-card:hover {
	transform: translateY(-6px) !important;
	border-color: rgba(47, 163, 242, 0.3) !important;
	box-shadow: 0 24px 60px -20px rgba(38, 18, 70, 0.25) !important;
}

/* ---------- TABLET BREAKPOINT (1024px) ---------- */
@media (max-width: 1024px) {
	.story-page-section {
		gap: clamp(28px, 4vw, 48px) !important;
	}
	.feature-track {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
	}
}

/* ---------- TABLET PORTRAIT (768px) ---------- */
@media (max-width: 768px) {
	.story-page-hero {
		min-height: clamp(320px, 45vh, 460px) !important;
		padding: 100px 0 60px !important;
	}
	.story-page-hero-copy h1,
	.story-page-hero-copy h2 {
		font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
	}
	.story-page-section {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
		direction: ltr !important;
	}
	/* Mobile: image her zaman üstte, reverse iptal */
	html body .story-page-section.is-reversed .story-page-section-visual,
	.story-page-section .story-page-section-visual {
		order: -1 !important;
	}
	html body .story-page-section.is-reversed .story-page-section-copy,
	.story-page-section .story-page-section-copy {
		order: 0 !important;
	}
	/* Mobile: drop the forced aspect ratio so portrait imagery
	 * (e.g. the standing-figure illustration on /gida-intoleransi/) is
	 * shown in its native proportions instead of being cropped to fit a
	 * 4:3 letterbox. The container grows with the picture; nothing is cut. */
	.story-page-section-visual {
		aspect-ratio: auto !important;
		height: auto !important;
		order: -1 !important;
	}
	.story-page-section-visual img {
		width: 100% !important;
		height: auto !important;
		object-fit: contain !important;
		max-height: 70vh !important;     /* keep extremely tall images sane */
	}
	/* feature-track artık slider — grid override yok */
	.tier-panel {
		grid-template-columns: 1fr !important;
	}
	.showcase-grid,
	.product-showcase-grid {
		grid-template-columns: 1fr !important;
	}
	.story-section-dark {
		margin-left: 0 !important;
		margin-right: 0 !important;
		border-radius: clamp(16px, 3vw, 24px) !important;
	}
}

/* ---------- MOBILE (480px) ---------- */
@media (max-width: 480px) {
	.story-page-hero {
		padding: 80px 0 50px !important;
	}
	.story-page-hero-copy h1,
	.story-page-hero-copy h2 {
		font-size: 1.5rem !important;
	}
	.story-page-hero-copy p {
		font-size: 0.92rem !important;
	}
	.story-hero-cta,
	.story-section-cta,
	.story-page-section-copy .btn {
		width: 100% !important;
		max-width: 100% !important;
	}
	.story-page-section-copy h2 {
		font-size: 1.5rem !important;
	}
	/* feature-track artık slider — küçük mobile'da da kart 80vw */
	.tier-tab,
	.memberships-tab {
		padding: 8px 18px !important;
		font-size: 0.88rem !important;
	}
	section.features .features-intro h2,
	section.memberships h2,
	section.category-showcase h2,
	section.product-showcase h2 {
		font-size: 1.55rem !important;
		text-align: left !important;
	}
}

/* MOBILE: story-page body padding ekleyim ki çok dar olmasın */
@media (max-width: 768px) {
	.story-page-body {
		padding: 40px 0 !important;
	}
	.story-page-body .container,
	.story-page-hero .container {
		width: 100% !important;
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
	.story-page-section-copy h2 {
		font-size: 1.5rem !important;
		line-height: 1.2 !important;
	}
	.story-page-section-copy h2::before {
		width: 40px !important;
		margin-bottom: 14px !important;
	}
}

/* =========================================================
 *  FOOTER — Premium modern e-ticaret tasarımı
 *  ESKİ .footer class'larını override eder, yeni .biitest-footer__*
 * ========================================================= */

/* Legacy .footer-only markup is deprecated — use footer.php with .biitest-footer. */

.biitest-footer {
	background: linear-gradient(180deg, #1a0b30 0%, #0d0420 100%) !important;
	color: rgba(255, 255, 255, 0.85) !important;
	padding: clamp(48px, 8vh, 88px) 0 0 !important;
	margin-top: clamp(40px, 6vh, 80px) !important;
	font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	position: relative;
	overflow: hidden;
}
.biitest-footer::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 0, 108, 0.4), rgba(47, 163, 242, 0.4), transparent);
}
.biitest-footer__inner {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 24px);
}

/* ---------- Top: 4-col brand + cols + contact ---------- */
.biitest-footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: clamp(32px, 5vh, 56px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand block */
.biitest-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.biitest-footer__logo { display: inline-block; max-width: 160px; }
.biitest-footer__logo img { max-width: 100%; height: auto; filter: brightness(0) invert(1); }
.biitest-footer__logo-img { filter: none !important; }  /* Custom logo zaten beyaz olabilir */
.biitest-footer__tagline {
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	max-width: 280px;
}

/* Social */
.biitest-footer__socials { margin-top: 12px; }
.biitest-footer__socials-title {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 10px;
}
.biitest-footer__social-icons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.biitest-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85);
	transition: all 0.2s ease;
	text-decoration: none;
}
.biitest-footer__social:hover {
	background: linear-gradient(135deg, #d4006c, #ff3399);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -6px rgba(212, 0, 108, 0.6);
}
.biitest-footer__social svg { width: 18px; height: 18px; }

/* Columns */
.biitest-footer__col { display: flex; flex-direction: column; gap: 12px; }
.biitest-footer__col-title {
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin: 0 0 6px !important;
}
.biitest-footer__menu {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}
.biitest-footer__menu li { margin: 0 !important; padding: 0 !important; }
.biitest-footer__menu a {
	color: rgba(255, 255, 255, 0.78) !important;
	text-decoration: none !important;
	font-size: 0.92rem !important;
	font-weight: 500 !important;
	transition: color 0.15s ease, padding-left 0.15s ease !important;
	display: inline-block !important;
}
.biitest-footer__menu a:hover {
	color: #fff !important;
	padding-left: 4px !important;
}
.biitest-footer__empty {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.8rem;
	font-style: italic;
	margin: 0;
}

/* Contact column */
.biitest-footer__col--contact { gap: 14px; }
.biitest-footer__contact-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.biitest-footer__contact-row svg {
	flex: 0 0 16px;
	margin-top: 4px;
	color: rgba(212, 0, 108, 0.95);
}
.biitest-footer__contact-row > div { display: flex; flex-direction: column; gap: 2px; }
.biitest-footer__contact-label {
	font-size: 0.72rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.biitest-footer__contact-value {
	font-size: 0.96rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: color 0.15s ease;
}
.biitest-footer__contact-value:hover { color: #ff3399; }

/* ---------- Newsletter section ---------- */
.biitest-footer__newsletter {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
	padding: clamp(24px, 4vh, 40px) clamp(20px, 3vw, 36px);
	margin: clamp(28px, 5vh, 48px) 0 0;
	background: linear-gradient(135deg, rgba(212, 0, 108, 0.1) 0%, rgba(47, 163, 242, 0.08) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
}
.biitest-footer__newsletter-text { flex: 1 1 280px; min-width: 0; }
.biitest-footer__newsletter-title {
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 4px;
}
.biitest-footer__newsletter-policy {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}
.biitest-footer__newsletter-form {
	display: flex;
	gap: 8px;
	flex: 1 1 320px;
	max-width: 480px;
}
.biitest-footer__newsletter-input {
	flex: 1;
	min-width: 0;
	min-height: 48px;
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 10px !important;
	color: #fff !important;
	font-size: 0.94rem;
	font-family: inherit;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.biitest-footer__newsletter-input::placeholder { color: rgba(255, 255, 255, 0.4) !important; }
.biitest-footer__newsletter-input:focus {
	outline: none !important;
	border-color: #ff3399 !important;
	background: rgba(255, 255, 255, 0.12) !important;
}
.biitest-footer__newsletter-btn {
	min-height: 48px;
	padding: 12px 22px;
	background: linear-gradient(135deg, #d4006c 0%, #ff3399 100%) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 10px !important;
	font-weight: 800;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.biitest-footer__newsletter-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -6px rgba(212, 0, 108, 0.5);
}

/* ---------- Offices + ETBIS ---------- */
.biitest-footer__meta {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	margin-top: clamp(32px, 5vh, 48px);
	padding-top: clamp(28px, 4vh, 40px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.biitest-footer__offices-title,
.biitest-footer__etbis-title {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 14px;
}
.biitest-footer__offices-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}
.biitest-footer__office {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	transition: background 0.2s ease, transform 0.2s ease;
}
.biitest-footer__office:hover {
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-2px);
}
.biitest-footer__office-flag {
	font-size: 1.5rem;
	line-height: 1;
	flex: 0 0 auto;
}
.biitest-footer__office-body { flex: 1; min-width: 0; }
.biitest-footer__office-name {
	font-size: 0.92rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 2px;
}
.biitest-footer__office-address {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.4;
	margin: 0;
}
.biitest-footer__etbis-script {
	background: #fff;
	padding: 12px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.biitest-footer__etbis-script img { max-width: 120px; height: auto; }

/* ---------- Payments ---------- */
.biitest-footer__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: clamp(24px, 4vh, 36px);
	padding-top: clamp(20px, 3vh, 28px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.biitest-footer__payments-title {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}
.biitest-footer__payment-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.biitest-footer__payment-card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	min-height: 32px;
	background: #fff;
	color: #261246;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.biitest-footer__payment-card--visa       { background: #1a1f71; color: #fff; }
.biitest-footer__payment-card--mastercard { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); color: #fff; }
.biitest-footer__payment-card--amex       { background: #006fcf; color: #fff; }
.biitest-footer__payment-card--troy       { background: #00aec7; color: #fff; }
.biitest-footer__payment-card--paypal     { background: #003087; color: #fff; }
.biitest-footer__payment-card--iyzico     { background: #1ec773; color: #fff; }
.biitest-footer__payment-card--paytr      { background: #ff7700; color: #fff; }
.biitest-footer__payment-card--apple_pay  { background: #000; color: #fff; }
.biitest-footer__payment-card--google_pay { background: #4285f4; color: #fff; }

/* ---------- Disclaimer ---------- */
.biitest-footer__disclaimer {
	margin-top: clamp(28px, 4vh, 40px);
	padding: clamp(20px, 3vh, 28px);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
}
.biitest-footer__disclaimer-title {
	font-size: 0.84rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 10px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.biitest-footer__disclaimer-body {
	font-size: 0.78rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.5);
}
.biitest-footer__disclaimer-body p { margin: 0 0 10px; }
.biitest-footer__disclaimer-body p:last-child { margin: 0; }

/* ---------- Bottom bar ---------- */
.biitest-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: clamp(28px, 4vh, 40px);
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.biitest-footer__copyright {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.45);
}
.biitest-footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
.biitest-footer__bottom-links a {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: 0.78rem !important;
	text-decoration: none !important;
	transition: color 0.15s ease !important;
}
.biitest-footer__bottom-links a:hover { color: #fff !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.biitest-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
	.biitest-footer__brand { grid-column: 1 / -1; }
	.biitest-footer__col--contact { grid-column: 1 / -1; }
	.biitest-footer__meta { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.biitest-footer__top { grid-template-columns: 1fr; gap: 28px; }
	.biitest-footer__newsletter { flex-direction: column; align-items: stretch; }
	.biitest-footer__newsletter-form { flex-direction: column; }
	.biitest-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
 *  CONTACT-INFO BLOCK — premium İletişim sayfası
 * ========================================================= */

.biitest-contact { background: #fff; }

.biitest-contact__hero {
	background: linear-gradient(135deg, #261246 0%, #1a0b30 100%);
	color: #fff;
	padding: clamp(80px, 14vh, 140px) 0 clamp(50px, 8vh, 90px);
	padding-top: calc(var(--header-h, 109px) + clamp(40px, 6vh, 80px));
	text-align: center;
	position: relative;
	overflow: hidden;
}
.biitest-contact__hero::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(circle at 70% 30%, rgba(212, 0, 108, 0.18), transparent 50%),
	            radial-gradient(circle at 20% 80%, rgba(47, 163, 242, 0.15), transparent 50%);
}
.biitest-contact__hero .container { position: relative; z-index: 1; width: min(720px, calc(100% - 32px)); margin: 0 auto; }
.biitest-contact__title {
	font-size: clamp(2rem, 5vw, 3.4rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	margin: 0 0 16px !important;
	color: #fff !important;
	line-height: 1.1 !important;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.biitest-contact__sub {
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.5;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.biitest-contact__body {
	padding: clamp(60px, 10vh, 100px) 0;
	background: #fff;
}
.biitest-contact__body .container {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.biitest-contact__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.biitest-contact__form-wrap { grid-column: 1; grid-row: 1 / span 2; }
.biitest-contact__offices-wrap { grid-column: 2; grid-row: 1; }
.biitest-contact__hours-wrap { grid-column: 2; grid-row: 2; }

.biitest-contact__section-title {
	font-size: clamp(1.2rem, 1.8vw, 1.5rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em !important;
	color: #261246 !important;
	margin: 0 0 22px !important;
	padding: 0 0 14px !important;
	border-bottom: 2px solid rgba(212, 0, 108, 0.2) !important;
	display: inline-block !important;
}

/* ---------- Form ---------- */
.biitest-contact__form {
	background: linear-gradient(135deg, #faf8fd 0%, #fff 100%);
	border: 1px solid rgba(38, 18, 70, 0.08);
	border-radius: 18px;
	padding: clamp(24px, 3vw, 36px);
	box-shadow: 0 12px 40px -16px rgba(38, 18, 70, 0.15);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.biitest-contact__field { display: flex; flex-direction: column; gap: 6px; }
.biitest-contact__field label {
	font-size: 0.85rem;
	font-weight: 700;
	color: #4a3a78;
	letter-spacing: 0.01em;
}
.biitest-contact__field .req { color: #d4006c; }
.biitest-contact__field input,
.biitest-contact__field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 16px;
	background: #fff;
	border: 1.5px solid rgba(38, 18, 70, 0.14);
	border-radius: 10px;
	font-size: 0.95rem;
	font-family: inherit;
	color: #261246;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
}
.biitest-contact__field textarea { min-height: 100px; resize: vertical; }
.biitest-contact__field input:focus,
.biitest-contact__field textarea:focus {
	outline: none;
	border-color: #d4006c;
	box-shadow: 0 0 0 4px rgba(212, 0, 108, 0.12);
}
.biitest-contact__kvkk {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.86rem;
	color: rgba(38, 18, 70, 0.75);
	line-height: 1.4;
	cursor: pointer;
}
.biitest-contact__kvkk input[type="checkbox"] {
	width: 18px; height: 18px;
	accent-color: #d4006c;
	margin-top: 2px;
	flex: 0 0 18px;
}
.biitest-contact__kvkk a { color: #d4006c; font-weight: 700; text-decoration: none; border-bottom: 1px dashed #d4006c; }
.biitest-contact__submit {
	margin-top: 8px;
	min-height: 54px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #d4006c 0%, #ff3399 100%);
	color: #fff;
	border: 0;
	border-radius: 12px;
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 20px -6px rgba(212, 0, 108, 0.5);
}
.biitest-contact__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -8px rgba(212, 0, 108, 0.6);
}

/* ---------- Offices ---------- */
.biitest-contact__offices-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.biitest-contact__office {
	padding: 18px 20px;
	background: #fff;
	border: 1px solid rgba(38, 18, 70, 0.08);
	border-radius: 14px;
	box-shadow: 0 4px 14px -6px rgba(38, 18, 70, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.biitest-contact__office:hover {
	transform: translateY(-3px);
	border-color: rgba(212, 0, 108, 0.18);
	box-shadow: 0 14px 32px -10px rgba(38, 18, 70, 0.18);
}
.biitest-contact__office-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
}
.biitest-contact__office-flag {
	font-size: 1.5rem;
	line-height: 1;
}
.biitest-contact__office-country {
	font-size: 1rem !important;
	font-weight: 800 !important;
	color: #261246 !important;
	margin: 0 !important;
	letter-spacing: -0.01em !important;
}
.biitest-contact__office-addr,
.biitest-contact__office-line {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #4a3a78;
	margin: 0 0 6px;
}
.biitest-contact__office-addr:last-child,
.biitest-contact__office-line:last-child { margin-bottom: 0; }
.biitest-contact__office-addr svg,
.biitest-contact__office-line svg {
	color: #d4006c;
	flex: 0 0 14px;
	margin-top: 4px;
}
.biitest-contact__office a {
	color: #261246;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.15s ease;
}
.biitest-contact__office a:hover { color: #d4006c; }

/* ---------- Hours ---------- */
.biitest-contact__hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	background: #fff;
	border: 1px solid rgba(38, 18, 70, 0.08);
	border-radius: 14px;
	overflow: hidden;
}
.biitest-contact__hours-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	border-bottom: 1px solid rgba(38, 18, 70, 0.06);
	font-size: 0.92rem;
}
.biitest-contact__hours-list li:last-child { border-bottom: 0; }
.biitest-contact__day {
	font-weight: 700;
	color: #261246;
}
.biitest-contact__when {
	color: #4a3a78;
	font-variant-numeric: tabular-nums;
}

/* ---------- Map ---------- */
.biitest-contact__map {
	margin-top: clamp(40px, 6vh, 64px);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 40px -16px rgba(38, 18, 70, 0.15);
	border: 1px solid rgba(38, 18, 70, 0.08);
}
.biitest-contact__map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.biitest-contact__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.biitest-contact__form-wrap,
	.biitest-contact__offices-wrap,
	.biitest-contact__hours-wrap {
		grid-column: 1;
		grid-row: auto;
	}
	.biitest-contact__map iframe { height: 320px; }
}
@media (max-width: 600px) {
	.biitest-contact__hero {
		padding-top: calc(var(--header-h, 64px) + 32px);
		padding-bottom: 40px;
	}
	.biitest-contact__form {
		padding: 20px 16px;
	}
	.biitest-contact__office {
		padding: 16px;
	}
}

/* =========================================================
 * LEGAL PAGE (KVKK / Çerez / İade / Mesafeli / Gizlilik)
 * Hero, story-page ile birebir aynı görsel dilde.
 * Body, daha geniş ve okunabilir kolon (TOC üstte card).
 * ========================================================= */

.legal-page { background: #fff; }

/* ---------- Hero — ultra kompakt, %100 responsive ---------- */
.legal-page-hero,
html body .legal-page-hero {
	position: relative !important;
	min-height: 0 !important;
	max-height: none !important;
	height: auto !important;
	display: block !important;
	padding-top: calc(var(--header-h, 109px) + 12px) !important;
	padding-bottom: 16px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	background: linear-gradient(135deg, #1a0b30 0%, #261246 35%, #3d1d6e 70%, #1a0b30 100%) !important;
	background-size: 200% 200% !important;
	background-position: 0% 50% !important;
	background-repeat: no-repeat !important;
	color: #fff !important;
	overflow: hidden !important;
	isolation: isolate !important;
	text-align: center;
}
.legal-page-hero.has-image {
	background-image:
		linear-gradient(135deg, rgba(26, 11, 48, 0.94), rgba(58, 26, 94, 0.88)),
		var(--legal-bg, none) !important;
	background-size: cover, cover !important;
	background-position: center, center !important;
}
.legal-page-hero::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	background:
		radial-gradient(circle at 15% 25%, rgba(212, 0, 108, 0.35), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(47, 163, 242, 0.30), transparent 45%),
		radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.15), transparent 60%) !important;
	z-index: 0 !important;
	pointer-events: none !important;
	animation: bii-hero-glow 12s ease-in-out infinite alternate;
}
.legal-page-hero::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) !important;
	background-size: 60px 60px !important;
	background-position: center !important;
	mask-image: radial-gradient(ellipse 80% 60% at center, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at center, #000, transparent 75%);
	z-index: 1 !important;
	pointer-events: none !important;
	opacity: 0.6;
}

/* Floating decorative orbs */
.legal-page-hero-shapes {
	position: absolute !important;
	inset: 0 !important;
	pointer-events: none !important;
	z-index: 0 !important;
}
.legal-page-hero-shapes .legal-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
	pointer-events: none;
}
.legal-shape-1 {
	top: 10%; left: -60px;
	width: 160px; height: 160px;
	background: radial-gradient(circle, rgba(212, 0, 108, 0.50), rgba(212, 0, 108, 0) 65%);
	animation: bii-hero-float 14s ease-in-out infinite;
}
.legal-shape-2 {
	bottom: -30px; right: -50px;
	width: 200px; height: 200px;
	background: radial-gradient(circle, rgba(47, 163, 242, 0.40), rgba(47, 163, 242, 0) 65%);
	animation: bii-hero-float 18s ease-in-out infinite reverse;
}
.legal-shape-3 {
	top: 30%; left: 60%;
	width: 120px; height: 120px;
	background: radial-gradient(circle, rgba(255, 184, 0, 0.30), rgba(255, 184, 0, 0) 65%);
	animation: bii-hero-float 22s ease-in-out infinite;
}

.legal-page-hero .container {
	position: relative !important;
	z-index: 2 !important;
	width: min(820px, calc(100% - 28px)) !important;
	margin: 0 auto !important;
}
.legal-page-hero-copy { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.legal-page-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.10);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
}
.legal-page-badge svg { stroke: #ffb800; }
.legal-page-hero-copy h1,
.legal-page-hero-copy h2 {
	font-size: clamp(1.3rem, 2.6vw, 1.8rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #fff !important;
	line-height: 1.1 !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.legal-page-subline {
	font-size: clamp(0.85rem, 1.1vw, 0.98rem);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.45;
	max-width: 560px;
}
.legal-page-updated {
	margin: 4px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.01em;
}
.legal-page-updated svg { stroke: rgba(255, 255, 255, 0.7); }
.legal-page-hero-curve {
	display: none; /* story-page hero ile aynı görsel dilde, curve yok */
}

/* ---------- Body — geniş, okunabilir, single-column ---------- */
.legal-page-body {
	padding: clamp(50px, 8vh, 90px) 0 clamp(70px, 11vh, 120px);
	background: #fff;
}
.legal-page-body .container {
	width: min(1080px, calc(100% - 32px));
	margin: 0 auto;
}
/* Tek kolon yaklaşım — TOC artık içeriğin üstünde bir kart olarak */
.legal-page-layout {
	display: block;
	max-width: 980px;
	margin: 0 auto;
}

/* ---------- Table of contents (top card, NOT sidebar) ---------- */
.legal-page-toc {
	margin: 0 0 36px;
	background: linear-gradient(135deg, #faf8fd 0%, #fff 100%);
	border: 1px solid rgba(38, 18, 70, 0.08);
	border-radius: 16px;
	padding: 22px 26px;
	box-shadow: 0 8px 28px -18px rgba(38, 18, 70, 0.18);
}
.legal-page-toc-inner { background: none; border: 0; padding: 0; box-shadow: none; }
.legal-page-toc-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px !important;
	padding: 0 0 12px !important;
	font-size: 0.9rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase;
	color: #261246 !important;
	border-bottom: 1px solid rgba(38, 18, 70, 0.10) !important;
}
.legal-page-toc-title svg { stroke: #d4006c; }
.legal-page-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: tocitem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 2px 10px;
}
.legal-page-toc-list li {
	counter-increment: tocitem;
	margin: 0;
	padding: 0;
}
.legal-page-toc-list li.is-h3 { padding-left: 14px; }
.legal-page-toc-list li a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	color: #4a3a78;
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.18s ease, color 0.18s ease;
	border-left: 2px solid transparent;
}
.legal-page-toc-list li.is-h2 > a::before {
	content: counter(tocitem) ". ";
	color: #d4006c;
	font-weight: 800;
	margin-right: 2px;
}
.legal-page-toc-list li a:hover,
.legal-page-toc-list li a:focus-visible {
	background: rgba(212, 0, 108, 0.07);
	color: #261246;
	border-left-color: #d4006c;
}

/* ---------- Content — geniş, okunabilir ---------- */
.legal-page-content {
	max-width: 100%;
	font-size: clamp(1rem, 1.05vw, 1.08rem);
	line-height: 1.78;
	color: #2d2244;
	letter-spacing: 0.005em;
}
.legal-page-layout:not(.has-toc) .legal-page-content {
	margin: 0 auto;
}
.legal-page-content > * + * { margin-top: 1em; }

.legal-page-content h1,
.legal-page-content h2,
.legal-page-content h3,
.legal-page-content h4,
.legal-page-content h5,
.legal-page-content h6 {
	color: #261246;
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.25;
	scroll-margin-top: calc(var(--header-h, 109px) + 20px);
}
.legal-page-content h1 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 1.6em; }
.legal-page-content h2 {
	font-size: clamp(1.35rem, 2.1vw, 1.7rem);
	margin-top: 1.8em;
	padding-top: 0.8em;
	border-top: 1px solid rgba(38, 18, 70, 0.08);
	position: relative;
	padding-left: 18px;
}
.legal-page-content h2::before {
	content: "";
	position: absolute;
	left: 0; top: 1.05em;
	width: 4px;
	height: 1.1em;
	background: linear-gradient(180deg, #d4006c, #2fa3f2);
	border-radius: 3px;
}
.legal-page-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-page-content h2:first-child::before { top: 0.15em; }
.legal-page-content h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); margin-top: 1.5em; color: #3a1a5e; }
.legal-page-content h4 { font-size: 1.05rem; margin-top: 1.3em; color: #4a3a78; }
.legal-page-content h5,
.legal-page-content h6 { font-size: 0.98rem; margin-top: 1.2em; color: #4a3a78; }

.legal-page-content p {
	margin: 0 0 1em;
}
.legal-page-content p:last-child { margin-bottom: 0; }
.legal-page-content strong,
.legal-page-content b { color: #1a0b30; font-weight: 700; }
.legal-page-content em,
.legal-page-content i { color: #3a1a5e; }

.legal-page-content a {
	color: #d4006c;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: color 0.15s ease;
}
.legal-page-content a:hover { color: #261246; }

.legal-page-content ul,
.legal-page-content ol {
	padding-left: 1.6em;
	margin: 0 0 1em;
}
.legal-page-content ul li,
.legal-page-content ol li {
	margin: 0.35em 0;
	padding-left: 4px;
}
.legal-page-content ul li::marker { color: #d4006c; }
.legal-page-content ol li::marker { color: #d4006c; font-weight: 700; }
.legal-page-content ul ul,
.legal-page-content ol ol,
.legal-page-content ul ol,
.legal-page-content ol ul { margin: 0.4em 0; }

.legal-page-content blockquote {
	margin: 1.4em 0;
	padding: 18px 22px;
	background: linear-gradient(135deg, #faf8fd 0%, #fff 100%);
	border-left: 4px solid #d4006c;
	border-radius: 0 12px 12px 0;
	color: #3a1a5e;
	font-style: italic;
}
.legal-page-content blockquote p:last-child { margin-bottom: 0; }

.legal-page-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
	font-size: 0.95em;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 18px -12px rgba(38, 18, 70, 0.2);
}
.legal-page-content thead {
	background: linear-gradient(135deg, #261246, #3a1a5e);
	color: #fff;
}
.legal-page-content th,
.legal-page-content td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(38, 18, 70, 0.08);
	vertical-align: top;
}
.legal-page-content th { font-weight: 700; letter-spacing: 0.01em; }
.legal-page-content tbody tr:nth-child(even) { background: rgba(250, 248, 253, 0.6); }
.legal-page-content tbody tr:last-child td { border-bottom: 0; }

.legal-page-content hr {
	margin: 2em 0;
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(38, 18, 70, 0.18), transparent);
}

.legal-page-content code,
.legal-page-content kbd {
	background: #faf8fd;
	border: 1px solid rgba(38, 18, 70, 0.10);
	border-radius: 4px;
	padding: 1px 6px;
	font-size: 0.92em;
	color: #d4006c;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.legal-page-content pre {
	background: #1a0b30;
	color: #faf8fd;
	border-radius: 10px;
	padding: 16px 18px;
	overflow-x: auto;
	font-size: 0.9em;
	line-height: 1.55;
}
.legal-page-content pre code {
	background: transparent;
	border: 0;
	padding: 0;
	color: inherit;
}

.legal-page-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 1.4em 0;
}

/* Empty state */
.legal-page-empty {
	max-width: 640px;
	margin: 0 auto;
	padding: 30px 28px;
	border: 1px dashed rgba(38, 18, 70, 0.2);
	border-radius: 14px;
	background: #faf8fd;
	text-align: center;
	color: #4a3a78;
}
.legal-page-empty strong {
	display: block;
	font-size: 1.05rem;
	color: #261246;
	margin-bottom: 6px;
}
.legal-page-empty p { margin: 0; font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.legal-page-body .container { width: min(960px, calc(100% - 32px)); }
	.legal-page-toc { padding: 20px 22px; }
	.legal-page-toc-list { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 768px) {
	html body .legal-page-hero {
		padding-top: calc(var(--header-h, 90px) + 8px) !important;
		padding-bottom: 12px !important;
	}
	.legal-page-hero-shapes .legal-shape { filter: blur(30px); opacity: 0.45; }
	.legal-shape-1 { width: 90px; height: 90px; left: -30px; top: 5%; }
	.legal-shape-2 { width: 110px; height: 110px; right: -30px; bottom: -15px; }
	.legal-shape-3 { display: none; }
	.legal-page-hero .container { width: calc(100% - 24px) !important; }
	.legal-page-hero-copy { gap: 4px; }
	.legal-page-hero-copy h1,
	.legal-page-hero-copy h2 { font-size: clamp(1.15rem, 4.5vw, 1.45rem) !important; }
	.legal-page-subline { font-size: 0.82rem; line-height: 1.35; }

	.legal-page-body { padding: clamp(36px, 6vh, 60px) 0 clamp(50px, 8vh, 80px); }
	.legal-page-body .container { width: calc(100% - 28px); }
	.legal-page-toc { margin-bottom: 28px; padding: 18px 18px; border-radius: 14px; }
	.legal-page-toc-list { grid-template-columns: 1fr; max-height: 240px; overflow-y: auto; padding-right: 4px; }
	.legal-page-toc-title { font-size: 0.8rem !important; }
}

@media (max-width: 600px) {
	html body .legal-page-hero {
		padding-top: calc(var(--header-h, 64px) + 6px) !important;
		padding-bottom: 10px !important;
	}
	.legal-page-hero .container { width: calc(100% - 20px) !important; }
	.legal-page-hero-copy { gap: 4px; }
	.legal-page-hero-copy h1,
	.legal-page-hero-copy h2 {
		font-size: clamp(1.1rem, 5vw, 1.35rem) !important;
		line-height: 1.15 !important;
	}
	.legal-page-subline { font-size: 0.82rem; padding: 0 4px; line-height: 1.4; }
	.legal-page-updated { font-size: 0.75rem; }
	.legal-page-badge { font-size: 0.68rem; padding: 5px 11px; letter-spacing: 0.06em; }
	/* Grid pattern + secondary orb gizle (mobil performans + sıkışıklık) */
	.legal-page-hero::after { display: none; }

	.legal-page-body { padding: 30px 0 56px; }
	.legal-page-toc { padding: 16px 14px; }
	.legal-page-toc-list li a { font-size: 0.86rem; padding: 7px 8px; }
	.legal-page-content { font-size: 0.96rem; line-height: 1.72; letter-spacing: 0; }
	.legal-page-content h1 { font-size: 1.4rem; }
	.legal-page-content h2 { font-size: 1.2rem; padding-left: 12px; padding-top: 0.7em; margin-top: 1.5em; }
	.legal-page-content h2::before { width: 3px; }
	.legal-page-content h3 { font-size: 1.05rem; }
	.legal-page-content ul,
	.legal-page-content ol { padding-left: 1.3em; }
	.legal-page-content blockquote { padding: 14px 16px; margin: 1.2em 0; }
	/* Long-table escape hatch — yatay scroll */
	.legal-page-content table { display: block; width: 100%; overflow-x: auto; font-size: 0.82em; -webkit-overflow-scrolling: touch; }
	.legal-page-content th,
	.legal-page-content td { padding: 8px 10px; min-width: 110px; white-space: normal; }
}

@media (max-width: 380px) {
	.legal-page-hero-copy h1,
	.legal-page-hero-copy h2 { font-size: 1.4rem !important; }
	.legal-page-content { font-size: 0.92rem; }
	.legal-page-content h2 { font-size: 1.1rem; }
	.legal-page-toc-title { font-size: 0.75rem !important; }
}


/* ============================================================
 * Discount pricing block v3 — single-row baseline layout
 * ============================================================
 *
 * Goal: use the full width, no dead space, no nested rows.
 *
 *   ┌─────────────────────────────────────────────────────────┐
 *   │ ₺4990  ₺5990  %17 İNDİRİM   ✓ ₺1.000 Tasarruf           │
 *   │ ↑hero  ↑old   ↑pill         ↑green pill                 │
 *   └─────────────────────────────────────────────────────────┘
 *
 * All four children are DIRECT flex items, baseline-aligned, gap-controlled.
 * On narrow viewports the row wraps cleanly (savings drops below); on wider
 * cards everything sits on one line. Nothing is positioned absolutely or
 * pushed with margin-auto — alignment is purely a function of flex gap.
 *
 * Strikethrough on the old price uses dark-grey digits + bright-red line
 * with text-decoration-skip-ink:auto so the line clears digit curves and
 * never blocks the numbers. This is the Trendyol/Hepsiburada/Amazon TR
 * "previous price" pattern, the most-tested signal for Turkish shoppers.
 * ============================================================ */

.tier-price-wrap.has-discount {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: baseline !important;
	justify-content: flex-start !important;
	gap: 6px 14px !important;
	margin: 10px 0 14px !important;
	padding: 12px 14px !important;
	background: linear-gradient(135deg, rgba(212, 0, 108, 0.05) 0%, rgba(38, 18, 70, 0.03) 100%);
	border: 1px solid rgba(212, 0, 108, 0.14);
	border-radius: 12px;
	text-align: left !important;
	width: 100%;
	box-sizing: border-box;
}

/* Hero price — left anchor of the row */
.tier-price-wrap.has-discount .tier-price-current {
	display: inline-block;
	font-size: clamp(1.7rem, 4.2vw, 2.1rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.025em;
	background: linear-gradient(135deg, #261246 0%, #d4006c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: #261246;
	-webkit-text-fill-color: transparent;
	font-variant-numeric: tabular-nums;
	align-self: baseline;
}

/* Old price — bigger BLACK digits with a DIAGONAL red strike.
 *
 * A horizontal CSS `line-through` sits exactly across the middle of
 * curved digits (5, 9, 8, 0) and merges with their inner strokes, so
 * "5990" reads more like "S99O". A diagonal strike crosses the digits at
 * an angle — it never overlaps a horizontal stroke for more than one
 * pixel-row, so every digit stays readable while the slash still says
 * "this price was replaced".
 *
 * Implementation: we drop the built-in text-decoration and paint our own
 * line with a rotated ::after pseudo-element. transform-origin: center
 * keeps the slash centered on the price even if it wraps. */
.tier-price-wrap.has-discount .tier-price-was {
	position: relative;
	display: inline-block;
	font-size: 1.35rem;                          /* bigger — old price reads as a real number */
	font-weight: 700;
	line-height: 1;
	color: #1f1f1f;
	text-decoration: none;                       /* we draw our own line */
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
	align-self: baseline;
	padding: 0 2px;                              /* breathing room for the slash */
	opacity: 0.9;
}
.tier-price-wrap.has-discount .tier-price-was::after {
	content: '';
	position: absolute;
	left: -2px;
	right: -2px;
	top: 50%;
	height: 2px;
	/* Semi-transparent red — the digits below the slash stay visible while
	 * the line still reads as a clear "this price was replaced" mark. */
	background: rgba(239, 68, 68, 0.6);
	border-radius: 2px;
	transform: translateY(-50%) rotate(-12deg);
	transform-origin: center;
	pointer-events: none;
}

/* Discount % pill */
.tier-price-wrap.has-discount .tier-discount-badge {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	padding: 4px 10px;
	background: linear-gradient(135deg, #d4006c 0%, #ff2b8a 100%);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 3px 8px -3px rgba(212, 0, 108, 0.55);
	line-height: 1;
	flex-shrink: 0;
	align-self: baseline;
}
.tier-price-wrap.has-discount .tier-discount-badge__pct {
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
}
.tier-price-wrap.has-discount .tier-discount-badge__label {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
}

/* Savings — green pill, ends the row */
.tier-price-wrap.has-discount .tier-savings {
	display: inline-flex !important;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 6px;
	background: rgba(16, 185, 129, 0.1);
	color: #0a8456;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.1;
	white-space: nowrap;
	align-self: baseline;
}
.tier-price-wrap.has-discount .tier-savings strong {
	font-weight: 800;
	color: #06754b;
}
.tier-price-wrap.has-discount .tier-savings__icon {
	color: #10b981;
	flex-shrink: 0;
}

/* Defend against parent rules that try to center or right-align everything
 * inside the tier panel — wins on specificity over the generic .tier-price
 * legacy declarations from earlier in this stylesheet. */
body:not(.single-product) .tier-panel .tier-price-wrap.has-discount,
body:not(.single-product) .tier-panel .tier-price-wrap.has-discount * {
	text-align: left !important;
}
body:not(.single-product) .tier-panel .tier-price-wrap.has-discount {
	justify-content: flex-start !important;
}

/* Some older renders (mobile-only CSS rules, cached templates) re-introduce
 * a stray .tier-price or .tier-compare-price node next to the new flat
 * .tier-price-wrap.has-discount — those legacy nodes render the price a
 * second time. Hide any of those legacy siblings that come AFTER our new
 * wrap. Scoped tightly so it can't catch a legitimate price elsewhere on
 * the page (single-product page is excluded). */
body:not(.single-product) .tier-panel .tier-price-wrap.has-discount ~ .tier-price,
body:not(.single-product) .tier-panel .tier-price-wrap.has-discount ~ .tier-compare-price,
body:not(.single-product) .tier-panel .tier-price-wrap.has-discount ~ .tier-price-wrap:not(.has-discount) {
	display: none !important;
}

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
	.tier-price-wrap.has-discount {
		padding: 10px 12px !important;
		gap: 6px 12px !important;
	}
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
	.tier-price-wrap.has-discount {
		padding: 10px 12px !important;
		gap: 6px 10px !important;
	}
	.tier-price-wrap.has-discount .tier-price-current {
		font-size: clamp(1.55rem, 7vw, 1.9rem);
	}
	.tier-price-wrap.has-discount .tier-price-was {
		font-size: 1.2rem;
	}
	.tier-price-wrap.has-discount .tier-price-was::after {
		height: 1.8px;
	}
	.tier-price-wrap.has-discount .tier-discount-badge {
		padding: 3px 8px;
	}
	.tier-price-wrap.has-discount .tier-discount-badge__pct {
		font-size: 0.82rem;
	}
	.tier-price-wrap.has-discount .tier-discount-badge__label {
		font-size: 0.55rem;
	}
	.tier-price-wrap.has-discount .tier-savings {
		font-size: 0.74rem;
		padding: 3px 8px;
	}
}

/* ---------- Very narrow phones ---------- */
@media (max-width: 380px) {
	.tier-price-wrap.has-discount {
		gap: 5px 8px !important;
	}
	.tier-price-wrap.has-discount .tier-savings {
		font-size: 0.7rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tier-price-wrap.has-discount .tier-discount-badge {
		box-shadow: 0 0 0 1px rgba(212, 0, 108, 0.4);
	}
}

/* ============================================================
 * Hero — match the reference biitest-wp theme exactly
 * ============================================================
 *
 * Reference site: https://birtasarim.net/biitest/ (theme: biitest-wp, 1.0.0)
 *
 * The reference hero uses the dist bundle's native scroll-pinning pattern:
 *   .hero-pin { height: 190vh }            ← container twice the viewport
 *   .hero { position: sticky; top: 0; height: 100vh; }
 *   .hero-overlay { ... opacity tweened by main.js }
 *
 * Combined with the Lenis defaults restored in 1.9.21
 *   ({ duration: 1.6, wheelMultiplier: .85, lerp: .08 })
 * the result is the same gentle parallax-pinned hero that the user wants.
 *
 * Earlier overrides from 1.9.6 / 1.9.10 / 1.9.17 are removed: collapsing
 * the pin and zeroing the overlay produced a "jumpy" feel because the hero
 * left the viewport instantly. Restoring the reference behaviour fixes that. */

/* Hero height reverted to its native dist-bundle value (100vh).
 * Lenis smooth-scroll is now active again, so the "next section peek"
 * trick from v1.9.17 is no longer needed — Lenis's lerp gives the user a
 * gentle deceleration that already reads as smooth, not jump-cut. */

/* ============================================================
 * Single product — per-bundle "Hemen Satın Al" button
 * ============================================================
 *
 * Visual: a small primary-coloured button anchored to the right of the bundle
 * card on desktop, full-width on mobile so the touch target stays comfortable.
 * The form has zero margins so it can sit flush with the price row.
 */
/* Article layout (since v1.9.28). The form is a DIRECT child of the
 * <article>, so we lay every card out as a 2-row CSS grid on BOTH desktop
 * and mobile:
 *
 *   ┌──────────────────────────────────────────┐
 *   │ [thumb] │ title + badge + prices         │  ← row 1 (auto height)
 *   │         │                                │
 *   ├─────────┴────────────────────────────────┤
 *   │ [────── full-width "Hemen Satın Al" ──┐] │  ← row 2 (spans both cols)
 *   └──────────────────────────────────────────┘
 *
 * This replaces the desktop flex-row layout (which left the form squashed
 * to a tiny slot at the right of the image+body row). */
.whoop-product-bundle-offer {
	display: grid !important;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 16px;
	row-gap: 12px;
	align-items: start;
}
.whoop-product-bundle-offer > .whoop-product-bundle-offer__visual {
	grid-row: 1;
	grid-column: 1;
}
.whoop-product-bundle-offer > .whoop-product-bundle-offer__body {
	grid-row: 1;
	grid-column: 2;
	min-width: 0;
}
.whoop-product-bundle-offer__buy {
	grid-row: 2;
	grid-column: 1 / -1;
	margin: 0;
	display: flex;
	width: 100%;
}
.whoop-product-bundle-offer__buy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	background: linear-gradient(135deg, #d4006c 0%, #ff2b8a 100%);
	color: #fff;
	border: 0;
	cursor: pointer;
	box-shadow: 0 4px 12px -4px rgba(212, 0, 108, 0.55);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whoop-product-bundle-offer__buy-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px -6px rgba(212, 0, 108, 0.7);
}
.whoop-product-bundle-offer__buy-btn:active {
	transform: translateY(0);
}
.whoop-product-bundle-offer__buy-btn .arrow {
	transition: transform 0.18s ease;
}
.whoop-product-bundle-offer__buy-btn:hover .arrow {
	transform: translateX(3px);
}

@media (max-width: 600px) {
}

/* ============================================================
 * Single product — mobile bundle card layout fix
 * ============================================================
 *
 * On mobile the .whoop-product-bundle-offer card lays out as
 *   [ thumbnail ][ title + price (narrow body column) ]
 * The "Hemen Satın Al" form lived inside that narrow body column, so the
 * 100%-width button overflowed the card and the label got clipped
 * ("ET HEMEN SATIN A" instead of "2 ADET HEMEN SATIN AL").
 *
 * Restructure the card as a 2-row CSS grid:
 *   row 1 = [ thumbnail | body ]            (existing horizontal layout)
 *   row 2 = [ buy button spans both cols ]  (full-width, breathes)
 *
 * Pure CSS — no template change. Both the thumbnail click and the buy form
 * keep working; only the visual placement changes.
 */
/* Mobile — keep the same grid topology defined above; just tighten
 * spacing, typography and the buy button's letter-spacing. The grid
 * placement (visual=col1, body=col2, buy spans both) is inherited. */
@media (max-width: 600px) {
	.whoop-product-bundle-offer {
		column-gap: 12px !important;
		row-gap: 10px !important;
		padding: 12px;
	}
	.whoop-product-bundle-offer__buy-btn {
		font-size: 0.92rem;
		padding: 12px 14px;
		letter-spacing: 0.02em;
		white-space: nowrap;
	}
	.whoop-product-bundle-offer__title {
		font-size: 0.95rem !important;
		line-height: 1.25 !important;
	}
	.whoop-product-bundle-offer__price {
		font-size: 1rem !important;
	}
}

/* Very narrow phones (~360–380px) — shrink arrow + label */
@media (max-width: 380px) {
	.whoop-product-bundle-offer__buy-btn {
		font-size: 0.85rem;
		padding: 11px 12px;
	}
	.whoop-product-bundle-offer__buy-btn .arrow svg {
		width: 12px;
		height: 12px;
	}
}

/* ============================================================
 * Story-page intro eyebrow (between hero curve and first section)
 * ============================================================
 *
 * A small pill-shaped badge that sits in the breathing room between the
 * hero's bottom curve and the first body card. Used on /hakkimizda/ to
 * surface the "Uluslararası İSO Standartlarında Biitest" trust line.
 *
 * Optional — only renders when intro_eyebrow has a value.
 */
.story-page-intro,
.story-page-intro.reveal {
	/* Pull the pill up so it overlaps the hero curve area instead of leaving
	 * a wide empty band underneath the hero. -42px lifts the pill into the
	 * white space the curve already creates; the next section starts close
	 * behind, keeping the rhythm tight. */
	margin: -42px auto 0;
	padding: 0 16px;
	display: flex !important;
	justify-content: center;
	/* Defeat any leftover `.reveal { opacity: 0; transform: translateY(...) }`
	 * defaults from the dist bundle in case someone re-adds the class. */
	opacity: 1 !important;
	transform: none !important;
	/* The story-page-body section that follows uses `margin-top` negative on
	 * its first child to pull itself up under the hero curve — without an
	 * explicit z-index here that white card visually sits ON TOP of our pill
	 * and you only see its rounded border (the pill itself is hidden). */
	position: relative;
	z-index: 10;
}
.story-page-intro__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: #fff;
	border: 1px solid rgba(212, 0, 108, 0.18);
	border-radius: 999px;
	box-shadow: 0 8px 24px -10px rgba(38, 18, 70, 0.18);
	color: #261246;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	max-width: 100%;
	text-align: center;
}
.story-page-intro__icon {
	color: #d4006c;
	flex-shrink: 0;
}

/* Mobile */
@media (max-width: 600px) {
	.story-page-intro {
		/* Same lift as desktop — the mobile hero curve is similarly tall, so
		 * pulling the pill ~32px up closes the wide gap shown in the
		 * "üstte çok boşluk var" screenshot. */
		margin-top: -32px;
		padding: 0 12px;
	}
	.story-page-intro__pill {
		padding: 9px 16px;
		font-size: 0.85rem;
		gap: 8px;
	}
	.story-page-intro__icon {
		width: 16px;
		height: 16px;
	}
}

/* ============================================================
 * Tier card — embedded "single-product" style block
 * (used on /urunlerimiz/ inside .whoop/memberships)
 * ============================================================
 *
 * Each tier card now renders a mini purchase panel under the features:
 *   1. .tier-cta--buy            — primary "Sepete Ekle" (POST form)
 *   2. .tier-bundle-offers       — 2x / 4x bundle cards (POST forms)
 *   3. .tier-cta--secondary      — outline "Rapor Örneğini İncele" link
 *
 * Visuals mirror the single-product .whoop-product-bundle-offer cards so
 * the user gets the same affordances whether they buy from the catalog
 * or the product page.
 */
.tier-cta--buy {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 16px 0 14px;
}
.tier-cta-primary-btn { width: 100%; }

/* Quantity stepper — mirrors single-product .whoop-qty-step pattern */
.tier-qty {
	display: inline-flex;
	align-items: stretch;
	align-self: center;
	border: 1px solid rgba(38, 18, 70, 0.18);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 2px 6px -4px rgba(38, 18, 70, 0.18);
}
.tier-qty-step {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: #261246;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s ease;
	padding: 0;
}
.tier-qty-step:hover { background: rgba(38, 18, 70, 0.06); }
.tier-qty-step:active { background: rgba(38, 18, 70, 0.12); }
.tier-qty-input {
	width: 48px;
	height: 40px;
	border: 0;
	background: transparent;
	color: #261246;
	font-size: 0.95rem;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
	padding: 0;
}
.tier-qty-input::-webkit-outer-spin-button,
.tier-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.tier-qty-input:focus { outline: 2px solid rgba(38, 18, 70, 0.25); outline-offset: -2px; }

.tier-bundle-offers {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 14px 0;
}
.tier-bundle-offer {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 14px;
	row-gap: 10px;
	align-items: start;
	padding: 12px;
	border-radius: 14px;
	border: 1px solid rgba(38, 18, 70, 0.08);
	background: #fff;
	box-shadow: 0 6px 16px -10px rgba(38, 18, 70, 0.12);
}
.tier-bundle-offer__visual {
	grid-row: 1;
	grid-column: 1;
	position: relative;
	width: 76px;
	height: 76px;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #f4f2f9 0%, #ece6f5 100%);
	flex-shrink: 0;
}
.tier-bundle-offer__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tier-bundle-offer__quantity {
	position: absolute;
	top: 4px;
	left: 4px;
	background: rgba(38, 18, 70, 0.85);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 3px 6px;
	border-radius: 6px;
	letter-spacing: 0.04em;
}
.tier-bundle-offer__body {
	grid-row: 1;
	grid-column: 2;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.tier-bundle-offer__title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #261246;
	margin: 0;
	line-height: 1.25;
}
.tier-bundle-offer__badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 9px;
	background: linear-gradient(135deg, #d4006c 0%, #ff2b8a 100%);
	color: #fff;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	box-shadow: 0 2px 6px -2px rgba(212, 0, 108, 0.5);
}
.tier-bundle-offer__prices {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 2px;
}
.tier-bundle-offer__price {
	font-size: 1.1rem;
	font-weight: 800;
	color: #261246;
	font-variant-numeric: tabular-nums;
}
.tier-bundle-offer__price bdi { font-weight: inherit; }
.tier-bundle-offer__compare {
	font-size: 0.92rem;
	color: rgba(38, 18, 70, 0.5);
	text-decoration: line-through;
	font-variant-numeric: tabular-nums;
}
.tier-bundle-offer__compare bdi { font-weight: inherit; }
.tier-bundle-offer__buy {
	grid-row: 2;
	grid-column: 1 / -1;
	display: flex;
	width: 100%;
	margin: 0;
}
.tier-bundle-offer__buy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 10px 14px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #d4006c 0%, #ff2b8a 100%);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 4px 12px -4px rgba(212, 0, 108, 0.5);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tier-bundle-offer__buy-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 16px -6px rgba(212, 0, 108, 0.65);
}
.tier-bundle-offer__buy-btn .arrow { transition: transform 0.18s ease; }
.tier-bundle-offer__buy-btn:hover .arrow { transform: translateX(3px); }

.tier-cta--secondary { display: block; margin: 14px 0 0; }
.tier-cta--secondary .btn-outline { width: 100%; }

/* Mobile */
@media (max-width: 600px) {
	.tier-bundle-offer { padding: 10px; column-gap: 12px; }
	.tier-bundle-offer__visual { width: 64px; height: 64px; }
	.tier-bundle-offer__title { font-size: 0.9rem; }
	.tier-bundle-offer__price { font-size: 1rem; }
	.tier-bundle-offer__compare { font-size: 0.85rem; }
	.tier-bundle-offer__buy-btn { font-size: 0.82rem; padding: 10px 12px; }
}

/* ============================================================
 * How It Works — Video block (whoop/how-it-works-video)
 * ============================================================
 *
 * Lite-YouTube pattern: poster + branded play button on initial render,
 * iframe swapped in on click. Zero YouTube assets until the user opts in.
 *
 * Layout: centered column with brand-aligned typography stack above a
 * 16:9 responsive video frame. Frame has a soft brand-tinted overlay and
 * a large pill-shaped play button.
 */
.hiw-video {
	position: relative;
	padding: clamp(48px, 7vw, 96px) 20px;
	background:
		radial-gradient(circle at 20% 0%, rgba(120, 78, 215, 0.06), transparent 60%),
		radial-gradient(circle at 80% 100%, rgba(38, 18, 70, 0.05), transparent 55%),
		#fbfaff;
}
.hiw-video__inner {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(28px, 4vw, 48px);
}
.hiw-video__head {
	text-align: center;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.hiw-video__eyebrow {
	display: inline-block;
	align-self: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b3df0;
	background: rgba(107, 61, 240, 0.08);
	padding: 6px 14px;
	border-radius: 999px;
}
.hiw-video__heading {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	line-height: 1.15;
	color: #261246;
	letter-spacing: -0.01em;
}
.hiw-video__intro {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 600;
	color: #3a2a5a;
	line-height: 1.45;
}
.hiw-video__desc {
	margin: 0;
	font-size: 0.98rem;
	color: rgba(38, 18, 70, 0.74);
	line-height: 1.6;
}

/* Player frame — 16:9, click-to-play. */
.hiw-video__frame {
	position: relative;
	width: 100%;
	max-width: 920px;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	background: #1a0a30;
	cursor: pointer;
	box-shadow:
		0 30px 60px -30px rgba(38, 18, 70, 0.45),
		0 12px 30px -12px rgba(107, 61, 240, 0.25);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	outline: none;
}
.hiw-video__frame:hover,
.hiw-video__frame:focus-visible {
	transform: translateY(-3px);
	box-shadow:
		0 36px 70px -28px rgba(38, 18, 70, 0.5),
		0 16px 36px -12px rgba(107, 61, 240, 0.32);
}
.hiw-video__frame:focus-visible {
	outline: 3px solid rgba(107, 61, 240, 0.55);
	outline-offset: 4px;
}

.hiw-video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease, opacity 0.3s ease;
}
.hiw-video__frame:hover .hiw-video__poster {
	transform: scale(1.03);
}

.hiw-video__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(38, 18, 70, 0.35) 0%, rgba(107, 61, 240, 0.18) 50%, rgba(38, 18, 70, 0.45) 100%);
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.hiw-video__frame:hover .hiw-video__overlay { opacity: 0.7; }

.hiw-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: clamp(72px, 9vw, 96px);
	height: clamp(72px, 9vw, 96px);
	transform: translate(-50%, -50%);
	pointer-events: none;
	filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
	transition: transform 0.25s ease;
}
.hiw-video__play svg { width: 100%; height: 100%; display: block; }
.hiw-video__play svg circle {
	fill: #6b3df0;
	transition: fill 0.25s ease;
}
.hiw-video__frame:hover .hiw-video__play { transform: translate(-50%, -50%) scale(1.08); }
.hiw-video__frame:hover .hiw-video__play svg circle { fill: #7d52f5; }

.hiw-video__hint {
	position: absolute;
	left: 50%;
	bottom: clamp(16px, 3vw, 28px);
	transform: translateX(-50%);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 8px 16px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 999px;
	pointer-events: none;
}

/* Active state — iframe swapped in. */
.hiw-video__frame.is-playing {
	cursor: default;
}
.hiw-video__frame.is-playing .hiw-video__poster,
.hiw-video__frame.is-playing .hiw-video__overlay,
.hiw-video__frame.is-playing .hiw-video__play,
.hiw-video__frame.is-playing .hiw-video__hint {
	opacity: 0;
	pointer-events: none;
}
.hiw-video__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

@media (max-width: 600px) {
	.hiw-video { padding: 48px 16px; }
	.hiw-video__frame { border-radius: 14px; }
	.hiw-video__hint { font-size: 0.72rem; padding: 6px 12px; }
}

/* ============================================================
 * Ana bölüm başlıkları — desktop ortalama
 * ============================================================
 *
 * "İhtiyacınıza Uygun Paketi Seçin", "Toksik Veriye Dayalı …",
 * "Güvenli Ödeme ile Siparişini Ver" gibi section başlıkları
 * tarayıcıda varsayılan `text-align: start` ile sola yaslı geliyor
 * — masaüstünde dengesiz görünüyor. Bu kural bütün ana section
 * head'lerini ortalar; içerideki paragraflara da merkezli kompozisyon
 * için max-width verir.
 */
/* ============================================================
 * How It Works — Steps block (whoop/how-it-works-steps)
 * ============================================================
 *
 * 4-card grid placed directly under the HIW video. Each card has a
 * number badge, brand-tinted icon, highlight title, and short description.
 * Cards visually "ride" a connector line on desktop so they read as a
 * progressive flow rather than four disconnected boxes. On tablet/mobile
 * they collapse into a 2-up / 1-up stack.
 */
.hiw-steps {
	position: relative;
	padding: clamp(40px, 6vw, 88px) 20px clamp(48px, 8vw, 108px);
	background:
		linear-gradient(180deg, #fbfaff 0%, #f6f2ff 100%);
}
.hiw-steps__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(28px, 4vw, 48px);
}
.hiw-steps__head {
	text-align: center;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hiw-steps__eyebrow {
	display: inline-block;
	align-self: center;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #6b3df0;
	background: rgba(107, 61, 240, 0.1);
	padding: 6px 14px;
	border-radius: 999px;
}
.hiw-steps__heading {
	margin: 0;
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	font-weight: 800;
	line-height: 1.18;
	color: #261246;
	letter-spacing: -0.01em;
}
.hiw-steps__intro {
	margin: 0;
	font-size: clamp(0.96rem, 1.2vw, 1.05rem);
	color: rgba(38, 18, 70, 0.72);
	line-height: 1.6;
}

/* Grid — desktop 4 columns, then 2, then 1. */
.hiw-steps__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
	position: relative;
}

/* Connector line behind cards (desktop only). */
.hiw-steps__grid::before {
	content: "";
	position: absolute;
	top: 56px;
	left: 8%;
	right: 8%;
	height: 2px;
	background-image: linear-gradient(to right, rgba(107, 61, 240, 0.4) 50%, transparent 50%);
	background-size: 14px 2px;
	background-repeat: repeat-x;
	z-index: 0;
	pointer-events: none;
}

.hiw-step {
	position: relative;
	z-index: 1;
	background: #ffffff;
	border: 1px solid rgba(38, 18, 70, 0.06);
	border-radius: 20px;
	padding: 24px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow:
		0 14px 30px -20px rgba(38, 18, 70, 0.25),
		0 4px 10px -6px rgba(38, 18, 70, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hiw-step:hover {
	transform: translateY(-4px);
	box-shadow:
		0 22px 42px -22px rgba(38, 18, 70, 0.32),
		0 8px 16px -8px rgba(107, 61, 240, 0.18);
}

.hiw-step__visual {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.hiw-step__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #6b3df0;
	background: rgba(107, 61, 240, 0.1);
}
.hiw-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, #6b3df0 0%, #8a5cf5 100%);
	color: #ffffff;
	box-shadow:
		0 12px 24px -10px rgba(107, 61, 240, 0.55),
		inset 0 -2px 4px rgba(0, 0, 0, 0.12);
}
.hiw-step__icon svg { width: 28px; height: 28px; }

.hiw-step__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.hiw-step__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
	color: #261246;
	letter-spacing: -0.01em;
}
.hiw-step__desc {
	margin: 0;
	font-size: 0.92rem;
	color: rgba(38, 18, 70, 0.7);
	line-height: 1.55;
}

.hiw-steps__footnote {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	background: #ffffff;
	color: rgba(38, 18, 70, 0.78);
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 8px 20px -12px rgba(38, 18, 70, 0.2);
	border: 1px solid rgba(38, 18, 70, 0.06);
}
.hiw-steps__footnote-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.1);
	flex-shrink: 0;
}

@media (max-width: 980px) {
	.hiw-steps__grid { grid-template-columns: repeat(2, 1fr); }
	.hiw-steps__grid::before { display: none; }
}
@media (max-width: 560px) {
	.hiw-steps { padding: 40px 16px 56px; }
	.hiw-steps__grid { grid-template-columns: 1fr; gap: 14px; }
	.hiw-step { padding: 20px 18px; }
	.hiw-steps__footnote { font-size: 0.82rem; padding: 10px 14px; }
}

.tiers-head,
.technology-list .technology-list-head {
	text-align: center !important;
}
/* Technology-list-head normally has max-width:860px which leaves a large
 * empty space on the right when text-align:center is applied. Stretch it
 * to the container so the centered text actually appears centered. */
.technology-list .technology-list-head {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.tiers-head h2,
.tiers-head h1,
.tiers-head p,
.technology-list .technology-list-head h2,
.technology-list .technology-list-head h1,
.technology-list .technology-list-head p {
	text-align: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.tiers-head p,
.technology-list .technology-list-head p {
	max-width: 760px !important;
}
.tiers-head h2,
.technology-list .technology-list-head h2 {
	max-width: 880px !important;
}
