body > .site-header,
body > #site-header,
body header.site-header,
body .site-main,
body #content,
body .site-footer,
body footer.site-footer {
	display: none !important;
}

.fm-header,
.fm-header * {
	box-sizing: border-box;
}

.fm-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0);
	z-index: 9999;
	width: 100%;
	background: var(--fm-color-surface);
	border-bottom: 2px solid var(--fm-color-accent);
	font-family: "Poppins", sans-serif;
	color: var(--fm-color-text);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}

.fm-header__top {
	display: grid;
	grid-template-columns: minmax(300px, 615px) minmax(260px, 580px) auto;
	align-items: center;
	gap: 38px;
	min-height: 82px;
	padding-right: clamp(20px, 7vw, 138px);
	background: #ffffff;
}

.fm-header__brand {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	min-height: 82px;
	padding: 8px 56px 10px 24px;
	background: var(--fm-color-accent);
	color: var(--fm-color-surface) !important;
	text-decoration: none !important;
	clip-path: polygon(0 0, 100% 0, calc(100% - 38px) 100%, 0 100%);
}

.fm-header__brand img {
	display: block;
	width: min(205px, 100%);
	height: auto;
	max-height: 74px;
	object-fit: contain;
}

.fm-header__search {
	display: grid;
	grid-template-columns: 1fr 48px;
	align-items: center;
	height: 50px;
	background: var(--fm-color-input);
	border: 0 !important;
	box-shadow: none !important;
}

.fm-header__search input {
	width: 100%;
	height: 50px;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent;
	padding: 0 20px;
	color: var(--fm-color-muted);
	font-size: 12px;
	text-transform: uppercase;
	box-shadow: none !important;
	appearance: none;
}

.fm-header__search input:focus,
.fm-header__search input:focus-visible {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.fm-header .fm-header__search button,
.fm-header .fm-header__toggle {
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--fm-color-text);
	cursor: pointer;
	padding: 0;
}

.fm-header svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	display: block;
}

.fm-header__search button {
	display: grid;
	place-items: center;
	height: 50px;
	color: var(--fm-color-text);
}

.fm-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	white-space: nowrap;
}

.fm-header__actions a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--fm-color-text) !important;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none !important;
}

.fm-header__actions strong {
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--fm-color-accent);
	color: var(--fm-color-surface);
	font-size: 11px;
	line-height: 1;
}

.fm-header .fm-header__toggle {
	display: none !important;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 0 !important;
	background: transparent !important;
	color: var(--fm-color-text) !important;
	box-shadow: none !important;
}

.fm-header .fm-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--fm-color-text);
}

.fm-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.1vw, 37px);
	min-height: 55px;
	padding: 0 24px;
	background: var(--fm-color-surface);
	overflow: visible;
	scrollbar-width: none;
}

.fm-header__nav::-webkit-scrollbar {
	display: none;
}

.fm-header__nav-item {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 55px;
}

.fm-header__nav a,
.fm-header__dropdown a {
	flex: 0 0 auto;
	color: var(--fm-color-text) !important;
	font-size: 13.5px;
	font-weight: 400;
	text-decoration: none !important;
	line-height: 1;
}

.fm-header__nav-item > a {
	display: flex;
	align-items: center;
	min-height: 55px;
	border-bottom: 2px solid transparent;
	transition: color .18s ease, border-color .18s ease;
}

.fm-header__nav-item:hover > a,
.fm-header__nav-item:focus-within > a {
	color: var(--fm-color-accent) !important;
	border-bottom-color: var(--fm-color-accent);
}

.fm-header__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10000;
	display: grid;
	min-width: 235px;
	padding: 14px 0;
	background: var(--fm-color-surface);
	border-top: 2px solid var(--fm-color-accent);
	box-shadow: 0 14px 28px rgba(8, 8, 8, .1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.fm-header__nav-item:hover .fm-header__dropdown,
.fm-header__nav-item:focus-within .fm-header__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fm-header__dropdown a {
	display: block;
	padding: 12px 30px;
	color: var(--fm-color-muted) !important;
	font-size: 13px;
	line-height: 1.25;
	white-space: normal;
	transition: color .18s ease, background .18s ease;
}

.fm-header__dropdown a:first-child {
	color: var(--fm-color-text) !important;
	font-size: 14px;
}

.fm-header__dropdown a:hover,
.fm-header__dropdown a:focus {
	color: var(--fm-color-accent) !important;
	background: #fff7f1;
}

.fm-header__quick {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 55px;
	color: #e50012 !important;
	font-weight: 500 !important;
}

.fm-header__quick span {
	font-size: 19px;
	line-height: 1;
}

.fm-hero-slider,
.fm-hero-slider * {
	box-sizing: border-box;
}

.fm-hero-slider {
	position: relative;
	width: 100%;
	height: clamp(300px, 39vw, 745px);
	overflow: hidden;
	background: var(--fm-color-soft);
}

.fm-hero-slider__track {
	position: absolute;
	inset: 0;
}

.fm-hero-slider__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity .6s ease;
	pointer-events: none;
}

.fm-hero-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.fm-hero-slider img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fm-hero-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0 !important;
	border-radius: 50%;
	background: rgba(25, 33, 49, .34) !important;
	color: #fff !important;
	box-shadow: none !important;
	cursor: pointer;
	transform: translateY(-50%);
}

.fm-hero-slider__arrow--prev {
	left: 24px;
}

.fm-hero-slider__arrow--next {
	right: 24px;
}

.fm-hero-slider__arrow svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
	display: block;
}

.fm-hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 28px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateX(-50%);
}

.fm-hero-slider__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.fm-hero-slider__dots button.is-active {
	background: #fff;
}

.fm-hero-slider__dots span {
	width: 10px;
	height: 10px;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
}

.fm-hero-slider__dots .is-active {
	background: #fff;
}

.fm-feature-product,
.fm-feature-product * {
	box-sizing: border-box;
}

.fm-feature-product {
	display: grid;
	grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
	gap: 40px;
	width: min(1180px, calc(100% - 36px));
	margin: 34px auto;
	padding: 30px;
	background: var(--fm-color-surface);
	border-radius: 8px;
	box-shadow: 0 8px 28px rgba(25, 33, 49, .08);
}

.fm-feature-product__media {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--fm-color-soft);
}

.fm-feature-product__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	object-position: center;
}

.fm-feature-product__hotspot {
	position: absolute;
	left: 42%;
	top: 55%;
	z-index: 2;
	width: 172px;
	height: 92px;
	cursor: pointer;
	transform: translate(-50%, -50%);
}

.fm-feature-product__pulse,
.fm-feature-product__pulse:before {
	position: absolute;
	display: block;
	left: 50%;
	bottom: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
	transform: translateX(-50%);
}

.fm-feature-product__pulse {
	border: 5px solid rgba(255, 255, 255, .55);
	box-shadow: 0 0 0 7px rgba(255, 255, 255, .28);
	cursor: pointer;
}

.fm-feature-product__pulse:before {
	content: "";
	left: -3px;
	bottom: -3px;
	transform: none;
	animation: fmHotspotPulse 1.8s ease-out infinite;
}

.fm-feature-product__tooltip {
	position: absolute;
	left: 50%;
	bottom: 40px;
	min-width: 172px;
	padding: 10px 14px;
	background: #fff;
	color: var(--fm-color-text);
	border-radius: 4px;
	box-shadow: 0 8px 18px rgba(25, 33, 49, .16);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	pointer-events: auto;
}

.fm-feature-product__tooltip strong,
.fm-feature-product__tooltip span {
	display: block;
}

.fm-feature-product__tooltip strong {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
}

.fm-feature-product__tooltip span {
	margin-top: 3px;
	font-size: 13px;
	color: #000;
	text-decoration: none;
}

.fm-feature-product__tooltip span:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fm-feature-product__hotspot:hover .fm-feature-product__tooltip {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.fm-feature-product__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: var(--fm-color-text);
}

.fm-feature-product__eyebrow {
	margin: 0 0 10px;
	color: var(--fm-color-muted);
	font-size: 13px;
	line-height: 1.4;
}

.fm-feature-product__content h2 {
	margin: 0;
	color: var(--fm-color-text);
	font-size: clamp(24px, 2vw, 30px);
	font-weight: 500;
	line-height: 1.2;
}

.fm-feature-product__badge {
	display: inline-flex;
	margin: 18px 0 26px;
	padding: 10px 16px;
	border-radius: 6px;
	background: var(--fm-color-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.fm-feature-product__content p:last-child {
	margin: 0;
	max-width: 560px;
	color: var(--fm-color-text);
	font-size: 15px;
	line-height: 1.7;
}

.fm-box-promo,
.fm-box-promo * {
	box-sizing: border-box;
}

.fm-box-promo {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: min(1320px, calc(100% - 36px));
	margin: 26px auto 36px;
}

.fm-box-promo__item {
	display: block;
	overflow: hidden;
	background: var(--fm-color-soft);
	cursor: pointer;
	text-decoration: none;
}

.fm-box-promo__item img {
	display: block;
	width: 100%;
	height: auto;
}

.fm-tv-boxes,
.fm-tv-boxes * {
	box-sizing: border-box;
}

.fm-tv-boxes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: min(1320px, calc(100% - 36px));
	margin: 30px auto 120px;
}

.fm-tv-boxes__item {
	display: block;
	overflow: hidden;
	background: var(--fm-color-soft);
	cursor: pointer;
	text-decoration: none;
}

.fm-tv-boxes__item img {
	display: block;
	width: 100%;
	height: auto;
}

.fm-info-boxes,
.fm-info-boxes * {
	box-sizing: border-box;
}

.fm-info-boxes {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
	width: min(1320px, calc(100% - 36px));
	margin: 20px auto 60px;
}

.fm-info-boxes__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 32px 18px 28px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background: #fff;
	color: #4a4a4a;
	text-align: center;
	text-decoration: none;
	min-height: 180px;
}

.fm-info-boxes__item svg {
	width: 48px;
	height: 48px;
	color: #4a4a4a;
}

.fm-info-boxes__item strong {
	font-size: 15px;
	font-weight: 700;
	color: #2c2c2c;
	letter-spacing: .2px;
}

.fm-info-boxes__item span {
	font-size: 13px;
	font-weight: 400;
	color: #9a9a9a;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.fm-info-boxes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.fm-info-boxes {
		grid-template-columns: 1fr;
	}
}

.fm-promotion-products,
.fm-promotion-products * {
	box-sizing: border-box;
}

.fm-promotion-products {
	display: grid;
	grid-template-columns: 300px minmax(0, 960px);
	gap: 30px;
	width: min(1290px, calc(100% - 36px));
	margin: 44px auto 56px;
	color: var(--fm-color-text);
}

.fm-promotion-products__banner {
	position: relative;
	height: 376px;
	overflow: hidden;
	background: var(--fm-color-soft);
}

.fm-promotion-products__banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

/* İlk section: banner full height, kutu yok */
.fm-promotion-products--first .fm-promotion-products__banner {
	height: auto;
	align-self: stretch;
	background: #fff;
}

.fm-promotion-products--first .fm-promotion-products__banner img {
	object-fit: cover;
}

.fm-promotion-products__banner a {
	position: absolute;
	z-index: 2;
	top: 70px;
	left: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 40px;
	padding: 0 24px;
	border-radius: 999px;
	background: #fff;
	color: var(--fm-color-text) !important;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none !important;
	box-shadow: 0 10px 24px rgba(25, 33, 49, .18);
	transform: translateX(-50%);
}

.fm-promotion-products__panel {
	min-width: 0;
}

.fm-promotion-products__head {
	display: grid;
	grid-template-columns: 1fr 118px;
	min-height: 50px;
	border: 1px solid var(--fm-color-border);
	background: var(--fm-color-surface);
}

.fm-promotion-products__head h2 {
	margin: 0;
	padding: 0 20px;
	align-self: center;
	color: var(--fm-color-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.fm-promotion-products__arrows {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #e8ecf2;
}

.fm-promotion-products__arrows button {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--fm-color-muted) !important;
	box-shadow: none !important;
	cursor: pointer;
}

.fm-promotion-products__arrows svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.fm-promotion-products__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	margin-top: 20px;
}

.fm-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: auto;
	border: 1px solid var(--fm-color-border);
	background: var(--fm-color-surface);
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}


.fm-product-card.is-hidden {
	display: none;
}

.fm-product-card {
	transition: opacity .28s ease, transform .28s ease;
}

.fm-product-card.is-slide-out-left {
	opacity: 0;
	transform: translateX(-40px);
}

.fm-product-card.is-slide-out-right {
	opacity: 0;
	transform: translateX(40px);
}

.fm-product-card.is-slide-in-right {
	opacity: 0;
	transform: translateX(40px);
	transition: none;
}

.fm-product-card.is-slide-in-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: none;
}

.fm-product-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 12 / 7;
	overflow: hidden;
	border-radius: 0;
	background: #f8f9fb;
	cursor: pointer;
}

.fm-product-card__image-track {
	display: flex;
	width: 200%;
	height: 100%;
	transform: translateX(0);
	border-radius: inherit;
	transition: transform .35s ease;
}

.fm-product-card__image img {
	display: block;
	flex: 0 0 50%;
	width: 50%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
}

.fm-product-card__image:hover .fm-product-card__image-track {
	transform: translateX(-50%);
}

.fm-product-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 14px 24px 16px;
}

.fm-product-card__body h3 {
	margin: 0;
	min-height: 48px;
	color: var(--fm-color-text);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
}

.fm-product-card__body p {
	margin: 14px 0 0;
	min-height: 22px;
	color: var(--fm-color-muted);
	font-size: 13px;
	line-height: 1.35;
}

.fm-product-card__price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 12px 0 10px;
	min-height: 24px;
	white-space: nowrap;
}

.fm-product-card__price span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 24px;
	padding: 0 8px;
	background: #e50012;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.fm-product-card__price strong {
	display: block;
	margin: 0;
	color: var(--fm-color-text);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
}

.fm-product-card__price del {
	color: var(--fm-color-muted);
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	text-decoration-thickness: 1px;
}

.fm-product-card__body button {
	width: min(100%, 240px);
	min-height: 38px;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--fm-color-accent) !important;
	color: #fff !important;
	box-shadow: none !important;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

@keyframes fmHotspotPulse {
	0% {
		opacity: .7;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.75);
	}
}

@media (max-width: 1180px) {
	.fm-header__top {
		grid-template-columns: 290px 1fr auto;
		gap: 20px;
		padding-right: 22px;
	}

	.fm-header__actions span {
		display: none;
	}
}

@media (max-width: 860px) {
	.fm-header__top {
		grid-template-columns: 1fr auto;
		gap: 14px;
		min-height: 70px;
		padding-right: 12px;
	}

	.fm-header__brand {
		align-items: flex-start;
		min-height: 70px;
		padding-left: 18px;
		padding-right: 46px;
	}

	.fm-header__brand img {
		width: 165px;
		max-height: 60px;
	}

	.fm-header__search {
		grid-column: 1 / -1;
		order: 3;
		height: 44px;
		margin: 0 12px 12px;
	}

	.fm-header__search button {
		height: 44px;
	}

	.fm-header__actions {
		gap: 14px;
	}

	.fm-header .fm-header__toggle {
		display: block !important;
	}

	.fm-header__nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		min-height: 0;
		padding: 0;
		border-top: 1px solid var(--fm-color-border);
	}

	.fm-header.is-open .fm-header__nav {
		display: flex;
	}

	.fm-header__nav a {
		padding: 16px 20px;
		border-bottom: 1px solid var(--fm-color-border);
		font-size: 14px;
	}

	.fm-header__nav-item {
		display: block;
		min-height: 0;
	}

	.fm-header__nav-item > a {
		min-height: 0;
		border-bottom: 1px solid var(--fm-color-border);
	}

	.fm-header__dropdown {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0;
		border-top: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: #fafafa;
	}

	.fm-header__dropdown a {
		padding: 12px 32px;
		font-size: 13px;
	}

	.fm-hero-slider {
		height: clamp(220px, 58vw, 420px);
	}

	.fm-hero-slider__arrow {
		width: 40px;
		height: 40px;
	}

	.fm-hero-slider__arrow--prev {
		left: 12px;
	}

	.fm-hero-slider__arrow--next {
		right: 12px;
	}

	.fm-hero-slider__dots {
		bottom: 16px;
		gap: 8px;
	}

	.fm-hero-slider__dots span {
		width: 8px;
		height: 8px;
	}

	.fm-feature-product {
		grid-template-columns: 1fr;
		gap: 22px;
		width: min(100% - 24px, 640px);
		margin: 24px auto;
		padding: 18px;
	}

	.fm-feature-product__media,
	.fm-feature-product__media img {
		min-height: 250px;
	}

	.fm-feature-product__hotspot {
		left: 45%;
		top: 58%;
	}

	.fm-feature-product__content h2 {
		font-size: 23px;
	}

	.fm-box-promo {
		grid-template-columns: 1fr;
		width: min(100% - 24px, 640px);
		margin: 22px auto 30px;
	}

	.fm-tv-boxes {
		grid-template-columns: 1fr;
		gap: 14px;
		width: min(100% - 24px, 640px);
		margin: -12px auto 34px;
	}

	.fm-promotion-products {
		grid-template-columns: 1fr;
		width: min(100% - 24px, 640px);
		margin: 24px auto 34px;
	}

	.fm-promotion-products__banner {
		height: auto;
		aspect-ratio: 300 / 376;
	}

	.fm-promotion-products__head {
		grid-template-columns: 1fr 96px;
	}

	.fm-promotion-products__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}
