.site-header {
	--header-height: 76px;
	position: sticky;
	top: var(--da-header-offset);
	z-index: var(--z-header);
	isolation: isolate;
	background: var(--color-header-background, #FFFFFF);
	background-color: #FFFFFF;
	background-clip: padding-box;
	border-bottom: 1px solid #E4EDF5;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .03);
	transition: box-shadow .35s ease, background-color .35s ease, border-color .35s ease;
}

/* Cover overscroll / bounce above the sticky chrome so white page bg never peeks. */
.site-header::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 100vmax;
	background: #FFFFFF;
	pointer-events: none;
	z-index: 0;
}

@media (min-width: 1200px) {
	.site-header {
		--header-height: 96px;
	}

	.site-header.is-scrolled {
		--header-height: 86px;
	}
}

/* Top contact bar — birebir Hakkımızda CTA arka planı */
.site-topbar {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	overflow: hidden;
	max-height: 40px;
	margin: 0;
	padding: 0;
	background: var(--da-surface-gradient);
	background-color: var(--da-surface-gradient-end);
	border-bottom: 1px solid var(--da-surface-gradient-border);
	transition: max-height .3s ease;
}

/* Hide the top bar once the user scrolls; show again at the very top. */
.site-header.is-scrolled .site-topbar {
	max-height: 0;
}

.site-header.is-scrolled .site-topbar::after {
	opacity: 0;
}

.site-topbar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 8%, var(--da-surface-gradient-border) 50%, transparent 92%);
	pointer-events: none;
}

.site-topbar__inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: .5rem 2rem;
	height: 40px;
	min-height: 40px;
	padding-block: 0;
	/* Same centered container as .site-header__inner / logo */
	margin-block: 0;
	margin-inline: auto;
	white-space: nowrap;
}

.site-topbar__item {
	display: inline-flex;
	align-items: center;
	align-self: stretch;
	gap: .5rem;
	height: 40px;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #ffffff;
	font-size: .82rem;
	letter-spacing: .01em;
	text-decoration: none;
	transition: color .2s ease;
}

.site-topbar__phones {
	display: inline-flex;
	align-items: center;
	align-self: stretch;
	gap: .45rem;
	height: 40px;
	min-width: 0;
	color: #ffffff;
}

.site-topbar__phones .site-topbar__icon {
	flex: 0 0 14px;
}

.site-topbar__item--phone {
	gap: 0;
}

.site-topbar__phone-sep {
	display: inline-block;
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.72);
	font-size: .82rem;
	line-height: 1;
	user-select: none;
}

.site-topbar__item:hover,
.site-topbar__item:focus-visible {
	color: #B8C9DC;
	text-decoration: none;
}

.site-topbar__item span {
	display: block;
	line-height: 1;
}

.site-topbar__icon {
	display: block;
	width: 14px;
	height: 14px;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	flex: 0 0 14px;
	align-self: center;
}

@media (max-width: 600px) {
	.site-topbar {
		overflow-x: clip;
	}

	.site-topbar__inner {
		justify-content: center;
		flex-wrap: wrap;
		white-space: normal;
		height: auto;
		min-height: 40px;
		padding-block: 0.4rem;
		gap: 0.35rem 1.25rem;
		text-align: center;
	}

	.site-topbar__item {
		font-size: .76rem;
		justify-content: center;
		height: auto;
		min-height: 0;
	}

	.site-topbar__phones {
		flex-wrap: wrap;
		justify-content: center;
		height: auto;
		row-gap: 0.2rem;
	}
}

.site-header.is-scrolled {
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.site-header--no-shadow,
.site-header--no-shadow.is-scrolled {
	box-shadow: none;
}

.site-header--no-border {
	border-bottom-color: var(--color-header-background);
}

/* Keep solid fill; soft line separates header from content. */
.site-header--transparent {
	background: var(--color-header-background, #FFFFFF);
	border-bottom-color: #E4EDF5;
}

.site-header--transparent.is-scrolled {
	background: var(--color-header-background, #FFFFFF);
	border-bottom-color: #E4EDF5;
}

.site-header:not(.site-header--sticky) {
	position: relative;
}

/* Mobile: hamburger | logo | icons — no overlap, vertically centered */
.site-header__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas: "toggle brand actions";
	align-items: center;
	column-gap: .5rem;
	height: var(--header-height);
	min-height: var(--header-height);
	transition: height .35s ease, min-height .35s ease;
}

.site-header__brand {
	grid-area: brand;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: stretch;
	align-self: center;
	min-width: 0;
	max-width: 100%;
	overflow: visible;
}

.site-header__toggle {
	grid-area: toggle;
	justify-self: start;
	align-self: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 1px solid #D4DCE4;
	background: #FFFFFF;
	border-radius: 12px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	cursor: pointer;
	color: #1B4F7A;
	transition: color .30s ease, border-color .30s ease, background-color .30s ease, transform .30s ease;
}

.site-nav {
	display: none;
	grid-area: nav;
}

.site-header__actions {
	display: flex;
	grid-area: actions;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	align-self: center;
	gap: .35rem;
	flex: 0 0 auto;
	height: 40px;
}

.site-header__actions .site-header__search-toggle,
.site-header__actions .site-header__cart,
.site-header__actions .site-header__account {
	width: 40px;
	height: 40px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	color: var(--color-graphite);
	text-decoration: none;
	line-height: 0;
}

/* Uploaded brand mark — width-led, keep aspect ratio (height:auto) */
.site-logo__image {
	display: block;
	width: clamp(200px, 42vw, 260px);
	height: auto;
	max-width: 100%;
	max-height: calc(var(--header-height) - 12px);
	object-fit: contain;
	object-position: center center;
	transition: width .35s ease, max-height .35s ease;
}

@media (min-width: 768px) and (max-width: 1199px) {
	.site-header__toggle,
	.site-header__actions .site-header__search-toggle,
	.site-header__actions .site-header__cart,
	.site-header__actions .site-header__account {
		width: 44px;
		height: 44px;
	}

	.site-header__actions {
		gap: .5rem;
		height: 44px;
	}

	.site-logo__image {
		width: clamp(220px, 28vw, 280px);
		max-height: calc(var(--header-height) - 12px);
	}
}

.site-logo__lockup {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .12em;
	max-width: 100%;
	line-height: 1;
	color: var(--color-graphite);
	text-decoration: none;
}

.site-logo__name {
	font-family: var(--font-heading, 'Poppins', sans-serif);
	font-size: clamp(.95rem, 2.6vw + .55rem, 1.35rem);
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.05;
	color: inherit;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.site-logo__tagline {
	font-family: var(--font-heading, 'Poppins', sans-serif);
	font-size: clamp(.4rem, 1.1vw + .28rem, .52rem);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.1;
	color: inherit;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* Desktop: logo | nav | icons — hamburger below 1200px to avoid crowding */
@media (min-width: 1200px) {
	.site-header__inner.container {
		width: min(100%, 1400px);
		max-width: none;
		padding-inline: clamp(24px, 4vw, 72px);
		box-sizing: border-box;
	}

	.site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		grid-template-areas: "brand nav actions";
		column-gap: clamp(24px, 2.5vw, 48px);
	}

	.site-header__brand {
		justify-self: start;
		justify-content: flex-start;
		overflow: visible;
	}

	.site-header__toggle {
		width: 44px;
		height: 44px;
		display: none;
	}

	.site-header__actions {
		gap: 10px;
		height: 44px;
		margin-inline-start: 0;
	}

	.site-header__actions .site-header__search-toggle,
	.site-header__actions .site-header__cart,
	.site-header__actions .site-header__account {
		width: 44px;
		height: 44px;
	}

	.site-logo__lockup {
		align-items: flex-start;
	}

	.site-logo__name {
		font-size: clamp(1.35rem, 1.05rem + 1.15vw, 1.85rem);
		letter-spacing: .04em;
		text-align: left;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.site-logo__tagline {
		font-size: clamp(.5rem, 0.42rem + 0.28vw, .62rem);
		letter-spacing: .22em;
		text-align: left;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.site-nav {
		display: flex;
		justify-content: center;
		align-items: center;
		padding-right: 0;
		min-width: 0;
	}

	.site-logo__image {
		width: clamp(250px, 17vw, 330px);
		height: auto;
		max-height: calc(var(--header-height) - 20px);
	}

	.site-header.is-scrolled .site-logo__image {
		width: clamp(235px, 15.5vw, 300px);
		max-height: calc(var(--header-height) - 18px);
	}

	.site-nav__list {
		justify-content: center;
	}
}

.site-header--nav-center .site-nav {
	justify-content: center;
	padding-right: 0;
}

@media (min-width: 1200px) {
	.site-header--nav-center .site-header__inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.site-header--nav-center .site-nav {
		justify-content: center;
		padding-right: 0;
	}

	.site-header--nav-center .site-nav__list {
		justify-content: center;
	}
}

.site-header--nav-right .site-nav {
	justify-content: flex-end;
	padding-right: 0.35rem;
}

@media (min-width: 1200px) {
	.site-header--nav-right .site-nav {
		justify-content: flex-end;
	}

	.site-header--nav-right .site-nav__list {
		justify-content: flex-end;
	}
}

.site-header__cta {
	min-height: 44px;
	white-space: nowrap;
}

.site-header__cta--desktop-only {
	display: none;
}

@media (min-width: 1200px) {
	.site-header__cta--desktop-only {
		display: inline-flex;
	}
}

/* Active menu indicator variants */
.site-nav__list > li > a {
	position: relative;
}

.site-nav__list > li > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 1px;
	background: currentColor;
	opacity: 0;
	transform: translateX(-50%);
	transition: width .28s ease, opacity .28s ease;
}

.site-nav__list,
.mobile-nav__list,
.site-nav__list .sub-menu,
.mobile-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 1.5vw, 34px);
	flex-wrap: nowrap;
}

.site-nav__list > li {
	position: relative;
}

.site-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: .45rem 0;
	border-radius: 0;
	color: #1B4F7A;
	text-decoration: none;
	font-family: var(--font-heading, 'Poppins', sans-serif);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.015em;
	line-height: 1.25;
	white-space: nowrap;
	background: transparent;
	transition: color .28s ease;
}

/*
 * Desktop top-level nav type + gap — MUST follow base .site-nav__list rules above
 * so cascade is not overridden by the 0.95rem / default gap declarations.
 */
@media (min-width: 1200px) {
	.site-header .site-nav__list {
		gap: clamp(20px, 1.35vw, 28px);
	}

	.site-header .site-nav__list > li > a {
		font-size: 17px;
		font-weight: 600;
		line-height: 1.25;
		letter-spacing: 0.01em;
		padding: .4rem 0;
		white-space: nowrap;
	}
}

@media (min-width: 1600px) {
	.site-header .site-nav__list > li > a {
		font-size: 18px;
	}
}

/* Açılır menü göstergesi (chevron) */
.site-nav__list > .menu-item-has-children > a::before {
	content: "";
	order: 2;
	display: block;
	width: 0.38rem;
	height: 0.38rem;
	margin-top: -0.12rem;
	border-right: 1.75px solid currentColor;
	border-bottom: 1.75px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.72;
	flex-shrink: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav__list > .menu-item-has-children:hover > a::before,
.site-nav__list > .menu-item-has-children:focus-within > a::before,
.site-nav__list > .menu-item-has-children.is-open > a::before {
	transform: rotate(225deg);
	margin-top: 0.12rem;
	opacity: 1;
}

.site-nav__list > li > a:hover,
.site-nav__list > li > a:focus-visible {
	color: var(--color-gold, #3482C5);
	background: transparent;
	outline: none;
	text-decoration: none;
}

.site-nav__list > li > a:hover::after,
.site-nav__list > li > a:focus-visible::after {
	width: 100%;
	opacity: .55;
}

/* Default / underline: primary blue active on light header */
.site-nav__list .current-menu-item > a,
.site-nav__list .current-menu-ancestor > a,
.site-nav__list .current_page_item > a {
	color: var(--color-gold, #3482C5);
	background: transparent;
	padding: .45rem 0;
	border-radius: 0;
	font-weight: 600;
	text-decoration: none;
}

.site-nav__list .current-menu-item > a::after,
.site-nav__list .current-menu-ancestor > a::after,
.site-nav__list .current_page_item > a::after {
	width: 100%;
	opacity: 1;
	background: var(--color-gold, #3482C5);
}

.site-nav__list .current-menu-item > a:hover,
.site-nav__list .current-menu-item > a:focus-visible,
.site-nav__list .current-menu-ancestor > a:hover,
.site-nav__list .current-menu-ancestor > a:focus-visible,
.site-nav__list .current_page_item > a:hover,
.site-nav__list .current_page_item > a:focus-visible {
	color: var(--color-bronze, #2A6BA3);
	background: transparent;
}

/* Soft chip (refined pill) */
.site-header--active-pill .site-nav__list > li > a::after {
	content: none;
	display: none;
}

.site-header--active-pill .site-nav__list .current-menu-item > a,
.site-header--active-pill .site-nav__list .current-menu-ancestor > a,
.site-header--active-pill .site-nav__list .current_page_item > a {
	color: var(--color-bronze, #2A6BA3);
	background: rgba(52, 130, 197, 0.1);
	padding: .4rem .85rem;
	border-radius: 6px;
	font-weight: 500;
}

.site-header--active-pill .site-nav__list .current-menu-item > a:hover,
.site-header--active-pill .site-nav__list .current-menu-item > a:focus-visible,
.site-header--active-pill .site-nav__list .current-menu-ancestor > a:hover,
.site-header--active-pill .site-nav__list .current-menu-ancestor > a:focus-visible,
.site-header--active-pill .site-nav__list .current_page_item > a:hover,
.site-header--active-pill .site-nav__list .current_page_item > a:focus-visible {
	color: var(--color-bronze, #2A6BA3);
	background: rgba(52, 130, 197, 0.14);
}

/* Color only */
.site-header--active-color .site-nav__list > li > a::after {
	content: none;
	display: none;
}

.site-header--active-color .site-nav__list .current-menu-item > a,
.site-header--active-color .site-nav__list .current-menu-ancestor > a,
.site-header--active-color .site-nav__list .current_page_item > a {
	background: transparent;
	color: var(--color-gold, #3482C5);
	padding: .45rem 0;
	border-radius: 0;
	font-weight: 600;
}

.site-header--active-underline .site-nav__list .current-menu-item > a,
.site-header--active-underline .site-nav__list .current-menu-ancestor > a,
.site-header--active-underline .site-nav__list .current_page_item > a {
	background: transparent;
	color: var(--color-gold, #3482C5);
	padding: .45rem 0;
	border-radius: 0;
}

.site-nav__list .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	z-index: var(--z-dropdown);
	width: min(320px, calc(100vw - 2rem));
	padding: .65rem;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(24, 25, 27, .12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.site-nav__list .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Klavye odağı: dropdown açık kalsın (Kurumsal + Ürünler) */
.site-nav__list .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Fare: hover ile aç; tıklama odağı menüyü yapıştırmasın */
@media (hover: hover) and (pointer: fine) {
	.site-nav__list .menu-item-has-children:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}
}

/* Ürünler — Seriler | Diğer Kategoriler mini mega menü (yalnızca masaüstü) */
@media (min-width: 1200px) {
	.site-nav__list > .menu-item--product-cats > .sub-menu {
		display: grid;
		grid-template-columns: minmax(11rem, 13rem) minmax(0, 1fr) minmax(0, 1fr);
		grid-auto-flow: dense;
		align-content: start;
		align-items: start;
		column-gap: 0.85rem;
		row-gap: 0.1rem;
		width: min(720px, calc(100vw - 2rem));
		max-height: min(70vh, 30rem);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0.9rem 0.85rem 0.8rem;
		border-color: rgba(52, 130, 197, 0.22);
		border-radius: 12px;
		box-shadow: 0 14px 36px rgba(27, 79, 122, 0.1);
	}

	.site-nav__list > .menu-item--product-cats.santek-nav-cats--few > .sub-menu {
		width: min(640px, calc(100vw - 2rem));
		grid-template-columns: minmax(11rem, 13rem) minmax(0, 1fr);
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-product-cats__label {
		grid-column: 1 / -1;
		margin: 0 0 0.4rem;
		padding: 0.1rem 0.55rem 0.55rem;
		list-style: none;
		border-bottom: 1px solid rgba(52, 130, 197, 0.14);
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu .santek-nav-product-cats__heading {
		display: block;
		color: var(--color-heading, #1b4f7a);
		font-family: var(--font-heading, 'Poppins', sans-serif);
		font-size: 0.82rem;
		font-weight: 700;
		letter-spacing: 0.01em;
		line-height: 1.35;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-group-label,
	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-group-label--series,
	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat--series {
		grid-column: 1;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-group-label--others {
		grid-column: 2 / -1;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat--other {
		grid-column: 2 / -1;
	}

	.site-nav__list > .menu-item--product-cats.santek-nav-cats--many > .sub-menu > .santek-nav-pcat--col-a {
		grid-column: 2;
	}

	.site-nav__list > .menu-item--product-cats.santek-nav-cats--many > .sub-menu > .santek-nav-pcat--col-b {
		grid-column: 3;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu .santek-nav-group-heading {
		display: block;
		padding: 0.35rem 0.55rem 0.25rem;
		color: var(--color-gold, #3482c5);
		font-family: var(--font-heading, 'Poppins', sans-serif);
		font-size: 0.78rem;
		font-weight: 700;
		line-height: 1.3;
		letter-spacing: 0.01em;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat > a {
		position: relative;
		display: flex;
		align-items: center;
		min-height: 42px;
		padding: 0.5rem 0.7rem 0.5rem 0.8rem;
		border-radius: 8px;
		color: var(--color-heading, #1b4f7a);
		font-size: 0.98rem;
		font-weight: 500;
		line-height: 1.35;
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat > a:hover,
	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat > a:focus-visible {
		background: rgba(52, 130, 197, 0.08);
		color: var(--color-gold, #3482c5);
		outline: none;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat > a:hover::before,
	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat > a:focus-visible::before {
		content: "";
		position: absolute;
		left: 0.3rem;
		top: 50%;
		width: 0.28rem;
		height: 0.28rem;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: translateY(-60%) rotate(-45deg);
		opacity: 0.85;
	}

	.site-nav__list > .menu-item--product-cats > .sub-menu > .santek-nav-pcat.current-menu-item > a {
		background: rgba(52, 130, 197, 0.1);
		color: var(--color-gold, #3482c5);
		font-weight: 600;
	}
}

.site-nav__list .sub-menu a {
	display: flex;
	width: 100%;
	min-height: 42px;
	padding: .65rem .75rem;
	border-radius: 10px;
	color: var(--color-text);
	font-size: .95rem;
	font-weight: 500;
	text-decoration: none;
	background: transparent;
	transition: color .30s ease, background-color .30s ease;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
	background: var(--color-ivory);
	color: #3482C5;
}

.mobile-nav__actions {
	display: none;
}

.site-header__search-toggle,
.site-header__cart,
.site-header__account {
	appearance: none;
	position: relative;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #D4DCE4;
	background: #FFFFFF;
	border-radius: 12px;
	color: #1B4F7A;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	font: inherit;
	transition: color .30s ease, border-color .30s ease, background-color .30s ease, transform .30s ease;
}

.site-header__account-wrap {
	position: relative;
	flex: 0 0 auto;
}

.site-header__account-dropdown {
	position: absolute;
	top: calc(100% + 0.45rem);
	right: 0;
	z-index: calc(var(--z-dropdown, 40) + 2);
	min-width: 10.5rem;
	padding: 0.4rem;
	border: 1px solid rgba(52, 130, 197, 0.22);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 14px 36px rgba(24, 25, 27, 0.12);
}

.site-header__account-dropdown[hidden] {
	display: none;
}

.site-header__account-link {
	display: block;
	padding: 0.7rem 0.85rem;
	border-radius: 10px;
	color: var(--color-graphite);
	font-size: 0.9rem;
	font-weight: 550;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease;
}

.site-header__account-link:hover,
.site-header__account-link:focus-visible {
	background: #F0F6FB;
	color: #3482C5;
	outline: none;
}

.site-header__account-link--logout {
	margin-top: 0.2rem;
	border-top: 1px solid rgba(52, 130, 197, 0.12);
	border-radius: 0 0 10px 10px;
	color: #8a3f3f;
}

.site-header__account-link--logout:hover,
.site-header__account-link--logout:focus-visible {
	background: rgba(154, 80, 80, 0.08);
	color: #6f2d2d;
}

.site-header__account-icon,
.site-header__cart-icon,
.site-header__search-icon {
	width: 20px;
	height: 20px;
}

.site-header__cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 1.15rem;
	height: 1.15rem;
	padding: 0 0.3rem;
	border-radius: 999px;
	background: #3482C5;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1.15rem;
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	.site-header__search-toggle:hover,
	.site-header__search-toggle:focus-visible,
	.site-header__account:hover,
	.site-header__account:focus-visible,
	.site-header__cart:hover,
	.site-header__cart:focus-visible,
	.site-header__account-wrap.is-open .site-header__account {
		background: #3482C5;
		border-color: #3482C5;
		color: #FFFFFF;
		transform: translateY(-2px);
		outline: none;
	}

	.site-header__toggle:hover,
	.site-header__toggle:focus-visible {
		background: #3482C5;
		border-color: #3482C5;
		color: #FFFFFF;
		transform: translateY(-2px);
		outline: none;
	}
}

.site-header__search-toggle:focus-visible,
.site-header__account:focus-visible,
.site-header__cart:focus-visible {
	outline: none;
}

/* Search drop-down panel */
.site-header__search-panel {
	border-bottom: 1px solid rgba(52, 130, 197, 0.14);
	background: linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 100%);
	box-shadow: 0 12px 28px rgba(24, 25, 27, 0.05);
	overflow: visible;
}

.site-header__search-panel[hidden] {
	display: none !important;
	pointer-events: none !important;
}

.site-header__search-panel.is-open {
	animation: da-search-panel-in .28s ease;
}

@keyframes da-search-panel-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.site-header__search-panel .container {
	padding-block: 1rem 1.15rem;
	display: flex;
	justify-content: center;
}

/* Shared elegant search field */
.da-search-form {
	position: relative;
	width: min(100%, 40rem);
	margin: 0;
}

.da-search-form.is-suggest-open .da-search-form__shell {
	border-radius: 18px 18px 0 0;
	border-bottom-color: transparent;
}

.da-search-suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 1px);
	z-index: 40;
	max-height: min(22rem, 70vh);
	overflow: auto;
	padding: 0.35rem 0 0.55rem;
	border: 1px solid rgba(52, 130, 197, 0.28);
	border-top: 0;
	border-radius: 0 0 18px 18px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(24, 25, 27, 0.08);
}

.da-search-suggest[hidden] {
	display: none;
}

.da-search-suggest__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.da-search-suggest__item.is-active .da-search-suggest__link,
.da-search-suggest__link:hover,
.da-search-suggest__link:focus-visible {
	background: rgba(52, 130, 197, 0.08);
	outline: none;
}

.da-search-suggest__link {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.65rem 0.95rem;
	text-decoration: none;
	color: inherit;
}

.da-search-suggest__thumb {
	flex: 0 0 auto;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f1ec;
}

.da-search-suggest__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.da-search-suggest__thumb--empty {
	box-shadow: inset 0 0 0 1px rgba(52, 130, 197, 0.12);
}

.da-search-suggest__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.da-search-suggest__type {
	font-size: 0.65rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold, #3482C5);
}

.da-search-suggest__title {
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-heading, #1B4F7A);
}

.da-search-suggest__excerpt {
	font-size: 0.8rem;
	line-height: 1.4;
	color: var(--color-muted, #6f706f);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	overflow: hidden;
}

.da-search-suggest__empty,
.da-search-suggest__loading {
	margin: 0;
	padding: 0.85rem 1rem;
	font-size: 0.88rem;
	color: var(--color-muted, #6f706f);
}

.da-search-suggest__all {
	display: block;
	margin: 0.25rem 0.55rem 0;
	padding: 0.7rem 0.85rem;
	border-top: 1px solid rgba(52, 130, 197, 0.12);
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--color-bronze, #2A6BA3);
	text-decoration: none;
}

.da-search-suggest__all:hover,
.da-search-suggest__all:focus-visible {
	color: var(--color-gold, #3482C5);
}

.da-search-form__shell {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: .35rem;
	min-height: 3rem;
	padding: .35rem .4rem .35rem .85rem;
	border: 1px solid rgba(52, 130, 197, 0.22);
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
	transition: border-color .25s ease, box-shadow .25s ease;
}

.da-search-form__shell:focus-within {
	border-color: rgba(52, 130, 197, 0.55);
	box-shadow: 0 0 0 3px rgba(52, 130, 197, 0.1);
}

.da-search-form__leading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold, #3482C5);
	opacity: .85;
}

.da-search-form__leading svg {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
}

.da-search-form__field,
.da-search-form input[type="search"] {
	width: 100%;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: .55rem .35rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-family: var(--font-heading, 'Poppins', sans-serif);
	font-size: .95rem;
	font-weight: 400;
	letter-spacing: .01em;
	color: var(--color-graphite, #1B4F7A);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.da-search-form__field::placeholder,
.da-search-form input[type="search"]::placeholder {
	color: #8A8680;
	opacity: 1;
}

.da-search-form__field:focus,
.da-search-form input[type="search"]:focus {
	outline: none;
	border: 0;
	box-shadow: none;
}

.da-search-form input[type="search"]::-webkit-search-decoration,
.da-search-form input[type="search"]::-webkit-search-cancel-button,
.da-search-form input[type="search"]::-webkit-search-results-button,
.da-search-form input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.da-search-form__submit,
.da-search-form .search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	min-height: 2.35rem;
	margin: 0;
	padding: 0 .95rem 0 .85rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--color-bronze, #2A6BA3);
	font-family: var(--font-heading, 'Poppins', sans-serif);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	transition: color .22s ease, background-color .22s ease;
}

.da-search-form__submit:hover,
.da-search-form__submit:focus-visible,
.da-search-form .search-submit:hover,
.da-search-form .search-submit:focus-visible {
	color: #fff;
	background: var(--color-gold, #3482C5);
	outline: none;
}

.da-search-form__submit-icon {
	width: 1rem;
	height: 1rem;
	display: block;
}

@media (max-width: 639px) {
	.da-search-form__shell {
		padding-left: .7rem;
		border-radius: 14px;
	}

	.da-search-form__submit,
	.da-search-form .search-submit {
		padding: 0 .7rem;
		border-radius: 10px;
	}

	.da-search-form__submit-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header__search-panel.is-open {
		animation: none;
	}
}

.site-header__phone {
	display: none;
	margin-left: 1rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--color-graphite);
	white-space: nowrap;
}

@media (min-width: 1200px) {
	.site-header__phone {
		display: inline-flex;
	}
}

.site-header__toggle span[aria-hidden="true"] {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: background-color .30s ease;
}

/* Mobil menü: header altında sabit drawer — tek dikey scroll (≤1199px) */
@media (max-width: 1199px) {
	.mobile-nav {
		position: fixed;
		top: var(--da-mobile-nav-top, calc(var(--da-header-offset, 0px) + var(--header-height)));
		left: 0;
		right: 0;
		bottom: 0;
		z-index: var(--z-mobile-nav, 1020);
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: none;
		box-sizing: border-box;
		margin: 0;
		padding: 1rem clamp(0.85rem, 4vw, 1.25rem);
		padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
		scroll-padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
		background: #ffffff;
		border-bottom: 0;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		touch-action: pan-y;
	}

	.mobile-nav:not([hidden]) {
		animation: da-mobile-nav-in 0.28s ease;
	}

	/* Arka sayfa kilit — drawer kendi scroll’una sahip */
	html.has-mobile-nav-open,
	html.has-mobile-nav-open body {
		overflow: hidden;
		overscroll-behavior: none;
	}

	body.has-mobile-nav-open {
		position: fixed;
		left: 0;
		right: 0;
		width: 100%;
	}

	/* Kategori accordion: ikinci scrollbar yok — doğal yükseklik */
	.mobile-nav__list .sub-menu,
	.mobile-nav__list .menu-item--product-cats > .sub-menu,
	.mobile-nav__list .menu-item-has-children.is-open > .sub-menu {
		height: auto;
		max-height: none;
		overflow: visible;
		position: static;
		touch-action: pan-y;
	}

	html.has-mobile-nav-open .whatsapp-fab,
	html.has-mobile-nav-open .back-to-top {
		visibility: hidden;
		pointer-events: none;
	}
}

@keyframes da-mobile-nav-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mobile-nav[hidden] {
	display: none !important;
	pointer-events: none !important;
}

.mobile-nav__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-nav__list > li {
	border-bottom: 1px solid rgba(24, 25, 27, .07);
}

.mobile-nav__list > li:last-child {
	border-bottom: 0;
}

.mobile-nav__list .menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.mobile-nav__list a {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 60px;
	padding: .75rem .35rem;
	color: var(--color-graphite);
	text-decoration: none;
	font-family: var(--font-heading, 'Poppins', sans-serif);
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: 0;
	border-radius: 10px;
	transition: color .30s ease, background-color .30s ease;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus-visible {
	color: var(--color-gold, #3482C5);
	background: rgba(52, 130, 197, 0.08);
	outline: none;
}

.mobile-nav__list .current-menu-item > a,
.mobile-nav__list .current-menu-ancestor > a,
.mobile-nav__list .current_page_item > a {
	color: var(--color-gold, #3482C5);
	background: rgba(52, 130, 197, 0.08);
	box-shadow: inset 2px 0 0 var(--color-gold, #3482C5);
}

.mobile-nav__expander {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	margin-left: .35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #D4DCE4;
	border-radius: 12px;
	background: #FFFFFF;
	color: #1B4F7A;
	cursor: pointer;
	transition: transform .25s ease, color .30s ease, border-color .30s ease, background-color .30s ease;
}

.mobile-nav__expander svg {
	width: 18px;
	height: 18px;
}

.mobile-nav__expander:hover,
.mobile-nav__expander:focus-visible {
	color: #FFFFFF;
	border-color: #3482C5;
	background: #3482C5;
	outline: none;
}

.menu-item-has-children.is-open > .mobile-nav__expander {
	transform: rotate(180deg);
	color: #FFFFFF;
	border-color: #3482C5;
	background: #3482C5;
}

.mobile-nav__list .sub-menu {
	display: none;
	flex: 0 0 100%;
	margin: .1rem 0 .5rem;
	padding: .35rem .5rem .35rem .85rem;
	list-style: none;
	border-left: 2px solid #3482C5;
	background: rgba(240, 246, 251, .55);
	border-radius: 0 10px 10px 0;
}

.mobile-nav__list .menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.mobile-nav__list .sub-menu a {
	min-height: 48px;
	padding: .65rem .5rem;
	font-size: .98rem;
	font-weight: 500;
	color: var(--color-muted, #5f5f5f);
	transition: color .18s ease;
}

.mobile-nav__list .menu-item--product-cats > .sub-menu > .santek-nav-product-cats__label,
.mobile-nav__list .menu-item--product-cats > .sub-menu > .santek-nav-group-label {
	padding: 0.35rem 0.5rem 0.35rem;
	list-style: none;
}

.mobile-nav__list .menu-item--product-cats > .sub-menu .santek-nav-product-cats__heading,
.mobile-nav__list .menu-item--product-cats > .sub-menu .santek-nav-group-heading {
	display: block;
	color: var(--color-heading, #1b4f7a);
	font-size: 0.8rem;
	font-weight: 700;
}

.mobile-nav__list .menu-item--product-cats > .sub-menu .santek-nav-group-heading {
	color: var(--color-gold, #3482c5);
	padding-top: 0.35rem;
}

.mobile-nav__list .sub-menu a:hover,
.mobile-nav__list .sub-menu a:focus-visible,
.mobile-nav__list .sub-menu .current-menu-item > a {
	color: #3482C5;
}

@media (prefers-reduced-motion: reduce) {
	.site-header,
	.site-header__inner,
	.site-logo__image,
	.site-nav__list > li > a,
	.site-nav__list > li > a::after,
	.site-nav__list .sub-menu,
	.site-header__search-toggle,
	.site-header__cart,
	.site-header__account,
	.site-header__toggle,
	.mobile-nav__list a,
	.mobile-nav__expander {
		transition: none;
	}

	.mobile-nav:not([hidden]) {
		animation: none;
	}
}
