/* Minay Category Grid — Proline-style category section */

.mcg-section {
	--mcg-primary: #1a4d8f;
	--mcg-primary-dark: #0f3460;
	--mcg-accent: #e8a317;
	--mcg-text: #1f2937;
	--mcg-muted: #6b7280;
	--mcg-border: #e5e7eb;
	--mcg-bg: #f8fafc;
	--mcg-card-bg: #ffffff;
	--mcg-radius: 16px;
	--mcg-shadow: 0 4px 24px rgba(15, 52, 96, 0.08);
	--mcg-cols: 4;
	max-width: 1240px;
	margin: 0 auto;
	padding: 48px 20px 56px;
	box-sizing: border-box;
}

.mcg-header {
	text-align: center;
	margin-bottom: 36px;
}

.mcg-title {
	margin: 0 0 10px;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--mcg-primary-dark);
	letter-spacing: -0.02em;
}

.mcg-subtitle {
	margin: 0;
	font-size: 1.05rem;
	color: var(--mcg-muted);
	line-height: 1.5;
}

.mcg-grid {
	display: grid;
	grid-template-columns: repeat(var(--mcg-cols), minmax(0, 1fr));
	gap: 20px;
}

.mcg-card {
	background: var(--mcg-card-bg);
	border: 1px solid var(--mcg-border);
	border-radius: var(--mcg-radius);
	box-shadow: var(--mcg-shadow);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.mcg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(15, 52, 96, 0.14);
	border-color: rgba(26, 77, 143, 0.25);
}

.mcg-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 16px 12px;
	text-decoration: none;
	color: inherit;
	flex: 1;
}

.mcg-card__media {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: linear-gradient(145deg, #eef4fb 0%, #dce8f5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	overflow: hidden;
	border: 2px solid rgba(26, 77, 143, 0.12);
}

.mcg-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mcg-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--mcg-primary);
}

.mcg-card__icon svg {
	width: 100%;
	height: 100%;
}

.mcg-card__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--mcg-text);
	line-height: 1.35;
}

.mcg-card__count {
	margin-top: 6px;
	font-size: 0.82rem;
	color: var(--mcg-muted);
}

.mcg-card__children {
	list-style: none;
	margin: 0;
	padding: 0 14px 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	border-top: 1px solid var(--mcg-border);
	padding-top: 12px;
}

.mcg-card__children li {
	margin: 0;
}

.mcg-card__children a {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--mcg-bg);
	color: var(--mcg-primary);
	font-size: 0.72rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.3;
	transition: background 0.15s ease, color 0.15s ease;
}

.mcg-card__children a:hover {
	background: var(--mcg-primary);
	color: #fff;
}

/* Compact menu (header / sidebar) */
.mcg-menu__title {
	margin: 0 0 12px;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--mcg-primary-dark, #0f3460);
}

.mcg-menu__list,
.mcg-menu__children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mcg-menu__item {
	margin-bottom: 10px;
}

.mcg-menu__parent {
	font-weight: 700;
	color: var(--mcg-primary-dark, #0f3460);
	text-decoration: none;
	font-size: 0.92rem;
}

.mcg-menu__children {
	margin-top: 6px;
	padding-left: 12px;
	display: grid;
	gap: 4px;
}

.mcg-menu__children a {
	color: var(--mcg-muted, #6b7280);
	text-decoration: none;
	font-size: 0.84rem;
}

.mcg-menu__children a:hover {
	color: var(--mcg-primary, #1a4d8f);
}

/* Tablet */
@media (max-width: 1024px) {
	.mcg-section {
		--mcg-cols: 3;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.mcg-section {
		--mcg-cols: 2;
		padding: 32px 16px 40px;
	}

	.mcg-grid {
		gap: 12px;
	}

	.mcg-card__link {
		padding: 18px 10px 8px;
	}

	.mcg-card__media {
		width: 72px;
		height: 72px;
	}

	.mcg-card__title {
		font-size: 0.88rem;
	}

	.mcg-card__children {
		display: none;
	}
}

/* Very small */
@media (max-width: 420px) {
	.mcg-section:not(.mcg-layout-premium) {
		--mcg-cols: 1;
	}

	.mcg-section:not(.mcg-layout-premium) .mcg-card__children {
		display: flex;
	}
}

/* ── Premium homepage layout (ana sayfa kategori kartları) ── */
.mcg-layout-premium {
	--mcg-primary: #0f2345;
	--mcg-primary-dark: #0f2345;
	--mcg-accent: #d4a017;
	--mcg-text: #0f2345;
	--mcg-muted: #5a6a7e;
	--mcg-border: #e8edf3;
	--mcg-bg: #f4f6f9;
	--mcg-card-bg: #ffffff;
	--mcg-radius: 18px;
	--mcg-shadow: 0 8px 28px rgba(15, 35, 69, 0.07);
	max-width: 1280px;
	padding: 56px 24px 64px;
	background: var(--mcg-bg);
	border-radius: 0;
}

.mcg-layout-premium .mcg-header {
	margin-bottom: 40px;
}

.mcg-layout-premium .mcg-title {
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: var(--mcg-primary-dark);
	letter-spacing: -0.03em;
}

.mcg-layout-premium .mcg-title::after {
	display: none;
}

.mcg-layout-premium .mcg-subtitle {
	font-size: 1.05rem;
	color: var(--mcg-muted);
	max-width: 620px;
	margin: 12px auto 0;
	line-height: 1.55;
}

.mcg-layout-premium .mcg-grid {
	gap: 24px;
}

.mcg-layout-premium .mcg-card {
	border: 1px solid rgba(15, 35, 69, 0.06);
	box-shadow: var(--mcg-shadow);
	border-radius: var(--mcg-radius);
	background: var(--mcg-card-bg);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.mcg-layout-premium .mcg-card::before {
	display: none;
}

.mcg-layout-premium .mcg-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(15, 35, 69, 0.16);
	border-color: rgba(23, 127, 121, 0.28);
}

.mcg-layout-premium .mcg-card__link {
	padding: 20px 20px 22px;
	align-items: center;
}

.mcg-layout-premium .mcg-card__media {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	background: #eef2f7;
	border: none;
	margin-bottom: 18px;
	overflow: hidden;
}

.mcg-layout-premium .mcg-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mcg-layout-premium .mcg-card:hover .mcg-card__media img {
	transform: scale(1.07);
}

.mcg-card--tekstil-urunleri .mcg-card__media img {
	object-position: 78% 22%;
}

.mcg-layout-premium .mcg-card__icon {
	width: 52px;
	height: 52px;
	color: var(--mcg-primary);
}

.mcg-layout-premium .mcg-card__title {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--mcg-text);
	line-height: 1.35;
}

.mcg-layout-premium .mcg-card__explore {
	margin-top: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--mcg-accent);
	letter-spacing: 0.01em;
	transition: color 0.2s ease, transform 0.25s ease;
}

.mcg-layout-premium .mcg-card:hover .mcg-card__explore {
	color: #177f79;
	transform: translateX(4px);
}

.mcg-layout-premium .mcg-card__children {
	display: none !important;
}

.mcg-footer-cta {
	text-align: center;
	margin: 44px 0 0;
}

.mcg-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 14px 32px;
	border-radius: 999px;
	border: 2px solid var(--mcg-primary, #0f2345);
	background: transparent;
	color: var(--mcg-primary, #0f2345) !important;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mcg-btn-outline:hover,
.mcg-btn-outline:focus,
.mcg-btn-outline:focus-visible {
	background: var(--mcg-primary, #0f2345);
	border-color: var(--mcg-primary, #0f2345);
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.mcg-layout-premium {
		--mcg-cols: 3;
	}
}

@media (max-width: 767px) {
	.mcg-layout-premium {
		padding: 40px 16px 48px;
		--mcg-cols: 2;
	}

	.mcg-layout-premium .mcg-grid {
		gap: 14px;
	}

	.mcg-layout-premium .mcg-card__link {
		padding: 14px 12px 16px;
	}

	.mcg-layout-premium .mcg-card__media {
		border-radius: 12px;
		margin-bottom: 12px;
	}

	.mcg-layout-premium .mcg-card__title {
		font-size: 0.88rem;
	}

	.mcg-layout-premium .mcg-card__explore {
		font-size: 0.8rem;
		margin-top: 6px;
	}
}

@media (max-width: 420px) {
	.mcg-layout-premium {
		--mcg-cols: 2;
	}
}

/* ── Directory page (tüm kategoriler) ── */
.mcg-layout-directory {
	--mcg-primary: #0f2345;
	--mcg-primary-dark: #0f2345;
	--mcg-accent: #d4a017;
	--mcg-bg: #f4f6f9;
	max-width: 1280px;
	padding: 48px 24px 72px;
	background: var(--mcg-bg);
}

.mcg-layout-directory .mcg-header {
	margin-bottom: 36px;
}

.mcg-layout-directory .mcg-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--mcg-primary-dark);
}

.mcg-layout-directory .mcg-subtitle {
	max-width: 680px;
	margin: 12px auto 0;
	color: #5a6a7e;
}

.mcg-directory {
	column-count: var(--mcg-cols, 4);
	column-gap: 20px;
}

.mcg-layout-directory a,
.mcg-layout-directory a:hover,
.mcg-layout-directory a:focus,
.mcg-layout-directory a:visited {
	text-decoration: none !important;
	background-image: none !important;
	box-shadow: none;
}

.mcg-directory__group {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	margin: 0 0 20px;
	background: #fff;
	border: 1px solid rgba(15, 35, 69, 0.08);
	border-radius: 18px;
	padding: 16px 18px 14px;
	box-shadow: 0 8px 28px rgba(15, 35, 69, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mcg-directory__group:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 38px rgba(15, 35, 69, 0.12);
	border-color: rgba(15, 35, 69, 0.14);
}

.mcg-directory__parent {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none !important;
	color: #27313f !important;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(15, 35, 69, 0.08);
}

.mcg-directory__thumb {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	background: #eef2f7;
}

.mcg-directory__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mcg-directory__group:hover .mcg-directory__thumb img {
	transform: scale(1.06);
}

.mcg-directory__parent-name {
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #27313f;
	text-decoration: none !important;
}

.mcg-directory__parent:hover .mcg-directory__parent-name {
	color: #b48616;
}

.mcg-directory__children {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mcg-directory__children a {
	display: block;
	padding: 6px 10px;
	border-radius: 8px;
	color: #667085 !important;
	text-decoration: none !important;
	font-size: 0.9rem;
	line-height: 1.4;
	transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}

.mcg-directory__children a:hover,
.mcg-directory__children a:focus-visible {
	color: #177f79 !important;
	background: #eef8f6;
	padding-left: 14px;
	text-decoration: none !important;
}

@media (max-width: 1024px) {
	.mcg-layout-directory {
		--mcg-cols: 3;
	}
}

@media (max-width: 767px) {
	.mcg-layout-directory {
		padding: 32px 16px 48px;
		--mcg-cols: 2;
	}

	.mcg-directory {
		column-gap: 12px;
	}

	.mcg-directory__group {
		margin-bottom: 12px;
		padding: 14px;
	}

	.mcg-directory__thumb {
		width: 46px;
		height: 46px;
	}

	.mcg-directory__parent-name {
		font-size: 0.94rem;
	}

	.mcg-directory__children a {
		font-size: 0.85rem;
		padding: 5px 8px;
	}
}

@media (max-width: 520px) {
	.mcg-layout-directory {
		--mcg-cols: 1;
	}
}

/* ── Header mega menu — Chakra tarzı tam genişlik bar ── */
#minay-category-mega {
	--minay-navy: #0f2345;
	--minay-text: #1a1a1a;
	--minay-text-muted: #5c5c5c;
	--minay-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--minay-serif: Georgia, "Times New Roman", Times, serif;
}

#minay-category-mega,
#minay-category-mega * {
	font-family: var(--minay-font);
	-webkit-font-smoothing: antialiased;
}

.minay-mega-menu-item {
	position: static !important;
}

#minay-category-mega {
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
}

#minay-category-mega.is-open {
	pointer-events: none;
}

.minay-mega__backdrop {
	position: absolute;
	top: var(--minay-mega-top, 100px);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 35, 69, 0.14);
	opacity: 0;
	transition: opacity 0.18s ease;
	pointer-events: none;
}

#minay-category-mega.is-open .minay-mega__backdrop {
	opacity: 1;
	pointer-events: auto;
}

.minay-mega__panel {
	position: absolute;
	top: var(--minay-mega-top, 100px);
	left: 0;
	right: 0;
	width: 100%;
	max-height: min(78vh, 760px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	background: #ffffff;
	border: none;
	border-top: 1px solid rgba(15, 35, 69, 0.08);
	border-bottom: 1px solid rgba(15, 35, 69, 0.06);
	box-shadow: 0 18px 48px rgba(15, 35, 69, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	scrollbar-width: thin;
	scrollbar-color: rgba(123, 189, 189, 0.5) transparent;
	pointer-events: none;
}

.minay-mega__panel::-webkit-scrollbar {
	width: 8px;
}

.minay-mega__panel::-webkit-scrollbar-thumb {
	background: rgba(123, 189, 189, 0.5);
	border-radius: 999px;
}

#minay-category-mega.is-open .minay-mega__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

#minay-header-menu {
	position: relative;
	z-index: 1000000;
}

.minay-mega__inner {
	display: flex;
	align-items: stretch;
	gap: 36px;
	max-width: 1320px;
	margin: 0 auto;
	padding: 36px 40px 40px;
	box-sizing: border-box;
}

.minay-mega__grid {
	flex: 1;
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 28px 32px;
}

.minay-mega__col {
	min-width: 0;
	overflow: visible;
}

#minay-category-mega .minay-mega__parent,
#minay-category-mega a.minay-mega__parent {
	display: block;
	margin: 0 0 14px;
	padding: 0;
	border: none;
	color: var(--minay-text) !important;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none !important;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: none;
	transition: opacity 0.15s ease;
}

#minay-category-mega .minay-mega__parent:hover,
#minay-category-mega a.minay-mega__parent:hover {
	color: var(--minay-text) !important;
	opacity: 0.65;
}

.minay-mega__children {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

#minay-category-mega .minay-mega__children a {
	display: block;
	padding: 5px 0;
	color: var(--minay-text-muted) !important;
	text-decoration: none !important;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.65;
	transition: color 0.15s ease;
}

#minay-category-mega .minay-mega__children a:hover {
	color: var(--minay-text) !important;
	background: transparent;
	text-decoration: none !important;
}

.minay-mega__col.is-hovered .minay-mega__parent,
.minay-mega__col:hover .minay-mega__parent {
	opacity: 1;
}

/* Sağ — öne çıkan görsel (Chakra tarzı) */
.minay-mega__featured {
	flex: 0 0 240px;
	max-width: 240px;
	position: sticky;
	top: 0;
	align-self: flex-start;
	z-index: 2;
	background: #ffffff;
	padding-bottom: 8px;
}

.minay-mega-menu-item > a.elementor-item,
#minay-header-menu .minay-mega-menu-item > a {
	cursor: pointer;
	pointer-events: auto;
	position: relative;
	z-index: 2;
}

.minay-mega__featured-link {
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	color: var(--minay-navy) !important;
}

.minay-mega__featured-media {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 4 / 5;
	background: #f3f6f8;
	margin-bottom: 16px;
}

.minay-mega__featured-media img,
.minay-mega__featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.25s ease, transform 0.35s ease;
}

.minay-mega__featured-img.is-fading {
	opacity: 0.15;
}

.minay-mega__featured-link:hover .minay-mega__featured-media img {
	transform: scale(1.03);
}

#minay-category-mega .minay-mega__featured-title {
	display: block;
	font-family: var(--minay-serif);
	font-size: 1.35rem;
	font-weight: 400;
	font-style: italic;
	color: var(--minay-text) !important;
	line-height: 1.3;
	margin-bottom: 12px;
	transition: opacity 0.2s ease;
}

#minay-category-mega .minay-mega__featured-cta {
	display: inline-block;
	font-family: var(--minay-font);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--minay-text) !important;
	border-bottom: 1px solid var(--minay-text);
	padding-bottom: 2px;
}

@media (max-width: 1280px) {
	.minay-mega__inner {
		padding: 32px 28px 36px;
		gap: 28px;
	}

	.minay-mega__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px 28px;
	}

	.minay-mega__featured {
		flex-basis: 200px;
		max-width: 200px;
	}
}

@media (max-width: 1100px) {
	.minay-mega__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.minay-mega__featured {
		display: none;
	}
}

@media (max-width: 991px) {
	#minay-category-mega {
		display: none !important;
	}
}

/* Katalog sayfası — ana sayfa kart stili, tüm kategoriler */
.mcg-layout-premium.mcg-layout-catalog {
	padding-top: 40px;
	padding-bottom: 72px;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-grid {
	gap: 24px;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card {
	min-height: 0;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__link {
	flex: 0 0 auto;
	padding-bottom: 14px;
	text-decoration: none !important;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__link:hover,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__link:focus,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__link:visited {
	text-decoration: none !important;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__title {
	color: #27313f;
	text-decoration: none !important;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__media img {
	transition: transform 0.45s ease;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card:hover .mcg-card__media img {
	transform: scale(1.045);
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__children {
	display: flex !important;
	position: static;
	align-content: flex-start;
	min-height: 92px;
	padding: 13px 12px 16px;
	gap: 6px;
	background: #f8fafc;
	border-top: 1px solid rgba(15, 35, 69, 0.08);
	box-shadow: none;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__children a,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__child-toggle {
	background: #fff;
	border: 1px solid rgba(15, 35, 69, 0.08);
	color: #667085 !important;
	border-radius: 999px;
	padding: 4px 10px;
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none !important;
	box-shadow: 0 2px 8px rgba(15, 35, 69, 0.05);
	transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__children a:hover,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__children a:focus-visible,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__child-toggle:hover,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__child-toggle:focus-visible,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__child-toggle[aria-expanded="true"] {
	background: #177f79;
	border-color: #177f79;
	color: #fff !important;
	transform: translateY(-1px);
}

.mcg-card__child-toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.mcg-card__child-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

.mcg-card__child-toggle[aria-expanded="true"] .mcg-card__child-arrow {
	transform: rotate(180deg);
}

.mcg-card__child--has-children {
	display: flex;
	flex: 0 0 100%;
	flex-wrap: wrap;
}

.mcg-card__grandchildren {
	display: flex;
	flex: 0 0 100%;
	flex-wrap: wrap;
	gap: 6px;
	margin: 9px 0 2px;
	padding: 10px;
	list-style: none;
	background: #eef8f6;
	border: 1px solid rgba(23, 127, 121, 0.12);
	border-radius: 12px;
	animation: mcgSubcategoriesReveal 0.26s ease both;
}

.mcg-card__grandchildren[hidden] {
	display: none;
}

.mcg-card__grandchildren-all {
	flex: 0 0 100%;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__grandchildren-all a {
	display: inline-flex;
	padding: 4px 2px;
	background: transparent;
	border: 0;
	color: #b48616 !important;
	box-shadow: none;
}

@keyframes mcgSubcategoriesReveal {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__more {
	flex: 0 0 100%;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__more-button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 2px;
	background: transparent;
	border: 0;
	color: #b48616 !important;
	font-family: inherit;
	font-size: 0.76rem;
	font-weight: 750;
	box-shadow: none;
	cursor: pointer;
	transition: color 0.18s ease, padding-left 0.18s ease;
}

.mcg-layout-premium.mcg-layout-catalog .mcg-card__more-button:hover,
.mcg-layout-premium.mcg-layout-catalog .mcg-card__more-button:focus-visible {
	padding-left: 5px;
	background: transparent;
	color: #177f79 !important;
	transform: none;
}

.mcg-card__more-open,
.mcg-card__more-close {
	align-items: center;
	gap: 5px;
}

.mcg-card__more-open {
	display: inline-flex;
}

.mcg-card__more-close {
	display: none;
}

.mcg-card__more-button[aria-expanded="true"] .mcg-card__more-open {
	display: none;
}

.mcg-card__more-button[aria-expanded="true"] .mcg-card__more-close {
	display: inline-flex;
}

.mcg-card__child--extra:not([hidden]) {
	animation: mcgChipReveal 0.26s ease both;
}

@keyframes mcgChipReveal {
	from {
		opacity: 0;
		transform: translateY(-7px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.mcg-layout-premium.mcg-layout-catalog .mcg-card__children {
		padding: 10px 8px 14px;
		gap: 5px;
		min-height: 86px;
	}

	.mcg-layout-premium.mcg-layout-catalog .mcg-card__children a {
		padding: 4px 7px;
		font-size: 0.68rem;
	}

	.mcg-layout-premium.mcg-layout-catalog .mcg-card__more-button {
		padding: 4px 1px;
	}
}

/* WooCommerce kategori arşivi — tıklanabilir alt kategori kartları */
.mcg-archive-children {
	clear: both;
	width: 100%;
	margin: 18px 0 30px;
	padding: 20px;
	background: #f7f9fc;
	border: 1px solid rgba(39, 49, 63, 0.08);
	border-radius: 18px;
	box-sizing: border-box;
}

.mcg-archive-children__title {
	margin: 0 0 14px;
	color: #27313f;
	font-size: 1rem;
	font-weight: 800;
}

.mcg-archive-children__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.mcg-archive-children__item,
.mcg-archive-children__item:visited {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 46px;
	padding: 10px 13px;
	background: #fff;
	border: 1px solid rgba(39, 49, 63, 0.09);
	border-radius: 12px;
	color: #4e5968 !important;
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.3;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(39, 49, 63, 0.05);
	transition: color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mcg-archive-children__item:hover,
.mcg-archive-children__item:focus-visible {
	color: #177f79 !important;
	border-color: rgba(23, 127, 121, 0.36);
	box-shadow: 0 9px 22px rgba(23, 127, 121, 0.11);
	text-decoration: none !important;
	transform: translateY(-2px);
}

.mcg-archive-children__item.is-current {
	background: #177f79;
	border-color: #177f79;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(23, 127, 121, 0.18);
}

.mcg-archive-children__item.is-current .mcg-archive-children__arrow {
	color: #fff;
}

.mcg-archive-children__arrow {
	color: #b48616;
	font-size: 1rem;
	transition: transform 0.18s ease;
}

.mcg-archive-children__item:hover .mcg-archive-children__arrow {
	transform: translateX(3px);
}

@media (max-width: 900px) {
	.mcg-archive-children__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.mcg-archive-children {
		padding: 14px;
	}

	.mcg-archive-children__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.mcg-archive-children__item {
		padding: 9px 10px;
		font-size: 0.8rem;
	}
}

/* ── Premium category carousel (ana sayfa slider) ── */
.mcg-has-pager .mcg-pager.mcg-carousel {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	grid-template-areas:
		"prev viewport next"
		"meta meta meta";
	align-items: center;
	column-gap: 10px;
	row-gap: 8px;
}

.mcg-carousel .mcg-pager__nav--prev {
	grid-area: prev;
}

.mcg-carousel .mcg-pager__viewport,
.mcg-carousel .mcg-carousel__viewport {
	grid-area: viewport;
}

.mcg-carousel .mcg-pager__nav--next {
	grid-area: next;
}

.mcg-carousel .mcg-pager__meta {
	grid-area: meta;
}

.mcg-pager__viewport,
.mcg-carousel__viewport {
	overflow: hidden;
	padding: 12px 2px 20px;
	margin: -12px -2px -20px;
	min-width: 0;
}

.mcg-carousel__track {
	display: flex;
	gap: 24px;
	will-change: transform;
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.mcg-carousel__item {
	flex: 0 0 calc((100% - (var(--mcg-cols, 4) - 1) * 24px) / var(--mcg-cols, 4));
	min-width: 0;
}

.mcg-carousel__item .mcg-card {
	height: 100%;
}

.mcg-pager__slide {
	animation: mcgPagerFade 0.32s ease;
}

.mcg-pager__slide[hidden] {
	display: none !important;
}

@keyframes mcgPagerFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mcg-carousel .mcg-pager__nav {
	position: static;
	top: auto;
	left: auto;
	right: auto;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: 46px;
	height: 46px;
	margin: 0;
	border: 1px solid rgba(15, 35, 69, 0.12);
	border-radius: 50%;
	background: #fff;
	color: var(--mcg-primary-dark, #0f2345);
	box-shadow: 0 8px 24px rgba(15, 35, 69, 0.1);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.mcg-pager__nav svg {
	width: 20px;
	height: 20px;
}

.mcg-carousel .mcg-pager__nav:hover:not(:disabled),
.mcg-carousel .mcg-pager__nav:focus-visible:not(:disabled) {
	border-color: #177f79;
	background: #177f79;
	color: #fff;
	transform: translateY(-1px);
}

.mcg-carousel .mcg-pager__nav:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	box-shadow: none;
}

.mcg-pager__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

.mcg-pager__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mcg-pager__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 35, 69, 0.18);
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease;
}

.mcg-pager__dot.is-active {
	width: 24px;
	background: #177f79;
}

.mcg-pager__counter {
	margin: 0;
	color: #667085;
	font-size: 0.85rem;
	font-weight: 650;
}

.mcg-carousel.is-playing .mcg-pager__dot.is-active {
	background: linear-gradient(90deg, #177f79 0%, #177f79 100%);
}

.mcg-footer-cta--fixed {
	margin-top: 36px;
}

@media (max-width: 1024px) {
	.mcg-has-carousel {
		--mcg-cols: 3;
	}

	.mcg-has-pager .mcg-pager.mcg-carousel {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		column-gap: 6px;
	}

	.mcg-carousel__track {
		gap: 18px;
	}

	.mcg-carousel__item {
		flex-basis: calc((100% - (var(--mcg-cols, 3) - 1) * 18px) / var(--mcg-cols, 3));
	}
}

@media (max-width: 767px) {
	.mcg-has-carousel {
		--mcg-cols: 2;
	}

	.mcg-has-pager .mcg-pager.mcg-carousel {
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		column-gap: 4px;
	}

	.mcg-carousel__track {
		gap: 12px;
	}

	.mcg-carousel__item {
		flex-basis: calc((100% - (var(--mcg-cols, 2) - 1) * 12px) / var(--mcg-cols, 2));
	}

	.mcg-carousel .mcg-pager__nav {
		width: 34px;
		height: 34px;
	}

	.mcg-pager__meta {
		margin-top: 16px;
	}

	.mcg-footer-cta--fixed {
		margin-top: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mcg-carousel__track,
	.mcg-layout-premium .mcg-card,
	.mcg-layout-premium .mcg-card__media img {
		transition: none !important;
	}
}

/* ── Browse layout — Akdeniz görsel karolar (zorunlu stiller) ── */
.mcg-layout-browse {
	--mcg-ak-teal: #00a5a7;
	--mcg-ak-red: #e2293d;
	--mcg-ak-navy: #1e2e4e;
	max-width: 1280px !important;
	width: 100% !important;
	margin: 0 auto 40px !important;
	padding: 12px 16px 40px !important;
	box-sizing: border-box !important;
	font-family: "Quicksand", system-ui, sans-serif;
}

.mcg-layout-browse .mcg-browse,
.mcg-layout-browse .mcg-browse--tiles-only,
.mcg-layout-browse .mcg-browse__main {
	display: block !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

.mcg-layout-browse .mcg-browse__sidebar,
.mcg-layout-browse .mcg-card__children,
.mcg-layout-browse .mcg-header {
	display: none !important;
}

.mcg-layout-browse .mcg-browse__grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	grid-auto-rows: 180px !important;
	gap: 12px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.mcg-layout-browse .mcg-tile {
	position: relative !important;
	display: block !important;
	overflow: hidden !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 180px !important;
	border-radius: 0 !important;
	background: #e9eef2 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

.mcg-layout-browse .mcg-tile:nth-child(1) {
	grid-column: span 1 !important;
	grid-row: span 2 !important;
	min-height: 372px !important;
}

.mcg-layout-browse .mcg-tile:nth-child(2) {
	grid-column: span 2 !important;
	grid-row: span 2 !important;
	min-height: 372px !important;
}

.mcg-layout-browse .mcg-tile:nth-child(3) {
	grid-column: span 1 !important;
	grid-row: span 2 !important;
	min-height: 372px !important;
}

.mcg-layout-browse .mcg-tile__media {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
}

.mcg-layout-browse .mcg-tile__media img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	margin: 0 !important;
	border-radius: 0 !important;
}

.mcg-layout-browse .mcg-tile__fallback {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #f2f4f7, #dde3ea);
}

.mcg-layout-browse .mcg-tile__label {
	position: absolute !important;
	left: 14px !important;
	bottom: 14px !important;
	z-index: 3 !important;
	display: inline-block !important;
	max-width: calc(100% - 28px) !important;
	padding: 4px 10px !important;
	margin: 0 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.03em !important;
	line-height: 1.3 !important;
	text-transform: uppercase !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.mcg-layout-browse .mcg-tile--red .mcg-tile__label {
	background: var(--mcg-ak-red) !important;
}

.mcg-layout-browse .mcg-tile--teal .mcg-tile__label {
	background: var(--mcg-ak-teal) !important;
}

@media (max-width: 900px) {
	.mcg-layout-browse .mcg-browse__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-auto-rows: 160px !important;
	}

	.mcg-layout-browse .mcg-tile:nth-child(1),
	.mcg-layout-browse .mcg-tile:nth-child(2),
	.mcg-layout-browse .mcg-tile:nth-child(3) {
		grid-column: auto !important;
		grid-row: auto !important;
		min-height: 160px !important;
	}

	.mcg-layout-browse .mcg-tile:nth-child(1) {
		grid-column: span 2 !important;
		grid-row: span 2 !important;
		min-height: 320px !important;
	}
}

@media (max-width: 520px) {
	.mcg-layout-browse .mcg-browse__grid {
		grid-template-columns: 1fr !important;
		grid-auto-rows: 210px !important;
	}

	.mcg-layout-browse .mcg-tile:nth-child(1) {
		grid-column: auto !important;
		grid-row: auto !important;
		min-height: 210px !important;
	}
}
