:root {
  --font-montserrat: "__Montserrat_434d9e", "__Montserrat_Fallback_434d9e";
}

[data-stek-panel][data-state="closed"] {
  display: none !important;
}

[data-stek-panel][data-state="open"] {
  display: block !important;
}

/* Dropdown header'ın içinde kalsın; sticky/overflow kırpılmasın */
header[aria-label="Site Header"] {
  position: sticky;
  top: 0;
  min-height: 4rem;
  background: transparent;
  overflow: visible !important;
  z-index: 60;
}
header[aria-label="Site Header"] nav,
.stek-header-nav-wrap,
.custom-container {
  overflow: visible !important;
}
/* Dropdown: stekturkiye.com SQS folder — left:-1em (tetikleyiciye yaslı) */
header[aria-label="Site Header"] nav li.relative,
header[aria-label="Site Header"] .stek-header-nav__item {
  position: static !important;
}
header[aria-label="Site Header"] .stek-header-nav__item--drop {
  position: relative !important;
}
header[aria-label="Site Header"] .stek-header-nav__item--drop:has(.stek-header-panel--brands),
header[aria-label="Site Header"] .stek-header-nav__item--drop:has(.stek-header-panel--resources) {
  position: static !important;
}
header[aria-label="Site Header"] [data-stek-panel] {
  position: absolute !important;
  top: 100% !important;
  left: -1em !important;
  right: auto !important;
  transform: none !important;
  z-index: 200;
  max-width: min(90vw, 960px);
  width: max-content;
  text-align: left;
}
header[aria-label="Site Header"] .stek-header-panel--brands,
header[aria-label="Site Header"] .stek-header-panel--resources {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}
header[aria-label="Site Header"].is-sticky {
  position: sticky !important;
  top: 0 !important;
  z-index: 50;
}
header[aria-label="Site Header"].is-relative {
  position: relative !important;
}

header[aria-label="Site Header"] button.group[data-state="open"] svg {
  transform: rotate(180deg);
}
[data-stek-acc][data-state="open"] svg {
  transform: rotate(180deg);
}

/* Dinamik header nav — yapışık menü fix */
.stek-header-nav-wrap {
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
	flex: 0 1 auto !important;
	width: auto !important;
	max-width: calc(100% - 10rem);
}
.stek-header-nav {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 1rem 1.35rem;
	width: auto;
	max-width: 100%;
}
@media (min-width: 1280px) {
	.stek-header-nav {
		display: flex !important;
	}
}
.stek-header-nav__item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.stek-header-nav__btn,
.stek-header-nav__link {
	font-size: 0.8125rem;
	letter-spacing: 0.01em;
	display: inline-flex !important;
	align-items: center;
	gap: 0.35rem;
	height: 4rem;
	white-space: nowrap;
	color: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	padding: 0;
}
.stek-header-nav__item--cta {
	margin-left: 0.5rem;
}
.stek-header-panel {
	min-width: 220px;
	max-width: 90vw;
	background: #0a0a0a;
	border: 2px solid #171717;
	border-radius: 0.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
	padding: 0.75rem;
	z-index: 200;
}
.stek-header-panel__list {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.stek-header-panel__link {
	display: block;
	padding: 0.5rem 0.6rem;
	border-radius: 0.5rem;
	color: #f3f4f6;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
}
.stek-header-panel__link:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}
.stek-header-panel--brands {
	min-width: min(90vw, 960px);
	padding: 1.25rem;
}
.stek-header-panel--resources {
	min-width: min(90vw, 720px);
	padding: 1rem 1.25rem;
}
.stek-header-resources {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 2rem;
}
.stek-header-resources__col {
	min-width: 140px;
	flex: 1 1 140px;
	max-width: 200px;
}
.stek-header-resources__title {
	font-size: 0.6875rem;
	font-weight: 700;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 0.5rem;
	padding: 0 0.5rem 0.35rem;
	border-bottom: 1px solid #374151;
}
.stek-header-resources__links {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.stek-header-brands {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols, 5), minmax(140px, 1fr));
	gap: 1rem;
}
.stek-header-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #fff;
	min-width: 0;
}
.stek-header-brand img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 0.75rem;
	margin-bottom: 0.75rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease;
}
.stek-header-brand:hover img {
	transform: scale(1.05);
}
.stek-header-brand span {
	font-weight: 700;
	font-size: 1rem;
}
.stek-header-brand:hover span {
	color: #af2a2a;
}

.DrawerOverlay {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 0 !important;
  height: auto !important;
  z-index: 55 !important;
  background-color: transparent !important;
  pointer-events: none;
  transition: background-color 0.2s ease-in-out, width 0.2s ease-in-out;
}
.DrawerContainer.is-open .DrawerOverlay {
  width: 100% !important;
  background-color: rgba(0, 0, 0, 0.55) !important;
  pointer-events: auto;
}
.DrawerContentContainer {
  position: fixed !important;
  z-index: 60 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 90% !important;
  max-width: 420px;
  transform: translateX(-100%) !important;
  transition: transform 0.2s ease-in-out;
}
.DrawerContainer.is-open .DrawerContentContainer {
  transform: translateX(0) !important;
}
.stek-drawer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  margin: 0.75rem 0 1.25rem;
}
.stek-drawer-top .stek-drawer-logo {
  margin: 0 !important;
  padding: 0 3rem;
}
.stek-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 0.35rem;
  z-index: 2;
}
.stek-drawer-close:hover,
.stek-drawer-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
button.MainContentContainer.stek-menu-toggle,
.MainContentContainer.stek-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 70;
}
.stek-menu-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

@media (min-width: 1280px) {
  .DrawerContainer {
    display: none;
  }
}

/* Pull-to-refresh / dikey scroll: main overflow-hidden ve video touch capture engelliyordu */
html,
body {
  overscroll-behavior-y: auto;
}
main.overflow-hidden {
  overflow: visible !important;
}

video.pSection {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #000;
  /* Dekoratif autoplay: dokunuş sayfaya gitsin (swipe + pull-to-refresh) */
  pointer-events: none;
  touch-action: pan-y;
  -webkit-touch-callout: none;
}

.stek-hero-video-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #000;
  line-height: 0;
  touch-action: pan-y;
  /* Mobilde video gecikse/yüklenmese bile alan çökmesin */
  aspect-ratio: 16 / 9;
  min-height: 180px;
}

.stek-hero-video-wrap video.pSection,
.stek-hero-video-wrap video.stek-hero-video {
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stek-hero {
  position: relative;
}
.stek-hero .swiper-slide img,
.stek-tcs img[data-nimg="fill"] {
  object-fit: cover;
  max-width: none;
  height: 100% !important;
  width: 100% !important;
}
.stek-hero .swiper-slide .relative.w-full.h-full {
  width: 100% !important;
}

.stek-swiper {
  overflow: hidden !important;
  height: 100%;
}
.stek-swiper > .swiper-wrapper {
  position: relative;
  display: block !important;
  height: 100%;
  width: 100% !important;
  transform: none !important;
}
.stek-swiper > .swiper-wrapper > .swiper-slide {
  display: none !important;
  width: 100% !important;
  height: 100% !important;
}
.stek-swiper > .swiper-wrapper > .swiper-slide.is-active {
  display: block !important;
}

/* FORCESHIELD F-serisi yan sekmeler */
.stek-fs-tabs > .is-active {
  color: #fff !important;
  background: #171717 !important;
}
@media (min-width: 1024px) {
  .stek-fs-tabs > .is-active {
    background: rgba(0, 0, 0, 0.9) !important;
  }
}
.stek-fs-tabs > .is-active > .stek-fs-tab-bar {
  background: #af2a2a;
}
.stek-fs-tabs > :not(.is-active) > .stek-fs-tab-bar {
  background: #fff;
}
.stek-fs-slider .swiper-pagination {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stek-fs-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.stek-fs-slider .swiper-pagination-bullet-active {
  background: #af2a2a;
}

/* Canlı sitedeki sol dikey Swiper pagination */
.stek-hero .swiper {
  position: relative;
}
.stek-hero .swiper-pagination {
  position: absolute;
  left: 9px !important;
  right: auto !important;
  top: 50%;
  bottom: auto;
  width: auto;
  height: auto;
  transform: translate3d(0, -50%, 0);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.stek-hero .swiper-pagination-bullet {
  display: block !important;
  width: 2px;
  height: 13px;
  margin: 0 !important;
  border-radius: 0;
  background: #fff;
  opacity: 0.35;
  cursor: pointer;
  flex-shrink: 0;
}
.stek-hero .swiper-pagination-bullet.styles_active__hkkxq,
.stek-hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  width: 4px;
  height: 26px;
}
@media only screen and (min-width: 1000px) {
  .stek-hero .swiper-pagination-bullet {
    width: 4px;
    height: 26px;
  }
}

.stek-hero-tabs > .is-active {
  color: #fff !important;
  background: #171717 !important;
}
@media (min-width: 1024px) {
  .stek-hero-tabs > .is-active {
    background: rgba(0, 0, 0, 0.9) !important;
  }
}
.stek-hero-tabs > .is-active > div {
  background: #af2a2a !important;
}
.stek-hero-tabs > :not(.is-active) > div {
  background: #fff !important;
}

/* Next.js intersection JS yok; kartlar .animated ile görünmez kalıyordu */
.animated,
.animated.active {
  opacity: 1 !important;
  transform: none !important;
}

/* Total Care kart görselleri: canlı sitedeki h-[123px] md:h-[172px] */
.stek-tcs .stek-tcs-photo,
.stek-tcs .relative.h-\[123px\] {
  position: relative;
  width: 100%;
  height: 123px;
  overflow: hidden;
  background: #111;
}
@media (min-width: 768px) {
  .stek-tcs .stek-tcs-photo,
  .stek-tcs .relative.h-\[123px\] {
    height: 172px;
  }
}
.stek-tcs .stek-tcs-photo img,
.stek-tcs .relative.h-\[123px\] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Canlı site layout_preset.footer_style = full (JS hydrate yok) */
footer[aria-label="Site Footer"] {
  padding: 2.25rem 1.75rem 2.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 639px) {
  footer[aria-label="Site Footer"] {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (min-width: 640px) {
  footer[aria-label="Site Footer"] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  footer[aria-label="Site Footer"] {
    padding: 3rem 2rem 2rem;
  }
}
footer[aria-label="Site Footer"] > .stektr-footer-top {
  padding-top: 1.5rem;
}
@media (min-width: 1024px) {
  footer[aria-label="Site Footer"] > .stektr-footer-top {
    padding-top: 3.5rem;
  }
}
footer[aria-label="Site Footer"] > div.grid > div.flex.flex-col,
footer[aria-label="Site Footer"] .stektr-footer-brand {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
footer[aria-label="Site Footer"] .stektr-footer-brand {
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 640px) {
  footer[aria-label="Site Footer"] .stektr-footer-brand {
    align-items: flex-start;
  }
}
footer[aria-label="Site Footer"] .stektr-footer-brand__logo {
  gap: 0.4rem;
}
footer[aria-label="Site Footer"] .stektr-footer-social {
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
  justify-content: center;
}
@media (min-width: 640px) {
  footer[aria-label="Site Footer"] .stektr-footer-social {
    justify-content: flex-start;
  }
}
footer[aria-label="Site Footer"] .stektr-footer-social > li {
  margin: 0;
  padding: 0;
}
footer[aria-label="Site Footer"] .stektr-footer-social li a {
  display: block;
  line-height: 0;
}
footer[aria-label="Site Footer"] .stektr-footer-social li svg {
  width: 42px;
  height: 42px;
  display: block;
}
@media (min-width: 640px) {
  footer[aria-label="Site Footer"] .stektr-footer-social li svg {
    width: 50px;
    height: 50px;
  }
}
footer[aria-label="Site Footer"] .stektr-footer-newsletter {
  max-width: 22rem;
}
footer[aria-label="Site Footer"] .stektr-footer-nav {
  width: 100%;
}
@media (max-width: 639px) {
  footer[aria-label="Site Footer"] .stektr-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  footer[aria-label="Site Footer"] .stektr-footer-col {
    text-align: center;
  }
  footer[aria-label="Site Footer"] .stektr-footer-col__title {
    display: inline-block;
    margin-bottom: 0.15rem;
  }
  footer[aria-label="Site Footer"] .stektr-footer-col__links ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  footer[aria-label="Site Footer"] .stektr-footer-col__links a {
    color: rgba(255, 255, 255, 0.78) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
  }
  footer[aria-label="Site Footer"] .stektr-footer-contact {
    order: 99;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.25rem;
  }
  footer[aria-label="Site Footer"] .stektr-footer-contact .stektr-footer-col__links {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
  }
  footer[aria-label="Site Footer"] .stektr-footer-col {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    box-sizing: border-box;
  }
}
footer[aria-label="Site Footer"] .stektr-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  max-width: 100%;
}
footer[aria-label="Site Footer"] .stektr-footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0 0.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.45;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
footer[aria-label="Site Footer"] .stektr-footer-credit > span,
footer[aria-label="Site Footer"] .stektr-footer-credit > a {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.78) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
}
footer[aria-label="Site Footer"] .stektr-footer-credit strong {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
}
footer[aria-label="Site Footer"] .stektr-footer-credit a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
footer[aria-label="Site Footer"] .stektr-footer-credit a:hover,
footer[aria-label="Site Footer"] .stektr-footer-credit a:focus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
footer[aria-label="Site Footer"] .stektr-footer-credit > .stektr-footer-credit__sep {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}
@media (min-width: 900px) {
  footer[aria-label="Site Footer"] .stektr-footer-credit {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    text-align: left;
    gap: 0.35rem 0.55rem;
    font-size: 0.8rem;
    padding: 0;
    white-space: normal;
  }
  footer[aria-label="Site Footer"] .stektr-footer-credit > span,
  footer[aria-label="Site Footer"] .stektr-footer-credit > a,
  footer[aria-label="Site Footer"] .stektr-footer-credit strong {
    display: inline !important;
    width: auto !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  footer[aria-label="Site Footer"] .stektr-footer-credit > .stektr-footer-credit__sep {
    display: inline !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 0.55;
    flex: 0 0 auto;
  }
}

footer[aria-label="Site Footer"] .stektr-footer-contact,
footer[aria-label="Site Footer"] .stektr-footer-contact :is(p, span, strong, a) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
footer[aria-label="Site Footer"] .stektr-footer-contact a:hover,
footer[aria-label="Site Footer"] .stektr-footer-contact a:focus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Become an installer / banner slider */
section.pSection.relative {
  position: relative;
}
section.pSection.relative img[data-nimg="fill"] {
  object-fit: cover;
  max-width: none;
  height: 100% !important;
  width: 100% !important;
}
section.pSection .swiper,
section.pSection .swiper-wrapper,
section.pSection .swiper-slide {
  height: 100%;
}
section.pSection:has(.swiper-wrapper:empty) {
  display: none;
}
.relative.h-\[123px\] {
  position: relative;
  width: 100%;
  height: 123px;
  overflow: hidden;
  background: #111;
}
@media (min-width: 768px) {
  .relative.h-\[123px\] {
    height: 172px;
  }
}
.relative.h-\[123px\] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
}

.PhoneInputInput {
  background: transparent;
  border: 0;
  color: #e0e0e0;
  outline: none;
  font-size: inherit;
  width: 100%;
}
.PhoneInputCountrySelect {
  color: #fff;
  background: #000;
}

button[role="checkbox"][data-state="checked"]::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

select.stek-select:invalid,
select.stek-select:has(option[value=""]:checked) {
  color: #494949;
}

select.stek-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='1.5'><path stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* —— DYNO Elementor brand page —— */
.stek-dyno-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 1.25rem;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) {
  .stek-dyno-tabs { padding-left: 0; }
}
.stek-dyno-tabs__btn {
  background: #1a1b1d;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  padding: 0.85rem 1.25rem;
  font: inherit;
  cursor: pointer;
  border-bottom: 4px solid transparent;
}
.stek-dyno-tabs__btn.is-active {
  color: #fff;
  border-bottom-color: #a22626;
  background: linear-gradient(to bottom, rgba(150, 49, 37, 0), rgba(162, 38, 38, 0.44));
}
.stek-dyno-series__panel {
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.stek-dyno-series__panel.hidden {
  display: none !important;
}

/* Ürün kartı yatay sürükle-kaydır (canlı STEK cursor-move) */
.stek-drag-scroll,
.cursor-move.overflow-x-scroll,
[role="tabpanel"].overflow-x-scroll {
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
}
.stek-drag-scroll::-webkit-scrollbar,
.cursor-move.overflow-x-scroll::-webkit-scrollbar,
[role="tabpanel"].overflow-x-scroll::-webkit-scrollbar {
  display: none;
  height: 0;
}
.stek-drag-scroll.is-dragging,
.cursor-move.overflow-x-scroll.is-dragging {
  cursor: grabbing;
}
.stek-drag-scroll a,
.cursor-move.overflow-x-scroll a {
  -webkit-user-drag: none;
  user-drag: none;
}

/*
 * Tailwind .flex, [hidden]’ı eziyor → Gloss+Matte aynı anda görünüyordu.
 * Sekme panelleri: sadece aktif olan görünsün.
 */
[role="tabpanel"][hidden],
[role="tabpanel"][data-state="inactive"],
.flex[role="tabpanel"][hidden],
.flex[role="tabpanel"][data-state="inactive"],
[role="tabpanel"][hidden].flex,
[role="tabpanel"][data-state="inactive"].flex {
  display: none !important;
}

/* Yatay şerit: kartlar asla alta kaymasın */
[role="tabpanel"].overflow-x-scroll,
[role="tabpanel"].cursor-move {
  flex-wrap: nowrap !important;
  align-items: stretch;
}
.stek-dyno-card {
  flex: 0 0 auto;
  width: min(78vw, 320px);
}
@media (min-width: 768px) {
  .stek-dyno-card { width: 360px; }
}
.stek-dyno-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.stek-dyno-card__cat {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  width: fit-content;
}
.stek-dyno-card__cta {
  text-decoration: none;
}
.stek-dyno-cta {
  min-height: 420px;
}
.stek-dyno-hero img {
  max-height: min(90vh, 1080px);
  object-fit: cover;
}


/* Elementor header sarmalayıcıları menüyü kaydırmasın / kesmesin */
.elementor-location-header,
.elementor-location-header > .elementor,
.elementor-location-header .e-con,
.elementor-location-header .elementor-widget-stek-header,
.elementor-location-header .elementor-widget-container {
  overflow: visible !important;
  max-width: none;
}
.elementor-location-header .e-con.e-flex {
  flex-wrap: nowrap;
}
