/**
 * Site header (hesap tarzı) + Mertpin data-theme uyumu
 * :root[data-theme] frontend.blade ile senkron (gece/gündüz)
 */

/* ----- Genel: gövde + ana içerik metni (gece/gündüz okunabilirlik) ----- */
:root[data-theme="light"] body {
	color: var(--mp-text, #1a1a1f);
	background-color: var(--mp-bg, #f3f4f6);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
:root[data-theme="dark"] body,
body.dark {
	color: var(--mp-text, #f3f4f6);
	background-color: var(--background-color, #121212);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:root[data-theme="dark"] .content,
body.dark .content {
	color: var(--mp-text, #f3f4f6);
}
:root[data-theme="light"] .content,
body:not(.dark) .content {
	color: var(--mp-text, #1a1a1f);
}

:root[data-theme="dark"] .content p,
body.dark .content p {
	color: rgba(243, 244, 246, 0.92);
}
:root[data-theme="light"] .content p,
body:not(.dark) .content p {
	color: rgba(26, 26, 31, 0.9);
}

:root[data-theme="dark"] .content .text-muted,
body.dark .content .text-muted {
	color: var(--mp-muted, #b8b8c4) !important;
}
:root[data-theme="light"] .content .text-muted,
body:not(.dark) .content .text-muted {
	color: var(--mp-muted, #5c6370) !important;
}

:root[data-theme="dark"] .content .text-secondary,
body.dark .content .text-secondary {
	color: #a1a1aa !important;
}
:root[data-theme="light"] .content .text-secondary,
body:not(.dark) .content .text-secondary {
	color: #525860 !important;
}

:root[data-theme="dark"] .content .small,
body.dark .content .small {
	color: var(--mp-muted, #b0b0b8);
}
:root[data-theme="light"] .content .small,
body:not(.dark) .content .small {
	color: #5a6169;
}

:root[data-theme="dark"] .content h1,
:root[data-theme="dark"] .content h2,
:root[data-theme="dark"] .content h3,
:root[data-theme="dark"] .content h4,
:root[data-theme="dark"] .content h5,
:root[data-theme="dark"] .content h6,
body.dark .content h1,
body.dark .content h2,
body.dark .content h3,
body.dark .content h4,
body.dark .content h5,
body.dark .content h6 {
	color: #fafafa;
}
:root[data-theme="light"] .content h1,
:root[data-theme="light"] .content h2,
:root[data-theme="light"] .content h3,
:root[data-theme="light"] .content h4,
:root[data-theme="light"] .content h5,
:root[data-theme="light"] .content h6,
body:not(.dark) .content h1,
body:not(.dark) .content h2,
body:not(.dark) .content h3,
body:not(.dark) .content h4,
body:not(.dark) .content h5,
body:not(.dark) .content h6 {
	color: #111827;
}

:root[data-theme="dark"] .site-header .logo img.img-fluid.light,
:root[data-theme="dark"] .site-header .logo img.light {
	display: none !important;
}
:root[data-theme="dark"] .site-header .logo img.img-fluid.dark,
:root[data-theme="dark"] .site-header .logo img.dark {
	display: block !important;
}
:root[data-theme="light"] .site-header .logo img.img-fluid.light,
:root[data-theme="light"] .site-header .logo img.light {
	display: block !important;
}
:root[data-theme="light"] .site-header .logo img.img-fluid.dark,
:root[data-theme="light"] .site-header .logo img.dark {
	display: none !important;
}

/* Canlı arama (serchajax) sonuç kutusu */
#siteHeaderLiveSearch {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 6px;
	z-index: 1080;
	background: var(--mp-card, #1e1e24);
	border: 1px solid var(--mp-border, #2a2a32);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	max-height: 360px;
	overflow: hidden;
}
:root[data-theme="light"] #siteHeaderLiveSearch {
	background: #fff;
	border-color: #e5e7eb;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
#siteHeaderLiveSearch .body {
	max-height: 340px;
	overflow-y: auto;
	padding: 8px 12px;
}
#siteHeaderLiveSearch ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#siteHeaderLiveSearch .search-item {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
}
#siteHeaderLiveSearch .search-item:hover {
	background: rgba(74, 222, 128, 0.12);
}
.search-box {
	position: relative;
}


@media (min-width: 1200px) {
	.site-header .header-middle .col-12.d-flex.flex-column.flex-xl-row {
		gap: 24px;
	}

	.site-header .header-logo.header-search {
		flex: 1 1 auto;
		min-width: 0;
	}

	.site-header .header-user {
		flex: 0 0 auto;
	}

	.site-header .search-box-container {
		width: 430px;
	}

	.site-header .header-nav ul {
		width: 100%;
		align-items: center;
		justify-content: space-between;
	}

	.site-header .header-nav .nav-item {
		white-space: nowrap;
	}

	.site-header.useractive .search-box-container {
		width: 360px;
	}

	.site-header.useractive .header-user {
		flex: 0 0 auto;
	}

	.site-header.useractive .header-user-actions {
		align-items: center;
		flex-wrap: nowrap;
	}

	.site-header.useractive .header-user .square-btn {
		min-width: 50px;
		height: 50px;
	}

	.site-header.useractive .header-user .square-btn.bakiye-btn {
		min-width: 82px;
		padding: 6px 12px 0;
		border-radius: 8px;
	}

	.site-header.useractive .user-summary {
		min-width: 210px;
		padding: 6px 12px 6px 6px;
		border-radius: 8px;
	}

	.site-header.useractive .user-summary .user-data {
		gap: 2px;
	}

	.site-header.useractive .user-summary .name {
		font-weight: 700;
	}

	.site-header.useractive .user-summary .balance {
		margin-top: 0;
	}

}

.site-header .user-summary-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ff4c67 0%, #ff7a45 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	flex: 0 0 50px;
}

body.dark .site-header .user-summary-avatar,
:root[data-theme="dark"] .site-header .user-summary-avatar {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ----- Mobil (≤1199px): arama kutusu .show + fixed header altı ----- */
@media (max-width: 1199px) {
	.site-header .search-box-container.show {
		top: 90px !important;
		left: 12px !important;
		right: 12px;
		width: auto !important;
		max-width: none;
		z-index: 2147483000 !important;
	}
	/* ÖNEMLİ: cover, search-box'tan DÜŞÜK z-index — yoksa şeffaf overlay inputun üstünde kalır */
	.site-header .search-box-container .search-cover {
		z-index: 1 !important;
	}
	.site-header .search-box-container.show .search-box {
		position: relative;
		z-index: 20 !important;
		max-width: 100%;
		background-color: #fff !important;
		border: 1px solid #e5e7eb !important;
		box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12) !important;
		pointer-events: auto;
	}
	body.dark .site-header .search-box-container.show .search-box {
		background-color: #1e1e24 !important;
		border-color: #2a2a32 !important;
	}
	.site-header .search-box-container.show .search-input {
		background-color: #fff !important;
		color: #111 !important;
		opacity: 1 !important;
		-webkit-text-fill-color: #111 !important;
	}
	body.dark .site-header .search-box-container.show .search-input {
		background-color: #1e1e24 !important;
		color: #f3f4f6 !important;
		-webkit-text-fill-color: #f3f4f6 !important;
	}
	.site-header .search-box-container.show .populer-search {
		display: block !important;
		background: inherit;
	}
	#siteHeaderLiveSearch {
		position: relative;
		top: auto;
		margin-top: 8px;
		z-index: 25 !important;
	}
	/* Gündüz modunda sabit üst bar (main2 #fff) — açıkça */
	body:not(.dark) .site-header .header-middle .header-logo {
		background-color: #fff !important;
	}
	body.dark .site-header .header-middle .header-logo {
		background-color: #1e1e1f !important;
	}
	body.dark .site-header .header-nav.show {
		background-color: #1e1e1f !important;
	}
	body.dark .site-header .header-nav ul {
		background-color: #1e1e1f !important;
	}
	/* Menü açıkken görünen alttaki header-top */
	body.dark .site-header .header-top.show {
		background-color: #1e1e1f !important;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
	/* Mega menünün üstünde kalsın (aynı z-index’te altta kalabiliyor) */
	.site-header .header-top.show {
		z-index: 3147483640 !important;
		display: flex !important;
		align-items: center;
	}
}

/* Alt mobil menü ile çakışmayı azalt */
@media (max-width: 1199px) {
	.mobilbottommenu {
		z-index: 99990;
	}
}

/* Ana içerik: sabit üst bar (~90px) — 86px fazla boşluk veriyordu */
@media (max-width: 1199px) {
	main .content,
	.content {
		padding-top: 0 !important;
	}
	.blogarea .bloghead {
		padding-top: 8px;
		padding-bottom: 12px;
	}
	.site-header .mobile-main-menu {
		padding-bottom: 24px !important;
	}
}

/* Alt sepet/sohbet çubuğu (≤768) içeriği kesmesin — header-top menüyle geldiği için sabit 120px padding yok */
@media (max-width: 768px) {
	main .content,
	.content {
		padding-bottom: 72px !important;
	}
}

/* Float tabanlı .blogarea/.bloghead yüksekliğinin çökmesini önle */
.content,
.blogarea,
.blogarea .bloghead {
	display: flow-root;
}

/* Hamburger açıkken X ikonu */
.site-header .mobil-menu-btn .mobil-menu-icon--close {
	display: none;
}
.site-header .mobil-menu-btn.open .mobil-menu-icon--bars {
	display: none !important;
}
.site-header .mobil-menu-btn.open .mobil-menu-icon--close {
	display: inline-block !important;
}

/* Ana sayfa kategori swiper: flex içinde img boyutu çökünce görünmez oluyordu */
.blogcat--modern .swiper-slide a img {
	width: 100% !important;
	height: 100% !important;
	min-width: 0;
	min-height: 0;
	object-fit: cover;
	display: block;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ----- Site footer (site-header / useractive ile uyumlu) ----- */
footer.site-footer {
	float: none;
	clear: both;
	width: 100%;
	margin-top: 48px;
	position: relative;
	border-top: 1px solid #e4e4e4;
	background: #fff;
}

body.dark footer.site-footer,
:root[data-theme="dark"] footer.site-footer {
	border-top-color: rgba(255, 255, 255, 0.08);
	background: #1e1e1f;
}

.site-footer__accent {
	height: 3px;
	width: 100%;
	background: linear-gradient(90deg, var(--mp-accent, #4ade80), rgba(61, 90, 254, 0.85));
	opacity: 0.9;
}

.site-footer.useractive-footer .site-footer__accent {
	height: 4px;
	opacity: 1;
	box-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
}

.site-footer__top {
	border-bottom: 1px solid #e4e4e4;
	padding: 20px 0;
	background: #fff;
}

body.dark .site-footer__top,
:root[data-theme="dark"] .site-footer__top {
	background: #1e1e1f;
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-footer__top-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-footer__logo img {
	max-height: 56px;
	width: auto;
	max-width: 220px;
	height: auto;
	object-fit: contain;
}

.site-footer__logo img.logo-dark {
	display: none;
}

:root[data-theme="dark"] .site-footer__logo img.logo-light,
body.dark .site-footer__logo img.logo-light {
	display: none !important;
}

:root[data-theme="dark"] .site-footer__logo img.logo-dark,
body.dark .site-footer__logo img.logo-dark {
	display: block !important;
}

:root[data-theme="light"] .site-footer__logo img.logo-light,
body:not(.dark) .site-footer__logo img.logo-light {
	display: block !important;
}

:root[data-theme="light"] .site-footer__logo img.logo-dark,
body:not(.dark) .site-footer__logo img.logo-dark {
	display: none !important;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.site-footer__social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid #d8d8e6;
	background: #fff;
	color: #5b5f73;
	font-size: 20px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(73, 73, 73, 0.06);
	transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}

.site-footer__social-btn:hover {
	color: var(--mp-accent, #4ade80);
	border-color: rgba(74, 222, 128, 0.45);
	background: rgba(74, 222, 128, 0.08);
	transform: translateY(-1px);
}

body.dark .site-footer__social-btn,
:root[data-theme="dark"] .site-footer__social-btn {
	background: #25252c;
	border-color: rgba(255, 255, 255, 0.1);
	color: #c4c6d4;
	box-shadow: none;
}

body.dark .site-footer__social-btn:hover,
:root[data-theme="dark"] .site-footer__social-btn:hover {
	background: rgba(74, 222, 128, 0.12);
	border-color: rgba(74, 222, 128, 0.35);
	color: var(--mp-accent, #4ade80);
}

.site-footer__quick {
	border-bottom: 1px solid #e4e4e4;
	background: #f9fafb;
	padding: 0;
}

body.dark .site-footer__quick,
:root[data-theme="dark"] .site-footer__quick {
	background: #18181c;
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-footer__quick-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 0;
}

.site-footer__quick-list li {
	flex: 1 1 auto;
	min-width: 140px;
	text-align: center;
	border-left: 1px solid #e4e4e4;
}

body.dark .site-footer__quick-list li,
:root[data-theme="dark"] .site-footer__quick-list li {
	border-left-color: rgba(255, 255, 255, 0.08);
}

.site-footer__quick-list li:first-child {
	border-left: 0;
}

.site-footer__quick-list a {
	display: block;
	padding: 16px 14px;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}

.site-footer__quick-list a:hover {
	color: #3d5afe;
	background: rgba(61, 90, 254, 0.06);
}

body.dark .site-footer__quick-list a,
:root[data-theme="dark"] .site-footer__quick-list a {
	color: #e5e7eb;
}

body.dark .site-footer__quick-list a:hover,
:root[data-theme="dark"] .site-footer__quick-list a:hover {
	color: var(--mp-accent, #4ade80);
	background: rgba(74, 222, 128, 0.08);
}

.site-footer__body {
	padding: 36px 0 28px;
	background: #fff;
}

body.dark .site-footer__body,
:root[data-theme="dark"] .site-footer__body {
	background: #1e1e1f;
}

.site-footer__heading {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8e91a3;
	margin: 0 0 16px;
}

body.dark .site-footer__heading,
:root[data-theme="dark"] .site-footer__heading {
	color: #a8adb8;
}

.site-footer__heading--brand {
	font-size: 15px;
	letter-spacing: 0.14em;
	color: #111827;
}

body.dark .site-footer__heading--brand,
:root[data-theme="dark"] .site-footer__heading--brand {
	color: #f9fafb;
	text-shadow: none;
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__links li {
	margin-bottom: 12px;
}

.site-footer__links a {
	font-size: 15px;
	font-weight: 500;
	color: #4b5563;
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer__links a:hover {
	color: var(--mp-accent, #4ade80);
}

body.dark .site-footer__links a,
:root[data-theme="dark"] .site-footer__links a {
	color: #d1d5db;
}

/* Kategori gridi — uzun isimler taşmasın */
.site-footer__body .container-xxl {
	overflow-x: hidden;
	max-width: 100%;
}

.site-footer__categories {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px 18px;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
}

.site-footer__categories li {
	margin: 0;
	min-width: 0;
}

.site-footer__categories a {
	display: block;
	overflow-wrap: anywhere;
	word-break: break-word;
	line-height: 1.4;
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
	text-decoration: none;
	padding: 6px 0;
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
}

.site-footer__categories a:hover {
	color: var(--mp-accent, #4ade80);
	background: rgba(74, 222, 128, 0.06);
	padding-left: 6px;
	padding-right: 6px;
	margin-left: -6px;
	margin-right: -6px;
}

body.dark .site-footer__categories a,
:root[data-theme="dark"] .site-footer__categories a {
	color: #b8bcc8;
}

@media (max-width: 991px) {
	.site-footer__categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.site-footer__categories {
		grid-template-columns: 1fr;
	}
}

.site-footer__bottom {
	border-top: 1px solid #e4e4e4;
	background: #f3f4f6;
	padding: 18px 0 22px;
}

body.dark .site-footer__bottom,
:root[data-theme="dark"] .site-footer__bottom {
	background: #121214;
	border-top-color: rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	overflow-x: hidden;
	max-width: 100%;
}

.site-footer__copy {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
	color: #4b5563;
	max-width: 100%;
	overflow-wrap: anywhere;
	flex: 1 1 240px;
}

body.dark .site-footer__copy,
:root[data-theme="dark"] .site-footer__copy {
	color: #d4d4d8;
}

.site-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	align-items: center;
	justify-content: flex-end;
}

.site-footer__legal a {
	font-size: 13px;
	font-weight: 500;
	color: #4b5563;
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer__legal a:hover {
	color: #3d5afe;
}

body.dark .site-footer__legal a,
:root[data-theme="dark"] .site-footer__legal a {
	color: #d1d5db;
}

body.dark .site-footer__legal a:hover,
:root[data-theme="dark"] .site-footer__legal a:hover {
	color: var(--mp-accent, #4ade80);
}

@media (max-width: 767px) {
	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.site-footer__legal {
		justify-content: flex-start;
	}
	.site-footer__quick-list li {
		min-width: 100%;
		border-left: 0;
		border-top: 1px solid #e4e4e4;
	}
	.site-footer__quick-list li:first-child {
		border-top: 0;
	}
body.dark .site-footer__quick-list li,
	:root[data-theme="dark"] .site-footer__quick-list li {
		border-top-color: rgba(255, 255, 255, 0.08);
	}
}

.site-header .managed-header-dropdown {
	padding: 20px 0;
}

.site-header .managed-header-dropdown__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.site-header .managed-header-dropdown__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-header .managed-header-dropdown__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(61, 90, 254, 0.05);
	color: #111827;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-header .managed-header-dropdown__link:hover {
	transform: translateY(-2px);
	background: rgba(61, 90, 254, 0.1);
	color: #1d4ed8;
}

.site-header .managed-header-dropdown__link--primary {
	justify-content: space-between;
	background: linear-gradient(135deg, #3d5afe, #1d4ed8);
	color: #fff;
}

.site-header .managed-header-dropdown__link--primary:hover {
	color: #fff;
	background: linear-gradient(135deg, #3450ef, #1e40af);
}

.site-header .managed-header-dropdown__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: #fff;
	color: #3d5afe;
	flex-shrink: 0;
}

.site-header .managed-header-dropdown__icon i,
.site-header .managed-header-dropdown__icon .svg-icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	margin: 0;
	font-size: 20px;
}

.site-header .managed-header-dropdown__icon img,
.site-header .header-nav .nav-item .svg-icon.managed-menu-image img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	display: block;
}

.site-header .header-nav .nav-item .svg-icon.managed-menu-image {
	background: #fff;
	padding: 10px;
}

.site-header .managed-header-dropdown__icon .svg-icon svg {
	width: 22px;
	height: 22px;
}

.site-header .managed-header-dropdown__sublist {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-left: 12px;
}

.site-header .managed-header-dropdown__sublink {
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.site-header .managed-header-dropdown__sublink:hover {
	color: #3d5afe;
	transform: translateX(2px);
}

body.dark .site-header .managed-header-dropdown__link,
:root[data-theme="dark"] .site-header .managed-header-dropdown__link {
	background: rgba(255, 255, 255, 0.05);
	color: #f3f4f6;
}

body.dark .site-header .managed-header-dropdown__link:hover,
:root[data-theme="dark"] .site-header .managed-header-dropdown__link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

body.dark .site-header .managed-header-dropdown__icon,
:root[data-theme="dark"] .site-header .managed-header-dropdown__icon {
	background: rgba(17, 24, 39, 0.72);
	color: #93c5fd;
}

body.dark .site-header .managed-header-dropdown__sublink,
:root[data-theme="dark"] .site-header .managed-header-dropdown__sublink {
	color: #cbd5e1;
}

body.dark .site-header .managed-header-dropdown__sublink:hover,
:root[data-theme="dark"] .site-header .managed-header-dropdown__sublink:hover {
	color: #93c5fd;
}

@media (max-width: 1199px) {
	.site-header .managed-header-dropdown {
		height: 100%;
		overflow-y: auto;
	}

	.site-header .managed-header-dropdown__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.site-header .managed-header-dropdown__link {
		padding: 12px 14px;
	}
}

.site-header .dropdown-sepet {
	width: 360px;
	padding: 0;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
	background:
		radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 34%),
		linear-gradient(180deg, #ffffff, #fbfdff);
}

.site-header .header-kurumsal-menu-btn__iconimg {
	width: 16px;
	height: 16px;
	min-width: 16px;
	object-fit: contain;
	border-radius: 4px;
}

.site-header .header-kurumsal-menu-btn__svg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	min-width: 18px;
	flex-shrink: 0;
	overflow: hidden;
}

.site-header .header-kurumsal-menu-btn__svg svg {
	display: block;
	width: auto;
	height: auto;
	max-width: 18px;
	max-height: 18px;
}

.site-header .header-kurumsal-menu-btn__svg svg *,
.site-header .header-kurumsal-menu-btn__svg svg path,
.site-header .header-kurumsal-menu-btn__svg svg polygon,
.site-header .header-kurumsal-menu-btn__svg svg circle {
	transition: fill 0.2s ease, stroke 0.2s ease;
}

.site-header .header-kurumsal-menu-btn__svg--default svg {
	max-width: 10px;
	max-height: 16px;
}

.site-header .header-kurumsal-menu-btn > i {
	font-size: 16px;
	line-height: 1;
}

.site-header .dropdown-sepet .head {
	padding: 16px 18px 14px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.88));
}

.site-header .dropdown-sepet .title {
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
}

.site-header .dropdown-sepet .mini-sepet-subtitle {
	margin-top: 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #64748b;
}

.site-header .dropdown-sepet .mini-sepet-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	color: #f97316;
	background: rgba(249, 115, 22, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.18);
}

.site-header .dropdown-sepet .body {
	padding: 0;
}

.site-header .dropdown-sepet .body ul {
	list-style: none;
	margin: 0;
	padding: 14px;
	max-height: 320px;
	overflow-y: auto;
}

.site-header .dropdown-sepet .body ul li + li {
	margin-top: 10px;
}

.site-header .mini-sepet-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 14px;
	border-radius: 22px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
		radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 38%);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.site-header .mini-sepet-card:hover {
	transform: translateY(-1px);
	border-color: rgba(249, 115, 22, 0.28);
	box-shadow: 0 18px 40px rgba(249, 115, 22, 0.12);
}

.site-header .mini-sepet-card.is-loading {
	opacity: 0.72;
	pointer-events: none;
}

.site-header .mini-sepet-card__top,
.site-header .mini-sepet-card__bottom {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.site-header .mini-sepet-card__top {
	align-items: flex-start;
}

.site-header .mini-sepet-card__bottom {
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.site-header .mini-sepet-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex: 1;
	min-width: 0;
	text-decoration: none;
}

.site-header .mini-sepet-thumb {
	width: 58px;
	height: 58px;
	min-width: 58px;
	min-height: 58px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(253, 186, 116, 0.12));
	color: #f97316;
	overflow: hidden;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-header .mini-sepet-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #1d1b3a;
}

.site-header .mini-sepet-item .text h6 {
	margin-top: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
}

.site-header .mini-sepet-item .text small {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 600;
	color: #6b7280;
}

.site-header .mini-sepet-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.site-header .mini-sepet-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ea580c;
	background: rgba(249, 115, 22, 0.11);
	border: 1px solid rgba(249, 115, 22, 0.12);
}

.site-header .mini-sepet-chip--muted {
	color: #475569;
	background: rgba(226, 232, 240, 0.7);
	border-color: rgba(203, 213, 225, 0.8);
}

.site-header .mini-sepet-price-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.site-header .mini-sepet-line-total-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #64748b;
}

.site-header .mini-sepet-price-group strong {
	font-size: 16px;
	font-weight: 800;
	color: #111827;
	white-space: nowrap;
}

.site-header .mini-sepet-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 14px;
	background: rgba(239, 68, 68, 0.08);
	color: #dc2626;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
	flex-shrink: 0;
}

.site-header .mini-sepet-remove:hover {
	background: #ef4444;
	color: #fff;
	transform: translateY(-1px);
}

.site-header .mini-sepet-remove.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.site-header .mini-sepet-quantity {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.05);
	border: 1px solid rgba(148, 163, 184, 0.18);
}

.site-header .mini-sepet-quantity__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #0f172a;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.site-header .mini-sepet-quantity__btn:hover:not(:disabled) {
	transform: translateY(-1px);
	background: #f97316;
	color: #fff;
}

.site-header .mini-sepet-quantity__btn:disabled {
	opacity: 0.42;
	cursor: not-allowed;
	box-shadow: none;
}

.site-header .mini-sepet-quantity__btn--plus {
	background: linear-gradient(135deg, #f97316, #fb923c);
	color: #fff;
}

.site-header .mini-sepet-quantity__btn--plus:hover:not(:disabled) {
	background: linear-gradient(135deg, #ea580c, #f97316);
}

.site-header .mini-sepet-quantity__value {
	min-width: 22px;
	text-align: center;
	font-size: 13px;
	font-weight: 800;
	color: #0f172a;
}

.site-header .mini-sepet-footer {
	padding: 16px 18px 18px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	background: linear-gradient(180deg, rgba(249, 250, 251, 0.9), #fff);
}

.site-header .mini-sepet-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	color: #6b7280;
}

.site-header .mini-sepet-total strong {
	font-size: 16px;
	color: #111827;
}

.site-header .dropdown-sepet .btn-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 48px;
	border-radius: 16px;
	background: linear-gradient(135deg, #f97316, #fb923c);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.01em;
	box-shadow: 0 16px 28px rgba(249, 115, 22, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.site-header .dropdown-sepet .btn-all:hover {
	transform: translateY(-1px);
	filter: saturate(1.04);
	box-shadow: 0 20px 34px rgba(249, 115, 22, 0.28);
}

.site-header .mini-sepet-empty {
	padding: 24px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #6b7280;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.site-header .header-user-menu .balanceDropdown {
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.site-header .header-user-menu .balanceDropdown.is-masked {
	filter: blur(6px);
	opacity: 0.92;
	user-select: none;
}

.site-header .header-user-menu .balanceToggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

body.dark .site-header .dropdown-sepet,
:root[data-theme="dark"] .site-header .dropdown-sepet {
	background: #16181d;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(2, 6, 23, 0.48);
}

body.dark .site-header .dropdown-sepet .head,
body.dark .site-header .dropdown-sepet .mini-sepet-footer,
:root[data-theme="dark"] .site-header .dropdown-sepet .head,
:root[data-theme="dark"] .site-header .dropdown-sepet .mini-sepet-footer {
	border-color: rgba(255, 255, 255, 0.08);
}

body.dark .site-header .dropdown-menu.dropdown-sepet .head,
body.dark .site-header .dropdown-sepet .head,
:root[data-theme="dark"] .site-header .dropdown-menu.dropdown-sepet .head,
:root[data-theme="dark"] .site-header .dropdown-sepet .head {
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.92)) !important;
}

body.dark .site-header .dropdown-sepet .title,
body.dark .site-header .mini-sepet-item .text h6,
body.dark .site-header .mini-sepet-actions strong,
body.dark .site-header .mini-sepet-total strong,
:root[data-theme="dark"] .site-header .dropdown-sepet .title,
:root[data-theme="dark"] .site-header .mini-sepet-item .text h6,
:root[data-theme="dark"] .site-header .mini-sepet-actions strong,
:root[data-theme="dark"] .site-header .mini-sepet-total strong {
	color: #f8fafc;
}

body.dark .site-header .dropdown-sepet .mini-sepet-subtitle,
:root[data-theme="dark"] .site-header .dropdown-sepet .mini-sepet-subtitle {
	color: #94a3b8;
}

body.dark .site-header .dropdown-sepet .mini-sepet-count,
:root[data-theme="dark"] .site-header .dropdown-sepet .mini-sepet-count {
	color: #fdba74;
	background: rgba(249, 115, 22, 0.12);
	border-color: rgba(251, 146, 60, 0.22);
}

body.dark .site-header .mini-sepet-item .text small,
body.dark .site-header .mini-sepet-total,
body.dark .site-header .mini-sepet-empty,
:root[data-theme="dark"] .site-header .mini-sepet-item .text small,
:root[data-theme="dark"] .site-header .mini-sepet-total,
:root[data-theme="dark"] .site-header .mini-sepet-empty {
	color: #cbd5e1;
}

body.dark .site-header .dropdown-sepet .mini-sepet-footer,
:root[data-theme="dark"] .site-header .dropdown-sepet .mini-sepet-footer {
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.2), #16181d);
}

body.dark .site-header .mini-sepet-card,
:root[data-theme="dark"] .site-header .mini-sepet-card {
	background: rgba(15, 23, 42, 0.72);
	border-color: rgba(148, 163, 184, 0.14);
	box-shadow: 0 18px 42px rgba(2, 6, 23, 0.32);
}

body.dark .site-header .mini-sepet-card:hover,
:root[data-theme="dark"] .site-header .mini-sepet-card:hover {
	border-color: rgba(249, 115, 22, 0.28);
	box-shadow: 0 22px 44px rgba(249, 115, 22, 0.12);
}

body.dark .site-header .mini-sepet-remove,
:root[data-theme="dark"] .site-header .mini-sepet-remove {
	background: rgba(248, 113, 113, 0.12);
	color: #fda4af;
}

body.dark .site-header .mini-sepet-remove:hover,
:root[data-theme="dark"] .site-header .mini-sepet-remove:hover {
	background: #ef4444;
	color: #fff;
}

body.dark .site-header .mini-sepet-card__bottom,
:root[data-theme="dark"] .site-header .mini-sepet-card__bottom {
	border-color: rgba(148, 163, 184, 0.12);
}

body.dark .site-header .mini-sepet-chip--muted,
:root[data-theme="dark"] .site-header .mini-sepet-chip--muted {
	background: rgba(51, 65, 85, 0.72);
	border-color: rgba(100, 116, 139, 0.5);
	color: #cbd5e1;
}

body.dark .site-header .mini-sepet-line-total-label,
body.dark .site-header .mini-sepet-quantity__value,
:root[data-theme="dark"] .site-header .mini-sepet-line-total-label,
:root[data-theme="dark"] .site-header .mini-sepet-quantity__value {
	color: #e2e8f0;
}

body.dark .site-header .mini-sepet-quantity,
:root[data-theme="dark"] .site-header .mini-sepet-quantity {
	background: rgba(15, 23, 42, 0.7);
	border-color: rgba(71, 85, 105, 0.55);
}

body.dark .site-header .mini-sepet-quantity__btn,
:root[data-theme="dark"] .site-header .mini-sepet-quantity__btn {
	background: rgba(30, 41, 59, 0.95);
	color: #f8fafc;
	box-shadow: 0 10px 22px rgba(2, 6, 23, 0.34);
}

body.dark .site-header .mini-sepet-quantity__btn:hover:not(:disabled),
:root[data-theme="dark"] .site-header .mini-sepet-quantity__btn:hover:not(:disabled) {
	background: #f97316;
	color: #fff;
}

body.dark .site-header .dropdown-sepet .btn-all,
:root[data-theme="dark"] .site-header .dropdown-sepet .btn-all {
	box-shadow: 0 18px 34px rgba(249, 115, 22, 0.24);
}

@media (max-width: 1199px) {
	.site-header .dropdown-sepet {
		width: min(340px, calc(100vw - 32px));
	}
}

@media (max-width: 575px) {
	.site-header .dropdown-sepet .body ul {
		padding: 12px;
	}

	.site-header .mini-sepet-card {
		padding: 10px;
		gap: 10px;
	}

	.site-header .mini-sepet-card__bottom {
		flex-direction: column;
		align-items: stretch;
	}

	.site-header .mini-sepet-thumb {
		width: 46px;
		height: 46px;
		min-width: 46px;
		min-height: 46px;
	}

	.site-header .mini-sepet-quantity {
		justify-content: space-between;
	}
}
