/*//////////////////////////////////////////////////////////////////
[ Slick1 ]*/
.wrap-slick1 {
	position: relative;
}

/* Home hero — top edge progress (autoplay countdown, primary color) */
.home-slide-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8;
	height: 3px;
	margin: 0;
	overflow: hidden;
	pointer-events: none;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 18%, rgba(255, 255, 255, 0.22));
}

.home-slide-progress__bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 78%, #111),
		var(--primary-color, #717fe0));
	transform-origin: left center;
	box-shadow: 0 0 10px color-mix(in srgb, var(--primary-color, #717fe0) 45%, transparent);
}

.home-slide-progress__bar.is-running {
	animation: home-slide-progress var(--home-slide-display-ms, 6000ms) linear forwards;
}

@keyframes home-slide-progress {
	from { width: 0; }
	to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.home-slide-progress__bar {
		animation: none !important;
		width: 0 !important;
	}
}

/* Pre-init / back-nav: hide stacked slides until Slick mounts (same pattern as slick3) */
.slick1:not(.slick-initialized) {
	overflow: hidden;
}

.slick1:not(.slick-initialized) > .item-slick1:not(:first-child) {
	display: none !important;
}

.slick1:not(.slick-initialized) > .item-slick1:first-child {
	display: block;
	width: 100%;
}

.item-slick1 {
	height: calc(100vh - 40px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.section-slide .item-slick1::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(110deg, rgba(255, 255, 255, 0.28) 0%,
		rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.02) 100%);
}

.section-slide .item-slick1 .layer-slick1 .size-101 {
	min-width: 152px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--primary-color) 28%, #ffffff) !important;
	background-color: color-mix(in srgb, var(--primary-color) 88%, #111111) !important;
	color: var(--on-primary, #ffffff) !important;
	font-family: var(--main-font);
	font-weight: 600;
	letter-spacing: 0.2px;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.section-slide .item-slick1 .layer-slick1 .size-101:hover {
	background-color: color-mix(in srgb, var(--primary-color) 76%, #111111) !important;
	border-color: color-mix(in srgb, var(--primary-color) 40%, #ffffff) !important;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.rs1-slick1 .item-slick1 {
	height: calc(100vh - 84px);
}

.rs2-slick1 .item-slick1 {
	height: 100vh;
}

@media ( max-width : 991px) {
	.item-slick1:not(.item-slick1--home) {
		height: calc(100svh - 70px) !important;
	}

	.home-page .home-theme2__hero,
	.home-page .section-slide--home,
	.home-page .home-cats-wrap {
		overflow-anchor: none;
	}
}

/* Home slider — split image / copy card */
.section-slide--home .item-slick1--home::before {
	display: none;
}

.section-slide--home .home-slide-card__mobile-title {
	display: none;
}

.section-slide--home a.home-slide-card {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.section-slide--home a.home-slide-card:hover,
.section-slide--home a.home-slide-card:focus-visible {
	color: inherit;
	text-decoration: none;
}

.section-slide--home .home-slide-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

/* Home slider arrows — always visible on compact (card) layout */
@media (max-width: 991px) {
	.section-slide--home .wrap-slick1--home .arrow-slick1,
	.section-slide--home .wrap-slick1--home:hover .arrow-slick1 {
		opacity: 1 !important;
	}
}

/* Mobile + tablet: compact card (image + title/CTA below — not full viewport) */
@media ( max-width : 991px) {
	.section-slide--home .item-slick1--home {
		height: auto !important;
		min-height: 0 !important;
		background: none !important;
	}

	.section-slide--home .item-slick1--home::before {
		display: none;
	}

	.section-slide--home .home-slide-card {
		display: flex;
		flex-direction: column;
		background: #fff;
	}

	.section-slide--home .home-slide-card__media {
		position: relative;
		width: 100%;
		aspect-ratio: 6 / 5;
		max-height: min(62vw, 360px);
		overflow: hidden;
	}

	.section-slide--home .home-slide-card__index {
		display: none;
	}

	.section-slide--home .home-slide-card__body {
		padding: 10px 14px 8px;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.section-slide--home .home-slide-card__copy {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		min-height: 5.5rem;
	}

	.section-slide--home .home-slide-card__copy > .layer-slick1:not(:has(.home-slide-card__cta)) {
		display: none !important;
	}

	.section-slide--home .home-slide-card__label,
	.section-slide--home .home-slide-card__headline {
		display: none !important;
	}

	.section-slide--home .home-slide-card__mobile-title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-family: var(--accent-font);
		font-size: clamp(16px, 4.6vw, 20px);
		line-height: 1.26;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		margin: 0;
		padding: 0;
		max-width: 100%;
		min-height: calc(1.22em * 2);
		color: #111;
	}

	.section-slide--home .home-slide-card__copy > .layer-slick1:has(.home-slide-card__cta) {
		visibility: visible !important;
		animation: none !important;
		-webkit-animation: none !important;
		margin-top: auto;
		padding-top: 10px;
	}

	.section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101 {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-width: 0 !important;
		width: auto;
		height: 38px !important;
		padding: 0 20px !important;
		border-radius: 999px !important;
		background: var(--primary-color, #111) !important;
		border: none !important;
		color: var(--on-primary, #fff) !important;
		font-weight: 600;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		box-shadow: none !important;
		transition: none !important;
		transform: none !important;
	}

	.section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101:hover {
		background: var(--primary-color, #111) !important;
		color: var(--on-primary, #fff) !important;
		border-color: transparent !important;
		transform: none !important;
		box-shadow: none !important;
	}

	.section-slide--home .home-slide-card__cta i,
	.section-slide--home .home-slide-card__cta-icon {
		display: none;
	}

	.section-slide--home .wrap-slick1--home .arrow-slick1 {
		display: none !important;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		z-index: 2;
		width: 100%;
		transform: none;
		padding: 0 0 12px;
		pointer-events: none;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .slick1-dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		margin: 0;
		padding: 0;
		list-style: none;
		pointer-events: auto;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .slick1-dots li {
		max-width: none;
		width: auto;
		height: auto;
		margin: 0;
		padding: 8px 3px;
		line-height: 0;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .home-hero-dot {
		display: block;
		width: 7px;
		height: 7px;
		padding: 0;
		border: 0;
		border-radius: 999px;
		background: #cfcfcf;
		box-shadow: none;
		transition: width 0.25s ease, background 0.25s ease;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .slick1-dots li.slick-active .home-hero-dot {
		width: 18px;
		background: #111;
	}

	/*
	 * Theme 1 mobile/tablet — unified hero (overlay title/CTA on photo)
	 * Keep canvas white — no dark gutters / black stripes between header, cats, slider.
	 */
	.home-page:not(.home-page--theme-2) .home-cats-wrap {
		background: #fff;
		padding-top: 0;
	}

	.home-page:not(.home-page--theme-2) .home-cats-wrap__bar {
		background: #fff;
		margin-bottom: 0;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home {
		position: relative;
		margin: 0;
		padding-left: 12px !important;
		padding-right: 12px !important;
		background: #fff;
		isolation: isolate;
		/* Match Tema 2 mobile hero height */
		height: clamp(350px, 98vw, 570px);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .wrap-slick1--home {
		position: relative;
		height: 100%;
		border-radius: 14px;
		overflow: hidden;
		box-shadow:
			0 1px 0 rgba(255, 255, 255, 0.85) inset,
			0 8px 24px -14px rgba(15, 23, 42, 0.18);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .slick-slider,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-list,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-track,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-slide,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-slide > div {
		height: 100% !important;
		min-height: 0 !important;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .item-slick1--home {
		height: 100% !important;
		min-height: 0 !important;
		background: #fff !important;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card {
		display: block;
		position: relative;
		height: 100%;
		min-height: 0;
		background: #fff;
		overflow: hidden;
		border-radius: 14px;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__media {
		position: absolute;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		max-height: none;
		overflow: hidden;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__img {
		position: absolute;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		display: block;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__media::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.08) 48%,
			rgba(0, 0, 0, 0.42) 78%,
			rgba(0, 0, 0, 0.58) 100%);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__body {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
		padding: 0 clamp(14px, 4vw, 20px) clamp(36px, 8vw, 44px);
		text-align: center;
		background: transparent;
		pointer-events: none;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__copy {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 28rem;
		min-height: 0;
		pointer-events: auto;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__mobile-title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-family: var(--accent-font);
		font-size: clamp(1.05rem, 4.6vw, 1.35rem);
		line-height: 1.22;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		margin: 0;
		padding: 0;
		max-width: 100%;
		min-height: 0;
		color: #fff;
		text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
		text-wrap: balance;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__copy > .layer-slick1:has(.home-slide-card__cta) {
		visibility: visible !important;
		animation: none !important;
		-webkit-animation: none !important;
		margin-top: 12px;
		padding-top: 0;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101 {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 6px;
		min-width: 0 !important;
		width: auto;
		height: 40px !important;
		padding: 0 20px !important;
		border-radius: 999px !important;
		background: color-mix(in srgb, var(--primary-color, #111) 92%, #000) !important;
		border: 1px solid color-mix(in srgb, var(--on-primary, #fff) 28%, transparent) !important;
		color: var(--on-primary, #fff) !important;
		font-weight: 650;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		box-shadow:
			0 1px 0 rgba(255, 255, 255, 0.22) inset,
			0 10px 22px -10px rgba(0, 0, 0, 0.45) !important;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		transition: transform 0.2s ease, filter 0.2s ease !important;
		transform: none !important;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101:hover,
	.home-page:not(.home-page--theme-2) .section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101:focus-visible {
		filter: brightness(1.06);
		transform: translateY(-1px) !important;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 10px;
		top: auto;
		z-index: 6;
		width: 100%;
		transform: none;
		padding: 0;
		margin: 0;
		background: transparent !important;
		pointer-events: none;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .slick1-dots {
		pointer-events: auto;
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .home-hero-dot {
		width: 7px;
		height: 7px;
		background: rgba(255, 255, 255, 0.42);
		box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
	}

	.home-page:not(.home-page--theme-2) .home-theme1-dots .slick1-dots li.slick-active .home-hero-dot {
		width: 20px;
		background: #fff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home + .home-promo-rotator {
		position: relative;
		z-index: 5;
		margin-top: 0;
		padding-top: 0.65rem;
		padding-bottom: clamp(0.75rem, 2vw, 1rem);
		background: #fff;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home + .home-promo-rotator .home-promo-rotator__viewport {
		box-shadow:
			0 4px 14px rgba(17, 17, 17, 0.06),
			0 18px 40px -22px rgba(17, 17, 17, 0.2);
	}
}

@media ( min-width : 768px) and (max-width : 991px) {
	.section-slide--home .home-slide-card__media {
		aspect-ratio: 16 / 11;
		max-height: min(50vw, 380px);
	}

	.section-slide--home .home-slide-card__body {
		padding: 12px 18px 10px;
	}

	.section-slide--home .home-slide-card__mobile-title {
		font-size: clamp(18px, 2.8vw, 22px);
	}

	/* Match Tema 2 tablet hero height */
	.home-page:not(.home-page--theme-2) .section-slide--home {
		height: clamp(378px, 54svh, 540px);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__media {
		aspect-ratio: auto;
		max-height: none;
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__body {
		padding: 0 clamp(22px, 4vw, 36px) clamp(40px, 6vw, 48px);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card__mobile-title {
		font-size: clamp(1.2rem, 2.8vw, 1.5rem);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home + .home-promo-rotator {
		margin-top: 0;
	}
}

/* Mobile + tablet: parmak kaydırma için görsel sürüklenmesin */
@media (max-width: 991px) {
	.section-slide--home .slick-list {
		touch-action: pan-y;
		-webkit-user-select: none;
		user-select: none;
	}

	.section-slide--home .home-slide-card__img,
	.section-slide--home .home-slide-card__media {
		-webkit-user-drag: none;
		user-select: none;
		-webkit-touch-callout: none;
	}

	.section-slide--home .home-slide-card__img {
		pointer-events: none;
	}
}

/* Home slider — desktop overlay (fits remaining viewport under sticky header) */
@media ( min-width : 992px) {
	.section-slide--home {
		--home-header-offset: 124px;
		--home-hero-h: calc(100vh - var(--home-header-offset));
		--home-hero-pad-x: clamp(28px, 4.4vw, 72px);
		--home-hero-pad-t: max(20px, 3.2vh);
		--home-hero-pad-b: max(72px, 10vh, calc(env(safe-area-inset-bottom, 0px) + 56px));
	}

	@supports (height: 100dvh) {
		.section-slide--home {
			--home-hero-h: calc(100dvh - var(--home-header-offset));
		}
	}

	.home-page:not(.home-page--theme-2) .section-slide--home {
		height: var(--home-hero-h);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .wrap-slick1--home,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-slider,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-list,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-track,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-slide,
	.home-page:not(.home-page--theme-2) .section-slide--home .slick-slide > div,
	.home-page:not(.home-page--theme-2) .section-slide--home .item-slick1--home,
	.home-page:not(.home-page--theme-2) .section-slide--home .home-slide-card {
		height: var(--home-hero-h);
		max-height: var(--home-hero-h);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home .item-slick1--home {
		height: var(--home-hero-h) !important;
		min-height: 0;
	}

	.section-slide--home .home-slide-card {
		display: block;
		width: 100%;
		position: relative;
		height: 100%;
		min-height: inherit;
		overflow: hidden;
		background: #111;
	}

	.section-slide--home .home-slide-card__media {
		position: absolute;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		max-height: none;
		aspect-ratio: auto;
		overflow: hidden;
	}

	.section-slide--home .home-slide-card__img {
		z-index: 0;
		opacity: 1;
		visibility: visible;
	}

	.section-slide--home .home-slide-card__media::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background:
			radial-gradient(120% 80% at 50% 100%, rgba(0, 0, 0, 0.42) 0%, transparent 55%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.58) 100%);
	}

	.section-slide--home .home-slide-card__index,
	.section-slide--home .home-slide-card__mobile-title {
		display: none !important;
	}

	.section-slide--home .home-slide-card__body {
		position: absolute;
		inset: 0;
		z-index: 2;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: var(--home-hero-pad-t) var(--home-hero-pad-x) var(--home-hero-pad-b);
		background: transparent;
		pointer-events: none;
	}

	.section-slide--home .home-slide-card__copy {
		position: relative;
		z-index: 2;
		box-sizing: border-box;
		width: min(34rem, calc(100% - 8px));
		max-width: 100%;
		margin: 0;
		padding: 0;
		text-align: left;
		pointer-events: auto;
		transform: none;
	}

	.section-slide--home .home-slide-card__copy .layer-slick1 {
		transform: none !important;
	}

	.section-slide--home .home-slide-card__label,
	.section-slide--home .home-slide-card__headline {
		display: block !important;
		color: #fff !important;
		text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	}

	.section-slide--home .home-slide-card__label {
		font-family: var(--main-font);
		font-size: clamp(0.92rem, 1.55vw, 1.14rem);
		line-height: 1.3;
		font-weight: 600;
		max-width: 100%;
		letter-spacing: 0.2em;
		text-transform: uppercase;
		opacity: 0.92;
	}

	.section-slide--home .home-slide-card__headline {
		font-family: var(--accent-font);
		font-size: clamp(1.5rem, min(3.6vw, 5.6vh), 2.85rem);
		line-height: 1.12;
		font-weight: 500;
		font-style: italic;
		max-width: 100%;
		letter-spacing: 0;
		padding-top: 8px !important;
		padding-bottom: 18px !important;
	}

	.section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101 {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 0;
		min-width: 168px;
		height: 44px;
		padding: 0 22px !important;
		border-radius: 999px !important;
		background: transparent !important;
		border: 1px solid rgba(255, 255, 255, 0.88) !important;
		color: #fff !important;
		text-transform: uppercase;
		letter-spacing: 0.14em;
		font-weight: 600;
		box-shadow: none;
		white-space: nowrap;
	}

	.section-slide--home .home-slide-card__cta-icon {
		display: none;
	}

	.section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101:hover {
		background: #fff !important;
		color: #111 !important;
		border-color: #fff !important;
		transform: none;
	}

	.section-slide--home .wrap-slick1--home .arrow-slick1 {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		opacity: 0 !important;
		width: 44px;
		height: 44px;
		font-size: 20px;
		line-height: 1;
		color: #fff;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 50%;
		background: rgba(17, 17, 17, 0.28);
		border: 1px solid rgba(255, 255, 255, 0.22);
		box-shadow: none;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		transition: opacity 0.25s ease, background 0.2s ease;
	}

	.section-slide--home .wrap-slick1--home:hover .arrow-slick1,
	.section-slide--home .wrap-slick1--home:focus-within .arrow-slick1 {
		opacity: 1 !important;
	}

	.section-slide--home .wrap-slick1--home .arrow-slick1:hover {
		background: rgba(17, 17, 17, 0.72);
		color: #fff;
		box-shadow: none;
		transform: translateY(-50%);
	}

	.section-slide--home .wrap-slick1--home .prev-slick1 {
		left: clamp(16px, 2.5vw, 40px);
	}

	.section-slide--home .wrap-slick1--home .next-slick1 {
		right: clamp(16px, 2.5vw, 40px);
	}
}

@media (min-width: 992px) and (hover: none) {
	.section-slide--home .wrap-slick1--home .arrow-slick1 {
		opacity: 1 !important;
	}
}

@media (min-width: 992px) and (max-height: 760px) {
	.section-slide--home {
		--home-hero-pad-b: max(48px, 7.5vh, calc(env(safe-area-inset-bottom, 0px) + 36px));
		--home-hero-pad-x: clamp(24px, 3.6vw, 48px);
	}

	.section-slide--home .home-slide-card__headline {
		font-size: clamp(1.35rem, 4.6vh, 2.1rem);
		padding-bottom: 12px !important;
	}

	.section-slide--home .item-slick1 .layer-slick1 .home-slide-card__cta.size-101 {
		height: 40px;
		min-width: 148px;
	}
}

.arrow-slick1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	font-size: 80px;
	color: rgba(0, 0, 0, 0.3);
	position: absolute;
	opacity: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 200;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
	opacity: 1;
}

.arrow-slick1:hover {
	color: #7280e0;
}

.next-slick1 {
	right: 50px;
	left: auto;
}

.prev-slick1 {
	left: 50px;
	right: auto;
}

@media ( max-width : 991px) {
	.next-slick1 {
		right: 15px;
	}
	.prev-slick1 {
		left: 15px;
	}
}

/*---------------------------------------------*/
.rs2-slick1 .arrow-slick1 {
	color: rgba(255, 255, 255, 0.3);
}

.rs2-slick1 .arrow-slick1:hover {
	color: #7280e0;
}

.wrap-slick1-dots {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 60px;
}

.slick1-dots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}

.slick1-dots li {
	max-width: 190px;
	position: relative;
	cursor: pointer;
	margin-right: 1px;
}

.slick1-dots li img {
	width: 100%;
}

.caption-dots-slick1 {
	font-family: Poppins-ExtraLight;
	font-size: 16px;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 0;
}

.slick1-dots li:hover .caption-dots-slick1 {
	opacity: 1;
}

.slick1-dots li.slick-active .caption-dots-slick1 {
	opacity: 1;
}

@media ( max-width : 575px) {
	.caption-dots-slick1 {
		font-size: 13px;
	}
	.wrap-slick1-dots {
		bottom: 25px;
	}
}

/* Home promo rotator — full-width banner below hero slider */
.home-promo-rotator {
	--promo-radius: clamp(16px, 2.4vw, 22px);
	--promo-inset: clamp(4px, 1.2vw, 8px);
	--promo-nav-size: 36px;
	--promo-nav-inset: clamp(6px, 1.6vw, 12px);
	position: relative;
	isolation: isolate;
	overflow: visible;
	padding: clamp(0.75rem, 2vw, 1.25rem) var(--promo-inset) clamp(0.85rem, 2.2vw, 1.35rem);
	background: #ffffff;
}

.home-promo-rotator::before {
	content: none;
}

.home-promo-rotator__shell {
	width: 100%;
}

.home-promo-rotator__stage {
	position: relative;
	width: 100%;
	overflow: visible;
}

.home-promo-rotator__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--promo-radius);
	box-shadow:
		0 4px 14px rgba(17, 17, 17, 0.05),
		0 26px 60px -34px rgba(17, 17, 17, 0.2);
	transition: box-shadow 0.28s ease;
}

.home-promo-rotator__stage:hover .home-promo-rotator__viewport,
.home-promo-rotator__stage:focus-within .home-promo-rotator__viewport {
	box-shadow:
		0 6px 18px rgba(17, 17, 17, 0.07),
		0 32px 68px -30px rgba(17, 17, 17, 0.22);
}

.home-promo-rotator__track {
	display: flex;
	width: 100%;
	will-change: transform;
}

.home-promo-rotator__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
}

.home-promo-rotator__card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--promo-radius);
	background: #fff;
	box-shadow: none;
	color: inherit;
	text-decoration: none;
	isolation: isolate;
}

a.home-promo-rotator__card:hover,
a.home-promo-rotator__card:focus-visible {
	color: inherit;
	text-decoration: none;
	box-shadow: none;
}

button.home-promo-rotator__card {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	font: inherit;
	text-align: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

button.home-promo-rotator__card:focus-visible {
	outline: 2px solid color-mix(in srgb, var(--primary-color, #717fe0) 55%, transparent);
	outline-offset: 2px;
}

.home-promo-rotator__card--lucky-wheel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: clamp(176px, 32vw, 236px);
	padding: clamp(18px, 4vw, 28px) clamp(16px, 3.5vw, 32px) clamp(22px, 4.5vw, 30px);
	border: 1.5px solid color-mix(in srgb, var(--primary-color, #717fe0) 38%, #e2e8f0);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 14px 32px -16px color-mix(in srgb, var(--primary-color, #717fe0) 42%, transparent);
	overflow: visible;
}

.home-promo-rotator__card--lucky-wheel .home-promo-rotator__premium-bg {
	background:
		radial-gradient(ellipse 95% 85% at 92% 12%,
			color-mix(in srgb, var(--primary-color, #717fe0) 48%, transparent) 0%,
			transparent 55%),
		radial-gradient(ellipse 70% 60% at 6% 92%,
			color-mix(in srgb, var(--primary-color, #717fe0) 22%, transparent) 0%,
			transparent 55%),
		linear-gradient(145deg,
			color-mix(in srgb, var(--primary-color, #717fe0) 22%, #fff) 0%,
			#ffffff 42%,
			color-mix(in srgb, var(--primary-color, #717fe0) 12%, #fff) 100%);
	border-radius: inherit;
}

.home-promo-rotator__card--lucky-wheel .home-promo-rotator__body {
	flex: 0 1 auto;
	width: auto;
	max-width: min(42rem, 100%);
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 0;
	gap: 0.5rem;
}

.home-promo-rotator__lucky-heading {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 1.6vw, 18px);
	width: 100%;
}

/* Promo çark = lucky-wheel-fab ile aynı soft dock UI */
.home-promo-rotator__lucky-visual {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: clamp(64px, 14vw, 88px);
	height: clamp(64px, 14vw, 88px);
	border-radius: calc(var(--fab-dock-radius, 18px) + 6px);
	background: var(--fab-dock-bg);
	border: var(--fab-dock-border);
	box-shadow:
		var(--fab-dock-shadow),
		0 0 0 5px color-mix(in srgb, var(--primary-color, #717fe0) 14%, transparent);
	isolation: isolate;
	overflow: visible;
	pointer-events: none;
}

.home-promo-rotator__lucky-glow {
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	background: radial-gradient(circle at 50% 42%,
		color-mix(in srgb, var(--primary-color, #f5c518) 48%, transparent) 0%,
		transparent 70%);
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
	animation: luckyWheelFabGlow 2.8s ease-in-out infinite;
}

.home-promo-rotator__lucky-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 0;
	filter: drop-shadow(0 2px 3px rgba(15, 23, 42, 0.16));
}

.home-promo-rotator__lucky-svg {
	display: block;
	width: 62%;
	height: auto;
	overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
	.home-promo-rotator__lucky-glow {
		animation: none;
	}
}

.home-promo-rotator__card--lucky-wheel .home-promo-rotator__kicker {
	font-size: clamp(0.75rem, 2.4vw, 0.875rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0f172a;
	opacity: 0.72;
}

.home-promo-rotator__card--lucky-wheel .home-promo-rotator__title {
	flex: 0 1 auto;
	margin: 0;
	color: #0f172a;
	font-size: clamp(1.05rem, 3.4vw, 1.45rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	text-align: center;
	text-shadow: none;
	/* Premium line-clamp / ellipsis kapalı — tam başlık */
	display: block;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	overflow: visible;
	text-overflow: clip;
	max-width: none;
}

.home-promo-rotator__lucky-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin-top: 0.35rem;
	min-height: 2.45rem;
	padding: 0.55rem 1.2rem;
	border-radius: 999px;
	font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	color: #0f172a;
	background:
		linear-gradient(180deg,
			color-mix(in srgb, var(--primary-color, #717fe0) 88%, #fff) 0%,
			var(--primary-color, #717fe0) 100%);
	border: none;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.55) inset,
		0 12px 24px -10px color-mix(in srgb, var(--primary-color, #717fe0) 70%, transparent),
		0 0 0 1px color-mix(in srgb, var(--primary-color, #717fe0) 35%, transparent);
}

.home-promo-rotator__card--static {
	pointer-events: none;
}

.home-promo-rotator__card--image {
	min-height: clamp(120px, 28vw, 220px);
}

.home-promo-rotator__media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 1;
	max-height: 280px;
	overflow: hidden;
}

.home-promo-rotator__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-promo-rotator__media-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(17, 17, 17, 0.34) 0%,
		rgba(17, 17, 17, 0.08) 42%,
		transparent 68%);
	pointer-events: none;
}

.home-promo-rotator__card--image .home-promo-rotator__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: clamp(14px, 3vw, 24px) clamp(16px, 3.5vw, 28px);
	background: linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.56) 100%);
}

.home-promo-rotator__card--image .home-promo-rotator__kicker,
.home-promo-rotator__card--image .home-promo-rotator__title {
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.home-promo-rotator__card--premium {
	min-height: clamp(148px, 26vw, 210px);
	display: flex;
	align-items: stretch;
}

.home-promo-rotator__card--premium.home-promo-rotator__card--lucky-wheel {
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.home-promo-rotator__card--premium.home-promo-rotator__card--lucky-wheel .home-promo-rotator__body {
	align-items: center;
	text-align: center;
	width: auto;
	max-width: min(46rem, 100%);
	padding: 0;
}

.home-promo-rotator__card--premium.home-promo-rotator__card--lucky-wheel .home-promo-rotator__title {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
	max-width: none;
}

.home-promo-rotator__card--premium::after {
	content: "";
	position: absolute;
	top: 0;
	left: 8%;
	right: 8%;
	z-index: 2;
	height: 2px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg,
		transparent,
		color-mix(in srgb, var(--primary-color, #222) 78%, #ffffff),
		transparent);
	opacity: 0.88;
	pointer-events: none;
}

.home-promo-rotator__premium-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg,
			color-mix(in srgb, var(--primary-color, #222) 5%, #ffffff) 0%,
			transparent 38%),
		radial-gradient(ellipse 95% 75% at 10% 0%,
			color-mix(in srgb, var(--primary-color, #222) 9%, #ffffff) 0%,
			transparent 58%),
		radial-gradient(ellipse 85% 65% at 100% 100%,
			color-mix(in srgb, var(--primary-color, #222) 6%, #ffffff) 0%,
			transparent 55%),
		#ffffff;
}

.home-promo-rotator__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.55rem;
	width: 100%;
	padding: clamp(16px, 3.5vw, 28px) clamp(18px, 4vw, 32px);
}

.home-promo-rotator__card--premium .home-promo-rotator__body {
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: clamp(20px, 3.6vw, 34px) clamp(14px, 2.8vw, 28px);
}

.home-promo-rotator__kicker {
	margin: 0;
	font-family: var(--main-font);
	font-size: clamp(10px, 2.4vw, 12px);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--primary-color, #222) 72%, #555555);
}

.home-promo-rotator__card--premium .home-promo-rotator__kicker {
	max-width: 36rem;
	font-size: clamp(11px, 2.7vw, 13px);
	letter-spacing: 0.08em;
	text-transform: none;
	font-weight: 500;
	line-height: 1.5;
	color: color-mix(in srgb, var(--primary-color, #222) 58%, #444444);
	text-wrap: balance;
}

.home-promo-rotator__title {
	margin: 0;
	font-family: var(--accent-font);
	font-size: clamp(18px, 4.2vw, 28px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #111111;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.home-promo-rotator__card--premium .home-promo-rotator__title {
	max-width: 42rem;
	font-size: clamp(20px, 4.6vw, 30px);
	line-height: 1.24;
	letter-spacing: 0.03em;
	-webkit-line-clamp: 3;
	text-wrap: balance;
}

.home-promo-rotator__nav {
	display: none !important;
}

/* Dots — bottom-right inside viewport (same as home-spotlight) */
.home-promo-rotator__dots.wrap-slick1-dots {
	position: absolute;
	top: auto;
	right: 0.55rem;
	bottom: 0.45rem;
	left: auto;
	z-index: 6;
	width: auto;
	pointer-events: auto;
	margin: 0;
}

.home-promo-rotator__dots .slick1-dots {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-promo-rotator__dots .slick1-dots li {
	max-width: none;
	width: auto;
	height: auto;
	margin: 0;
	padding: 4px 2px;
	line-height: 0;
}

.home-promo-rotator__dots .home-hero-dot {
	display: block;
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 28%, #cfcfcf);
	box-shadow: none;
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease;
}

.home-promo-rotator__dots .slick1-dots li.slick-active .home-hero-dot {
	width: 18px;
	background: var(--primary-color, #717fe0);
}

.home-promo-rotator__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	height: 3px;
	margin: 0;
	overflow: hidden;
	border-radius: 0;
	pointer-events: none;
	background: color-mix(in srgb, var(--primary-color, #717fe0) 14%, rgba(23, 23, 23, 0.06));
}

.home-promo-rotator__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg,
		color-mix(in srgb, var(--primary-color, #717fe0) 75%, #111),
		var(--primary-color, #717fe0));
	transform-origin: left center;
}

.home-promo-rotator__progress-bar.is-running {
	animation: home-promo-rotator-progress var(--promo-display-ms, 5000ms) linear forwards;
}

@keyframes home-promo-rotator-progress {
	from { width: 0; }
	to { width: 100%; }
}

.home-promo-rotator--single .home-promo-rotator__nav,
.home-promo-rotator--single .home-promo-rotator__progress,
.home-promo-rotator--single .home-promo-rotator__dots {
	display: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.home-promo-rotator__progress-bar {
		animation: none !important;
	}
}

@keyframes home-promo-rotator-single-glow {
	0%, 100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.02);
	}
}

.home-promo-rotator--single .home-promo-rotator__card {
	animation: home-promo-rotator-single-glow 5s ease-in-out infinite;
}

.home-promo-rotator--single .home-promo-rotator__viewport {
	animation: home-promo-rotator-viewport-glow 5s ease-in-out infinite;
}

@keyframes home-promo-rotator-viewport-glow {
	0%, 100% {
		box-shadow:
			0 4px 14px rgba(17, 17, 17, 0.05),
			0 26px 60px -34px rgba(17, 17, 17, 0.2);
	}
	50% {
		box-shadow:
			0 6px 18px rgba(17, 17, 17, 0.07),
			0 30px 64px -28px color-mix(in srgb, var(--primary-color, #222) 16%, rgba(17, 17, 17, 0.14));
	}
}

.home-cats-wrap:has(.home-promo-rotator) {
	background: #ffffff;
	overflow: visible;
}

.home-cats-wrap .home-promo-rotator {
	margin-inline: -15px;
	padding-inline: var(--promo-inset);
}

/* Tema 1: hero block → promo/spotlight band separation (same surface, no white strip) */
.home-page:not(.home-page--theme-2) .home-cats-wrap + .home-promo-spotlight {
	margin-top: 0;
	padding-top: clamp(1.15rem, 2.4vw, 1.85rem);
	background: #fff;
}

@media (max-width: 991px) {
	.home-cats-wrap:has(.home-promo-rotator) {
		padding-bottom: clamp(0.6rem, 2vw, 0.85rem);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator {
		padding-bottom: clamp(0.5rem, 1.8vw, 0.75rem);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator__viewport {
		box-shadow:
			0 3px 12px rgba(17, 17, 17, 0.045),
			0 10px 28px -8px rgba(17, 17, 17, 0.085),
			0 22px 52px -30px rgba(17, 17, 17, 0.14);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator__stage:hover .home-promo-rotator__viewport,
	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator__stage:focus-within .home-promo-rotator__viewport {
		box-shadow:
			0 4px 14px rgba(17, 17, 17, 0.055),
			0 14px 36px -6px rgba(17, 17, 17, 0.1),
			0 26px 58px -26px rgba(17, 17, 17, 0.17);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator--single .home-promo-rotator__viewport {
		animation: home-promo-rotator-viewport-glow 5s ease-in-out infinite;
	}

	.home-promo-rotator__slide {
		display: flex;
		align-items: stretch;
	}

	.home-promo-rotator__card {
		flex: 1 1 auto;
		width: 100%;
		min-height: 100%;
	}
}

@media (min-width: 992px) {
	.home-cats-wrap:has(.home-promo-rotator) {
		padding-bottom: clamp(0.85rem, 1.5vw, 1.25rem);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator {
		padding-bottom: clamp(0.7rem, 1.2vw, 1rem);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator__viewport {
		box-shadow:
			0 4px 14px rgba(17, 17, 17, 0.05),
			0 12px 32px -8px rgba(17, 17, 17, 0.09),
			0 28px 64px -32px rgba(17, 17, 17, 0.16);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator__stage:hover .home-promo-rotator__viewport,
	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator__stage:focus-within .home-promo-rotator__viewport {
		box-shadow:
			0 6px 18px rgba(17, 17, 17, 0.07),
			0 16px 40px -6px rgba(17, 17, 17, 0.11),
			0 34px 72px -28px rgba(17, 17, 17, 0.2);
	}

	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator--single .home-promo-rotator__viewport {
		animation: home-promo-rotator-viewport-glow 5s ease-in-out infinite;
	}

	.home-promo-rotator__slide {
		display: flex;
		align-items: stretch;
	}

	.home-promo-rotator__card {
		flex: 1 1 auto;
		width: 100%;
		min-height: 100%;
	}
}

@keyframes home-promo-rotator-viewport-glow-tight {
	0%, 100% {
		box-shadow:
			0 2px 8px rgba(17, 17, 17, 0.035),
			0 14px 36px -22px rgba(17, 17, 17, 0.11);
	}
	50% {
		box-shadow:
			0 4px 12px rgba(17, 17, 17, 0.05),
			0 18px 42px -18px color-mix(in srgb, var(--primary-color, #222) 12%, rgba(17, 17, 17, 0.1));
	}
}

.home-page--theme-2 .home-promo-rotator {
	background: transparent;
}

/* Theme 2 stage is 2-col (cats | hero); promo must span full width below */
.home-theme2__stage > .home-promo-rotator {
	grid-column: 1 / -1;
	width: 100%;
	min-width: 0;
}

.home-theme2__stage .home-promo-rotator__shell {
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	max-width: none;
}

/* Block rhythm: hero slider → promo band → site slogan */
@media (max-width: 991px) {
	.home-page:not(.home-page--theme-2) .section-slide--home:has(+ .home-promo-rotator) .home-slide-card__body {
		padding-bottom: clamp(34px, 8vw, 42px);
	}

	.home-page:not(.home-page--theme-2) .section-slide--home:has(+ .home-promo-rotator) .home-theme1-dots {
		bottom: 10px;
		padding-bottom: 0;
		margin-bottom: 0;
		background: transparent !important;
	}
}

@media (min-width: 992px) {
	.home-promo-rotator {
		--promo-inset: clamp(10px, 1.6vw, 18px);
		--promo-nav-size: 42px;
		--promo-nav-inset: clamp(12px, 1.4vw, 18px);
		padding-top: clamp(0.9rem, 1.8vw, 1.35rem);
		padding-bottom: clamp(0.7rem, 1.2vw, 1rem);
	}

	.home-promo-rotator__shell {
		max-width: min(100%, 1320px);
		width: 100%;
		margin: 0 auto;
	}

	.home-cats-wrap .home-promo-rotator {
		margin-inline: 0;
	}

	.home-promo-rotator__media {
		aspect-ratio: 3.4 / 1;
		max-height: 340px;
	}

	.home-promo-rotator__card--premium {
		min-height: 188px;
	}

	.home-promo-rotator__card--premium .home-promo-rotator__title {
		font-size: clamp(31px, 2.86vw, 42px);
	}

	.home-promo-rotator__card--lucky-wheel {
		min-height: 188px;
		padding: clamp(22px, 2.4vw, 34px) clamp(28px, 3vw, 48px);
	}

	.home-promo-rotator__card--lucky-wheel .home-promo-rotator__title {
		font-size: clamp(1.55rem, 2.2vw, 2.15rem);
		text-align: left;
	}

	.home-promo-rotator__lucky-heading {
		flex-wrap: nowrap;
		gap: clamp(14px, 1.4vw, 22px);
	}

	.home-promo-rotator__lucky-visual {
		width: 96px;
		height: 96px;
	}
}

@media (max-width: 991px) {
	.home-promo-rotator {
		--promo-inset: clamp(12px, 3.2vw, 16px);
		--promo-nav-size: 38px;
		--promo-nav-inset: 12px;
		padding-top: 0.7rem;
	}

	.home-cats-wrap .home-promo-rotator {
		margin-inline: 0;
		padding-inline: var(--promo-inset);
	}

	.home-promo-rotator__shell {
		overflow: visible;
	}

	.home-promo-rotator:not(.home-promo-rotator--single) .home-promo-rotator__card--premium .home-promo-rotator__body {
		padding-inline: clamp(46px, 13vw, 54px);
	}

	/* Mobil çark promo: metin sol + ikon sağ, rahat yükseklik, ellipsis yok */
	.home-promo-rotator__card--lucky-wheel,
	.home-promo-rotator__card--premium.home-promo-rotator__card--lucky-wheel,
	.home-theme2 .home-promo-rotator .home-promo-rotator__card--lucky-wheel {
		min-height: 0;
		height: auto;
		padding: 20px 16px 24px;
		justify-content: center;
	}

	.home-promo-rotator .home-promo-rotator__card--lucky-wheel .home-promo-rotator__body,
	.home-promo-rotator__card--premium.home-promo-rotator__card--lucky-wheel .home-promo-rotator__body {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"kicker visual"
			"title  visual"
			"cta    visual";
		align-items: center;
		column-gap: 12px;
		row-gap: 0.4rem;
		width: 100%;
		max-width: none;
		padding: 0;
		text-align: left;
	}

	.home-promo-rotator__card--lucky-wheel .home-promo-rotator__kicker {
		grid-area: kicker;
		justify-self: start;
		text-align: left;
	}

	.home-promo-rotator__card--lucky-wheel .home-promo-rotator__lucky-heading {
		display: contents;
	}

	.home-promo-rotator__card--lucky-wheel .home-promo-rotator__title {
		grid-area: title;
		justify-self: start;
		text-align: left;
		font-size: clamp(1rem, 4.2vw, 1.2rem);
		line-height: 1.28;
		text-wrap: balance;
	}

	.home-promo-rotator__card--lucky-wheel .home-promo-rotator__lucky-visual {
		grid-area: visual;
		align-self: center;
		width: 68px;
		height: 68px;
	}

	.home-promo-rotator__card--lucky-wheel .home-promo-rotator__lucky-cta {
		grid-area: cta;
		justify-self: start;
		margin-top: 0.15rem;
		min-height: 2.35rem;
		padding: 0.5rem 1.05rem;
	}

	.home-promo-rotator__card--premium {
		min-height: clamp(128px, 24vw, 168px);
	}

	.home-promo-rotator__viewport {
		touch-action: pan-y;
		-webkit-user-select: none;
		user-select: none;
	}

	.home-promo-rotator__viewport.is-promo-dragging {
		cursor: grabbing;
	}

	.home-promo-rotator__img {
		pointer-events: none;
		-webkit-user-drag: none;
		user-select: none;
		-webkit-touch-callout: none;
	}

	.home-promo-rotator__media {
		aspect-ratio: 2.35 / 1;
		max-height: 240px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-promo-rotator--single .home-promo-rotator__card,
	.home-promo-rotator--single .home-promo-rotator__viewport,
	.home-cats-wrap:has(.home-promo-rotator) .home-promo-rotator--single .home-promo-rotator__viewport {
		animation: none;
	}

	.home-promo-rotator__track {
		transition: none !important;
	}
}
