/* =============================================
   Marketplace hub polish — premium discovery panel
   ============================================= */

.mb-sb-hub {
	padding: clamp(34px, 4.4vw, 56px) 0 clamp(36px, 4.6vw, 60px) !important;
	background:
		radial-gradient(circle at 14% 0%, rgba(var(--mb-accent-rgb), 0.13), transparent 24rem),
		radial-gradient(circle at 92% 20%, rgba(var(--mb-primary-rgb), 0.10), transparent 24rem),
		linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%) !important;
}

.mb-sb-hub::before {
	inset: 12px clamp(10px, 2.4vw, 34px) !important;
	border-radius: 34px !important;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.42)) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.88),
		0 18px 60px rgba(15, 23, 42, 0.055);
}

.mb-sb-hub > .mb-container {
	padding: clamp(18px, 2.4vw, 28px);
	border: 1px solid rgba(30, 74, 140, 0.10);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,251,254,0.86));
	box-shadow:
		0 24px 70px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255,255,255,0.86);
}

.mb-sb-hub__head {
	align-items: center;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(30, 74, 140, 0.08);
}

.mb-sb-hub__eyebrow {
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	color: var(--mb-sb-gold-dark, #9a6a00);
}

.mb-sb-hub__eyebrow::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mb-sb-gold, #e5a800);
	box-shadow: 0 0 0 5px rgba(229, 168, 0, 0.12);
}

.mb-sb-hub__head h2 {
	max-width: 700px;
	font-size: clamp(1.72rem, 2.45vw, 2.45rem);
	line-height: 1.04;
}

.mb-sb-hub__head p {
	max-width: 620px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.58;
}

.mb-sb-hub__all {
	min-height: 42px;
	padding: 11px 16px;
	border-color: rgba(30, 74, 140, 0.10);
	background:
		linear-gradient(180deg, #ffffff, #f7f9fc);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.mb-sb-hub__all:hover {
	transform: translateY(-1px);
	border-color: rgba(var(--mb-accent-rgb), 0.42);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.mb-sb-hub__metrics {
	gap: 12px;
	margin-bottom: 14px;
}

.mb-sb-hub-metric {
	grid-template-columns: 38px 1fr;
	min-height: 70px;
	padding: 12px 14px;
	border-color: rgba(30, 74, 140, 0.09);
	border-radius: 18px;
	background:
		linear-gradient(180deg, #ffffff, #fbfcff);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.mb-sb-hub-metric span {
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(229,168,0,0.16), rgba(255,255,255,0.92));
}

.mb-sb-hub-metric strong {
	font-size: 1.16rem;
}

.mb-sb-hub__grid {
	grid-template-columns: minmax(230px, 1.05fr) minmax(220px, 1fr) minmax(240px, 1.18fr) minmax(220px, 1fr);
	gap: 14px;
	align-items: stretch;
}

.mb-sb-hub-card {
	position: relative;
	overflow: hidden;
	min-height: 236px;
	padding: 18px;
	border-color: rgba(30, 74, 140, 0.10);
	border-radius: 22px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.mb-sb-hub-card::after {
	content: '';
	position: absolute;
	inset: auto -30% -48% auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--mb-primary-rgb), 0.08), transparent 68%);
	pointer-events: none;
}

.mb-sb-hub-card:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--mb-accent-rgb), 0.34);
	box-shadow: 0 20px 52px rgba(15, 23, 42, 0.085);
}

.mb-sb-hub-card--trust {
	background:
		radial-gradient(circle at 90% 0%, rgba(229, 168, 0, 0.24), transparent 14rem),
		linear-gradient(145deg, #0b2347 0%, #123d76 56%, #0e2f5e 100%);
	box-shadow: 0 22px 56px rgba(12, 31, 61, 0.18);
}

.mb-sb-hub-card--trust::after {
	background: radial-gradient(circle, rgba(229, 168, 0, 0.16), transparent 68%);
}

.mb-sb-hub-card__head {
	position: relative;
	z-index: 1;
	margin-bottom: 16px;
}

.mb-sb-hub-card__head > span {
	width: 42px;
	height: 42px;
	border-radius: 15px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.88);
}

.mb-sb-hub-card h3 {
	font-size: 1.02rem;
	letter-spacing: -0.015em;
}

.mb-sb-city-grid,
.mb-sb-search-cloud,
.mb-sb-check-list,
.mb-sb-mini-showcase,
.mb-sb-hub-card__link {
	position: relative;
	z-index: 1;
}

.mb-sb-city-grid {
	gap: 9px;
}

.mb-sb-city-grid a,
.mb-sb-search-cloud a,
.mb-sb-mini-showcase a {
	border-color: rgba(30, 74, 140, 0.09);
	background: rgba(247, 249, 252, 0.88);
	transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.mb-sb-city-grid a:hover,
.mb-sb-search-cloud a:hover,
.mb-sb-mini-showcase a:hover {
	transform: translateY(-1px);
	border-color: rgba(var(--mb-accent-rgb), 0.36);
	background: #fff;
}

.mb-sb-check-list {
	gap: 11px;
	margin-bottom: 18px;
}

.mb-sb-hub-card__link {
	min-height: 34px;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(246, 200, 76, 0.12);
}

.mb-sb-mini-showcase {
	gap: 10px;
}

.mb-sb-mini-showcase a {
	grid-template-columns: 64px 1fr;
	padding: 9px;
	border-radius: 14px;
}

.mb-sb-mini-showcase__thumb {
	width: 64px;
	height: 48px;
	border-radius: 10px;
}

.mb-sb-hub__category-rail {
	position: relative;
	gap: 10px;
	margin-top: 16px;
	padding-top: 34px;
	border-top: 1px solid rgba(30, 74, 140, 0.08);
}

.mb-sb-hub__category-rail::before {
	content: 'Popüler kategori kısa yolları';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--mb-sb-navy, #1e4a8c);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: -0.01em;
}

.mb-sb-hub__category-rail a {
	padding: 12px 10px;
	border-color: rgba(30, 74, 140, 0.10);
	border-radius: 17px;
	background:
		linear-gradient(180deg, #ffffff, #f8fafc);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
	transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

.mb-sb-hub__category-rail a:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--mb-accent-rgb), 0.38);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.075);
}

@media (max-width: 1100px) {
	.mb-sb-hub > .mb-container {
		border-radius: 26px;
	}

	.mb-sb-hub__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mb-sb-hub-card {
		min-height: 0;
	}
}

@media (max-width: 768px) {
	.mb-sb-hub {
		padding: 32px 0 44px !important;
	}

	.mb-sb-hub > .mb-container {
		padding: 14px !important;
		border-radius: 24px;
	}

	.mb-sb-hub__head {
		align-items: flex-start;
		gap: 14px;
		margin-bottom: 14px;
		padding-bottom: 14px;
	}

	.mb-sb-hub__head h2 {
		font-size: clamp(1.45rem, 8vw, 2.05rem);
	}

	.mb-sb-hub__all {
		width: 100%;
		justify-content: center;
	}

	.mb-sb-hub__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.mb-sb-hub-metric {
		grid-template-columns: 34px 1fr;
		min-height: 68px;
		padding: 11px;
	}

	.mb-sb-hub-metric span {
		width: 34px;
		height: 34px;
	}

	.mb-sb-hub__grid {
		grid-template-columns: 1fr !important;
		gap: 12px;
	}

	.mb-sb-hub-card {
		min-height: 0;
		padding: 16px;
		border-radius: 20px;
	}

	.mb-sb-hub__category-rail {
		display: flex;
		gap: 9px;
		overflow-x: auto;
		margin-inline: -14px;
		padding: 34px 14px 4px;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.mb-sb-hub__category-rail::before {
		left: 14px;
	}

	.mb-sb-hub__category-rail a {
		flex: 0 0 118px;
		scroll-snap-align: start;
	}
}
