/* PARS layout — ilk ekran layout (ATech renkleri) */

@property --pars-header {
  syntax: '<length>';
  inherits: true;
  initial-value: 106px;
}

:root {
  --pars-sidebar: 90px;
  --pars-header-main: 70px;
  --pars-topbar: 36px;
  --pars-topbar-size: 36px;
  --pars-header: calc(var(--pars-header-main) + var(--pars-topbar));
  --ab-top: calc(var(--pars-header-main) + var(--pars-topbar-size));
  --pars-carousel-ctrl: 108px;
  --pars-gray: #575656;
  --pars-gray-dark: #425260;
  --pars-border: #dfdfdf;
}

html {
  --pars-header: calc(var(--pars-header-main) + var(--pars-topbar));
  transition: --pars-header 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

html:has(.site-header.is-scrolled) {
  --pars-header: 70px;
}

@media (max-width: 1024px) {
  html {
    /* @property ile var() bazen çözülmüyor — sabit uzunluk kullan */
    --pars-header: 70px;
    --pars-topbar: 0px;
    --pars-topbar-size: 0px;
    --ab-top: 70px;
  }

  .site-header__topbar {
    display: none !important;
  }

  /* Sadece inner sayfalar — ana sayfa hero'ya dokunma */
  body.page-inner-shell .main-pars.page-inner {
    padding-top: 70px;
  }
}

body.pars-layout {
  background: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base, 0.9375rem);
  line-height: var(--line-height-body, 1.65);
  letter-spacing: var(--letter-spacing-body, 0);
  -webkit-font-smoothing: antialiased;
}

/* ── Sağ ikon menü ── */
.right-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--pars-sidebar);
  height: 100vh;
  background: #fff;
  z-index: 160;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.right-nav__top {
  /* Sağ menü her zaman viewport üstüne hizalı (topbar yüksekliği kadar aşağı kaymasın) */
  height: var(--pars-header-main);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-nav__menu-btn {
  width: var(--pars-sidebar);
  height: 70px;
  border: none;
  cursor: pointer;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.right-nav__menu-btn:hover {
  background-color: rgba(219, 11, 18, 0.05);
}

body.menu-open .right-nav__menu-btn {
  background-color: rgba(219, 11, 18, 0.08);
}

.menu-btn__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
}

.menu-btn__label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pars-gray, #575656);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 28px;
  height: 18px;
}

.menu-icon span {
  display: block;
  height: 2.5px;
  background: var(--pars-gray);
  border-radius: 1px;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    width 0.3s ease,
    background-color 0.25s ease;
}

.menu-icon span:nth-child(1) { width: 28px; }
.menu-icon span:nth-child(2) { width: 20px; }
.menu-icon span:nth-child(3) { width: 12px; }

.menu-icon span + span { margin-top: 5px; }

body.menu-open .right-nav__menu-btn .menu-icon span:nth-child(1) {
  width: 24px;
  transform: translateY(7.5px) rotate(45deg);
  background: var(--color-brand);
}

body.menu-open .right-nav__menu-btn .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .right-nav__menu-btn .menu-icon span:nth-child(3) {
  width: 24px;
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--color-brand);
}

body.menu-open .right-nav__menu-btn .menu-btn__label {
  opacity: 0;
}

/* Mobil: kapatma sol rayda — header hamburger X'e dönmesin */
@media (max-width: 640px) {
  body.menu-open .site-header__menu-btn--mobile {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }

  body.menu-open .site-header__menu-btn--mobile .menu-icon span {
    transform: none;
    opacity: 1;
    background: var(--pars-gray);
  }

  body.menu-open .site-header__menu-btn--mobile .menu-icon span:nth-child(1) { width: 28px; }
  body.menu-open .site-header__menu-btn--mobile .menu-icon span:nth-child(2) { width: 20px; }
  body.menu-open .site-header__menu-btn--mobile .menu-icon span:nth-child(3) { width: 12px; }

  body.menu-open .site-header__menu-btn--mobile .menu-icon span + span {
    margin-top: 5px;
  }
}

.right-nav__menu-btn:hover .menu-icon span,
.site-header__menu-btn:hover .menu-icon span {
  background: var(--color-brand);
}

.right-nav__menu-btn:hover .menu-btn__label,
.site-header__menu-btn:hover .menu-btn__label {
  color: var(--color-brand);
}

.right-nav__list {
  flex: 1;
  min-height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.right-nav__bottom {
  flex-shrink: 0;
  border-top: 1px solid #c2c2c2;
}

.right-nav__contact-btn {
  position: relative;
  width: var(--pars-sidebar);
  height: 80px;
  border: none;
  cursor: pointer;
  overflow: visible;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23575656' d='M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.2c20.9 16.9 50.7 16.9 71.6 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.1-92.8 31.1-131.2 0L48 212.2z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 34px;
  background-repeat: no-repeat;
  transition: background-color 0.2s ease, background-image 0.2s ease;
}

.right-nav__contact-btn:hover,
.right-nav__contact-btn:focus-visible,
body.contact-open .right-nav__contact-btn {
  background-color: rgba(219, 11, 18, 0.06);
}

body.contact-open .right-nav__contact-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23db0b12' d='M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.2c20.9 16.9 50.7 16.9 71.6 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.1-92.8 31.1-131.2 0L48 212.2z'/%3E%3C/svg%3E");
}

.right-nav__item {
  border-bottom: 1px solid #c2c2c2;
  position: relative;
  overflow: visible;
  flex: 1;
  min-height: 0;
}

.right-nav__item:first-child {
  border-top: 1px solid #c2c2c2;
}

.right-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: var(--pars-sidebar);
  height: 100%;
  min-height: 64px;
  padding: 10px 12px;
  transition: background 0.2s ease;
  overflow: visible;
}

.right-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-brand);
  transition: width 0.3s ease;
}

.right-nav__link:hover::after,
.right-nav__link:focus-visible::after {
  width: 100%;
}

.right-nav__link:hover {
  background: rgba(219, 11, 18, 0.04);
}

/* Hover etiketi — PARS tarzı */
.right-nav__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  z-index: 200;
  padding: 10px 18px;
  background: var(--pars-gray);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    visibility 0.28s;
}

.right-nav__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--pars-gray);
  transform: translateY(-50%);
}

.right-nav__link:hover .right-nav__tooltip,
.right-nav__link:focus-visible .right-nav__tooltip,
.right-nav__contact-btn:hover .right-nav__tooltip,
.right-nav__contact-btn:focus-visible .right-nav__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.right-nav__link img,
.right-nav__link .right-nav__icon {
  width: 100%;
  height: 100%;
  max-width: 68px;
  max-height: 68px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  pointer-events: none;
  display: block;
}

.right-nav__link:hover .right-nav__icon,
.right-nav__link:focus-visible .right-nav__icon,
.right-nav__link:hover img,
.right-nav__link:focus-visible img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 8px rgba(219, 11, 18, 0.15));
}

.right-nav__link.active .right-nav__icon,
.right-nav__link.active img {
  filter: drop-shadow(0 2px 6px rgba(219, 11, 18, 0.12));
}

/* Kategoriye özel ikon animasyonları */
@keyframes nav-icon-spin { to { transform: rotate(360deg); } }
@keyframes nav-icon-route { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(18px); } }
@keyframes nav-icon-press { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(28px); } }
@keyframes nav-icon-crimp-squeeze-l {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -8px); }
}

@keyframes nav-icon-crimp-squeeze-r {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 8px); }
}

@keyframes nav-icon-crimp-cross {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.92; }
}

.right-nav__icon .icon-crimp-piece-l {
  transform-box: fill-box;
  transform-origin: 214px 310px;
  animation: nav-icon-crimp-squeeze-l 2.5s ease-in-out infinite;
}

.right-nav__icon .icon-crimp-piece-r {
  transform-box: fill-box;
  transform-origin: 342px 214px;
  animation: nav-icon-crimp-squeeze-r 2.5s ease-in-out infinite;
}

.right-nav__icon .icon-crimp-cross {
  transform-box: fill-box;
  transform-origin: 280px 248px;
  animation: nav-icon-crimp-cross 2.5s ease-in-out infinite;
}

.right-nav__link[data-cat="kose-presi"]:hover .icon-crimp-piece-l,
.right-nav__link[data-cat="kose-presi"]:focus-visible .icon-crimp-piece-l,
.right-nav__link[data-cat="kose-presi"]:hover .icon-crimp-piece-r,
.right-nav__link[data-cat="kose-presi"]:focus-visible .icon-crimp-piece-r,
.right-nav__link[data-cat="kose-presi"]:hover .icon-crimp-cross,
.right-nav__link[data-cat="kose-presi"]:focus-visible .icon-crimp-cross {
  animation-duration: 1.25s;
}

@keyframes nav-icon-slide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(16px); } }
@keyframes nav-icon-belt { from { transform: translateX(0); } to { transform: translateX(120px); } }
@keyframes nav-icon-cnc-xy {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, 0); }
  50% { transform: translate(10px, 6px); }
  75% { transform: translate(-8px, 6px); }
}

@keyframes nav-icon-cnc-z {
  0%, 30%, 100% { transform: translateY(0); }
  50%, 70% { transform: translateY(22px); }
}

@keyframes nav-icon-cnc-spark {
  0%, 38%, 72%, 100% { opacity: 0; }
  48%, 62% { opacity: 1; }
}

@keyframes nav-icon-saw-cut {
  0%, 32%, 100% { transform: translateY(0); }
  52%, 72% { transform: translateY(32px); }
}

@keyframes nav-icon-saw-spark {
  0%, 45%, 100% { opacity: 0; }
  55%, 68% { opacity: 1; }
}

@keyframes nav-icon-copy-move {
  0%, 100% { transform: translate(0, 0); }
  22% { transform: translate(18px, 38px); }
  48% { transform: translate(-16px, 72px); }
  62%, 72% { transform: translate(-16px, 88px); }
  86% { transform: translate(14px, 42px); }
}

@keyframes nav-icon-copy-lever {
  0%, 18%, 100% { transform: rotate(0deg); }
  48%, 72% { transform: rotate(14deg); }
}

.right-nav__icon .icon-saw-unit {
  transform-box: fill-box;
  transform-origin: top center;
  animation: nav-icon-saw-cut 2s ease-in-out infinite;
}

.right-nav__icon .icon-saw-spark {
  animation: nav-icon-saw-spark 2s ease-in-out infinite;
}

.right-nav__link[data-cat="kesme"]:hover .icon-saw-unit,
.right-nav__link[data-cat="kesme"]:focus-visible .icon-saw-unit {
  animation-duration: 1s;
}

.right-nav__link[data-cat="kesme"]:hover .icon-saw-unit .icon-spin,
.right-nav__link[data-cat="kesme"]:focus-visible .icon-saw-unit .icon-spin {
  animation-duration: 0.35s;
}

.right-nav__icon .icon-copy-head {
  transform-box: fill-box;
  transform-origin: top center;
  animation: nav-icon-copy-move 3.2s ease-in-out infinite;
}

.right-nav__icon .icon-copy-lever {
  transform-box: fill-box;
  transform-origin: 36px 56px;
  animation: nav-icon-copy-lever 3.2s ease-in-out infinite;
}

.right-nav__link[data-cat="freze"]:hover .icon-copy-head,
.right-nav__link[data-cat="freze"]:focus-visible .icon-copy-head,
.right-nav__link[data-cat="freze"]:hover .icon-copy-lever,
.right-nav__link[data-cat="freze"]:focus-visible .icon-copy-lever {
  animation-duration: 1.6s;
}

.right-nav__icon .icon-cnc-head {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-cnc-xy 3.8s ease-in-out infinite;
}

.right-nav__icon .icon-cnc-spindle {
  transform-box: fill-box;
  transform-origin: top center;
  animation: nav-icon-cnc-z 1.6s ease-in-out infinite;
}

.right-nav__icon .icon-cnc-gear {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-spin 2.2s linear infinite;
}

.right-nav__icon .icon-cnc-spark {
  animation: nav-icon-cnc-spark 1.7s ease-in-out infinite;
}

.right-nav__link[data-cat="cnc"]:hover .icon-cnc-head,
.right-nav__link[data-cat="cnc"]:focus-visible .icon-cnc-head {
  animation-duration: 2s;
}

.right-nav__link[data-cat="cnc"]:hover .icon-cnc-spindle,
.right-nav__link[data-cat="cnc"]:focus-visible .icon-cnc-spindle {
  animation-duration: 0.9s;
}

.right-nav__link[data-cat="cnc"]:hover .icon-cnc-gear,
.right-nav__link[data-cat="cnc"]:focus-visible .icon-cnc-gear {
  animation-duration: 0.7s;
}

.right-nav__icon .icon-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-spin 2s linear infinite;
}

.right-nav__icon .icon-spin--fast { animation-duration: 1.8s; }
.right-nav__icon .icon-spin--bit { animation-duration: 0.9s; }
.right-nav__icon .icon-spin--slow { animation-duration: 2.4s; }
.right-nav__icon .icon-spin--rev { animation-direction: reverse; }

.right-nav__icon .icon-route {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-route 1.4s ease-in-out infinite;
}

.right-nav__icon .icon-press {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-press 1.6s ease-in-out infinite;
}

.right-nav__icon .icon-slide {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-slide 2s ease-in-out infinite;
}

.right-nav__icon .icon-belt {
  transform-box: fill-box;
  transform-origin: center;
  animation: nav-icon-belt 2.8s linear infinite;
}

.right-nav__link:hover .right-nav__icon .icon-spin,
.right-nav__link:focus-visible .right-nav__icon .icon-spin { animation-duration: 0.55s; }

.right-nav__link:hover .right-nav__icon .icon-spin--fast,
.right-nav__link:focus-visible .right-nav__icon .icon-spin--fast { animation-duration: 0.45s; }

.right-nav__link:hover .right-nav__icon .icon-spin--bit,
.right-nav__link:focus-visible .right-nav__icon .icon-spin--bit { animation-duration: 0.35s; }

.right-nav__link:hover .right-nav__icon .icon-route,
.right-nav__link:focus-visible .right-nav__icon .icon-route { animation-duration: 0.7s; }

.right-nav__link:hover .right-nav__icon .icon-press,
.right-nav__link:focus-visible .right-nav__icon .icon-press { animation-duration: 0.8s; }

.right-nav__link:hover .right-nav__icon .icon-belt,
.right-nav__link:focus-visible .right-nav__icon .icon-belt { animation-duration: 1.2s; }

@media (prefers-reduced-motion: reduce) {
  .right-nav__icon .icon-cnc-head,
  .right-nav__icon .icon-cnc-spindle,
  .right-nav__icon .icon-cnc-gear,
  .right-nav__icon .icon-cnc-spark,
  .right-nav__icon .icon-saw-unit,
  .right-nav__icon .icon-saw-spark,
  .right-nav__icon .icon-copy-head,
  .right-nav__icon .icon-copy-lever,
  .right-nav__icon .icon-spin,
  .right-nav__icon .icon-route,
  .right-nav__icon .icon-press,
  .right-nav__icon .icon-crimp-piece-l,
  .right-nav__icon .icon-crimp-piece-r,
  .right-nav__icon .icon-crimp-cross,
  .right-nav__icon .icon-slide,
  .right-nav__icon .icon-belt {
    animation: none;
  }

  .right-nav__link img,
  .right-nav__link .right-nav__icon {
    transition: transform 0.2s ease;
  }

  .right-nav__link:hover img,
  .right-nav__link:focus-visible img,
  .right-nav__link:hover .right-nav__icon,
  .right-nav__link:focus-visible .right-nav__icon {
    transform: scale(1.03);
  }

  .right-nav__tooltip {
    transition: opacity 0.15s ease, visibility 0.15s;
    transform: translateY(-50%);
  }

  .right-nav__link:hover .right-nav__tooltip,
  .right-nav__link:focus-visible .right-nav__tooltip,
  .right-nav__contact-btn:hover .right-nav__tooltip,
  .right-nav__contact-btn:focus-visible .right-nav__tooltip {
    transform: translateY(-50%);
  }

  .preloader,
  .preloader__inner {
    animation: none;
    transition: opacity 0.25s ease;
  }

  .site-header__main {
    transition: none;
  }

  .site-header__topbar {
    transition: none;
  }

  html,
  .right-nav__top {
    transition: none;
  }

  .main-pars {
    transition: none;
  }

  .header-carousel__slide {
    transition: opacity 0.35s ease;
    transform: none !important;
    filter: none !important;
  }

  .header-carousel__slide.is-entering.active .slide-card__content,
  .header-carousel__slide.is-entering.active .slide-card__media {
    animation: none;
  }
}

/* ── Açılır paneller (menü + iletişim) ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  right: var(--pars-sidebar);
  background: rgba(0, 0, 0, 0.45);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: opacity 0.45s ease, backdrop-filter 0.45s ease;
}

body.menu-open .drawer-overlay,
body.contact-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: var(--pars-sidebar);
  width: min(420px, calc(100vw - var(--pars-sidebar)));
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 150;
  transform: translateX(105%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

body.menu-open .drawer-panel--nav,
body.contact-open .drawer-panel--contact {
  transform: translateX(0);
}

.drawer-panel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  padding: 24px 32px 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-height-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.drawer-panel--nav .drawer-panel__body {
  flex: 1;
  justify-content: flex-start;
  gap: 0;
  min-height: 0;
  overflow: hidden;
  padding: 24px 28px 12px;
}

.drawer-nav--desktop {
  display: none;
}

.drawer-nav--mobile {
  display: none;
  flex: 1;
  min-height: 0;
}

.drawer-panel__section--products {
  padding-bottom: 10px;
}

.drawer-panel__section--links {
  padding-top: 12px;
  border-top: 1px solid var(--pars-border);
  margin-top: auto;
}

.drawer-panel__contact {
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--pars-border);
}

.drawer-panel__contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.drawer-panel__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--pars-gray-dark);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.drawer-panel__contact-item svg {
  flex-shrink: 0;
  color: var(--pars-gray);
  transition: color 0.2s ease;
}

.drawer-panel__contact-item:hover,
.drawer-panel__contact-item:focus-visible {
  color: var(--color-brand);
}

.drawer-panel__contact-item:hover svg,
.drawer-panel__contact-item:focus-visible svg {
  color: var(--color-brand);
}

.drawer-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-panel__list li {
  margin-bottom: 7px;
}

.drawer-panel__list li:last-child {
  margin-bottom: 0;
}

.drawer-panel__list a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--pars-gray);
  line-height: 1.25;
  transition: color 0.2s ease;
}

.drawer-panel__list a:hover,
.drawer-panel__list a:focus-visible {
  color: var(--color-brand);
}

.drawer-panel__list--light a {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
}

.drawer-panel__list--light li {
  margin-bottom: 6px;
}

.drawer-panel__list--light a:hover,
.drawer-panel__list--light a:focus-visible {
  color: var(--color-brand);
}

/* ── Drawer menü: mobil (sol ray + sağ metin) ── */
.drawer-nav--mobile.drawer-menu {
  display: none;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-height-body);
  background: var(--drawer-menu-content-bg);
}

.drawer-menu__split {
  display: flex;
  flex: 1;
  flex-direction: row;
  min-height: 0;
  align-items: stretch;
}

.drawer-menu__rail {
  flex: 0 0 var(--drawer-rail-width);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  min-height: 0;
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 6px 0 20px rgba(8, 11, 16, 0.1);
}

.drawer-menu__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--drawer-rail-cell);
  min-height: var(--drawer-rail-cell);
  padding: 0;
  border: 0;
  background: #fff;
  color: #575656;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.drawer-menu__close svg {
  display: block;
}

.drawer-menu__close:hover,
.drawer-menu__close:focus-visible {
  color: var(--color-brand);
  background: #fafafa;
}

.drawer-menu__rail-icons {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
}

.drawer-menu__rail-bottom {
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid var(--drawer-menu-rail-border);
}

.drawer-menu__rail-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--drawer-rail-cell);
  min-height: var(--drawer-rail-cell);
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--pars-gray);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}


.drawer-menu__rail-action--contact {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23575656' d='M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.2c20.9 16.9 50.7 16.9 71.6 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.1-92.8 31.1-131.2 0L48 212.2z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 34px;
  background-repeat: no-repeat;
}

.drawer-menu__rail-action--contact:hover,
.drawer-menu__rail-action--contact:focus-visible,
body.contact-open .drawer-menu__rail-action--contact {
  background-color: rgba(219, 11, 18, 0.06);
}

body.contact-open .drawer-menu__rail-action--contact {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23db0b12' d='M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.2c20.9 16.9 50.7 16.9 71.6 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.1-92.8 31.1-131.2 0L48 212.2z'/%3E%3C/svg%3E");
}

.drawer-menu__rail-icon,
.drawer-menu__rail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--drawer-rail-cell);
  min-height: var(--drawer-rail-cell);
  padding: 8px;
  background: #fff;
  color: inherit;
  transition: background 0.2s ease;
}

.drawer-menu__rail-link:hover,
.drawer-menu__rail-link:focus-visible {
  background: #fafafa;
}

.drawer-menu__rail-icon img,
.drawer-menu__rail-link img,
.drawer-menu__rail-link svg {
  display: block;
  width: var(--drawer-icon-size);
  height: var(--drawer-icon-size);
  object-fit: contain;
}

.drawer-menu__content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 0;
  background: var(--drawer-menu-content-bg);
}

.drawer-menu__contact {
  flex-shrink: 0;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--pars-border);
  background: #fff;
}

.drawer-menu__contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.drawer-menu__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--pars-gray-dark);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.drawer-menu__contact-item svg {
  flex-shrink: 0;
  color: var(--pars-gray);
}

.drawer-menu__contact-item:hover,
.drawer-menu__contact-item:focus-visible {
  color: var(--color-brand);
}

.drawer-menu__content-head {
  display: flex;
  align-items: center;
  min-height: var(--drawer-rail-cell);
  padding: 0 20px;
  background: var(--drawer-menu-content-bg);
}

.drawer-menu__content-head .drawer-menu__heading {
  padding: 0;
}

.drawer-menu__section {
  margin: 0;
}

.drawer-menu__section--links {
  border-top: 1px solid var(--pars-border);
}

.drawer-menu__heading {
  margin: 0;
  padding: 18px 20px 4px;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: #a8a8a8;
  text-transform: uppercase;
}

.drawer-menu__section--links .drawer-menu__heading {
  padding-top: 16px;
}

.drawer-menu__row-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
  color: var(--color-text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.drawer-menu__section--products .drawer-menu__row-link {
  display: block;
  min-height: 0;
  padding: 0 20px;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--pars-gray);
  line-height: 1.25;
}

.drawer-menu__section--products .drawer-menu__row-link--all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid #e8ecf2;
  color: var(--primary-color, #db0b12);
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
}

.drawer-menu__section--products .drawer-menu__row-link--all::after {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.55;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.drawer-menu__section--products .drawer-menu__row-link--all:hover,
.drawer-menu__section--products .drawer-menu__row-link--all:focus-visible {
  color: var(--primary-color, #db0b12);
}

.drawer-menu__section--products .drawer-menu__row-link--all:hover::after,
.drawer-menu__section--products .drawer-menu__row-link--all:focus-visible::after {
  opacity: 1;
  transform: translateX(3px);
}

.drawer-menu__section--products .drawer-menu__row-link:last-child {
  margin-bottom: 0;
}

.drawer-panel__item--all {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #e8ecf2;
}

.drawer-panel__item--all a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--primary-color, #db0b12);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
}

.drawer-panel__item--all a::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: currentColor;
  opacity: 0.55;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.drawer-panel__item--all a:hover,
.drawer-panel__item--all a:focus-visible {
  color: var(--primary-color, #db0b12);
}

.drawer-panel__item--all a:hover::after,
.drawer-panel__item--all a:focus-visible::after {
  opacity: 1;
  transform: translateX(3px);
}

.drawer-menu__section--links .drawer-menu__row-link {
  display: block;
  min-height: 0;
  padding: 0 20px;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
}

.drawer-menu__section--links .drawer-menu__row-link:last-child {
  margin-bottom: 0;
}

.drawer-menu__row-link:hover,
.drawer-menu__row-link:focus-visible {
  color: var(--color-brand);
  background: rgba(255, 255, 255, 0.55);
}

.drawer-menu__footer {
  margin-top: 8px;
  padding: 12px 20px 16px;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #999;
  border-top: 1px solid var(--pars-border);
}

.drawer-panel--nav {
  background: #fff;
  overflow: hidden;
  --drawer-rail-width: 92px;
  --drawer-rail-cell: 80px;
  --drawer-icon-size: 52px;
  --drawer-menu-rail-border: #e6e6e6;
  --drawer-menu-content-bg: #f6f6f6;
}

/* Masaüstü: sadece metin menüsü */
@media (min-width: 641px) {
  .drawer-panel {
    right: var(--pars-sidebar);
    width: min(420px, calc(100vw - var(--pars-sidebar)));
  }

  .drawer-panel--nav {
    width: min(420px, calc(100vw - var(--pars-sidebar)));
  }

  .drawer-nav--mobile.drawer-menu {
    display: none !important;
  }

  .drawer-nav--desktop {
    display: flex !important;
  }

  .drawer-panel__contact {
    padding-bottom: 16px;
    margin-bottom: 6px;
  }

  .drawer-panel__contact-row {
    flex-wrap: nowrap;
    gap: 10px 18px;
  }

  .drawer-panel__contact-item {
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}

/* Mobil drawer */
@media (max-width: 640px) {
  .drawer-nav--desktop {
    display: none !important;
  }

  .drawer-nav--mobile.drawer-menu {
    display: flex !important;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .drawer-panel--nav {
    width: min(420px, 92vw);
    max-width: 92vw;
    border-radius: 0 0 18px 0;
    box-shadow: -10px 0 36px rgba(8, 11, 16, 0.16);
  }

  .drawer-menu__split {
    flex: 1;
    min-height: 0;
  }

  .drawer-menu__rail {
    box-shadow: 8px 0 22px rgba(8, 11, 16, 0.12);
  }

  .drawer-menu__close {
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-menu__contact {
    padding: 10px 14px;
  }

  .drawer-menu__contact-item {
    font-size: 0.6875rem;
  }

  .drawer-menu__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer-menu__section--products {
    padding-bottom: 20px;
  }

  .drawer-menu__section--links {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--pars-border);
  }

  .drawer-menu__section--links .drawer-menu__heading {
    padding: 0 16px 8px;
  }

  .drawer-menu__section--products .drawer-menu__row-link,
  .drawer-menu__section--links .drawer-menu__row-link {
    padding-inline: 16px;
  }

  .drawer-menu__content-head {
    padding-inline: 16px;
  }

  .drawer-menu__footer {
    margin-top: auto;
    flex-shrink: 0;
    padding: 14px 16px 16px;
  }
}

.drawer-panel--contact .drawer-panel__body {
  justify-content: flex-start;
  overflow-y: auto;
  padding: 20px 28px 24px;
  -webkit-overflow-scrolling: touch;
}

.drawer-panel--contact .drawer-panel__heading {
  margin-bottom: 8px;
}

.drawer-panel--contact .contact-dept {
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.drawer-panel--contact .contact-dept h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.drawer-panel--contact .contact-dept__address {
  margin-bottom: 8px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.drawer-panel--contact .contact-dept a {
  margin-top: 4px;
  font-size: 0.875rem;
}

.drawer-panel__section { margin-bottom: 0; }

.drawer-panel__heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-label);
  line-height: 1.3;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Menü açılış animasyonları — masaüstü */
.drawer-panel--nav .drawer-panel__contact,
.drawer-panel--nav .drawer-panel__heading,
.drawer-panel--nav .drawer-panel__list li,
.drawer-panel--nav .drawer-panel__footer {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

body.menu-open .drawer-panel--nav .drawer-panel__contact,
body.menu-open .drawer-panel--nav .drawer-panel__heading,
body.menu-open .drawer-panel--nav .drawer-panel__list li,
body.menu-open .drawer-panel--nav .drawer-panel__footer {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__heading { transition-delay: 0.08s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__heading { transition-delay: 0.34s; }
body.menu-open .drawer-panel--nav .drawer-panel__contact { transition-delay: 0.04s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(1) { transition-delay: 0.12s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(3) { transition-delay: 0.18s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(4) { transition-delay: 0.21s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(5) { transition-delay: 0.24s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(6) { transition-delay: 0.27s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(7) { transition-delay: 0.30s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--products .drawer-panel__list li:nth-child(8) { transition-delay: 0.33s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(1) { transition-delay: 0.38s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(2) { transition-delay: 0.41s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(3) { transition-delay: 0.44s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(4) { transition-delay: 0.47s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(5) { transition-delay: 0.50s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(6) { transition-delay: 0.53s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(7) { transition-delay: 0.56s; }
body.menu-open .drawer-panel--nav .drawer-panel__section--links .drawer-panel__list li:nth-child(8) { transition-delay: 0.59s; }
body.menu-open .drawer-panel--nav .drawer-panel__footer { transition-delay: 0.62s; }

/* Menü açılış animasyonları — mobil */
.drawer-nav--mobile .drawer-menu__close,
.drawer-nav--mobile .drawer-menu__rail-link,
.drawer-nav--mobile .drawer-menu__rail-action,
.drawer-nav--mobile .drawer-menu__contact,
.drawer-nav--mobile .drawer-menu__content-head,
.drawer-nav--mobile .drawer-menu__heading,
.drawer-nav--mobile .drawer-menu__row-link,
.drawer-nav--mobile .drawer-menu__footer {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

body.menu-open .drawer-nav--mobile .drawer-menu__close,
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link,
body.menu-open .drawer-nav--mobile .drawer-menu__rail-action,
body.menu-open .drawer-nav--mobile .drawer-menu__contact,
body.menu-open .drawer-nav--mobile .drawer-menu__content-head,
body.menu-open .drawer-nav--mobile .drawer-menu__heading,
body.menu-open .drawer-nav--mobile .drawer-menu__row-link,
body.menu-open .drawer-nav--mobile .drawer-menu__footer {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .drawer-nav--mobile .drawer-menu__close { transition-delay: 0.04s; }
body.menu-open .drawer-nav--mobile .drawer-menu__contact { transition-delay: 0.06s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(2) { transition-delay: 0.11s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(3) { transition-delay: 0.14s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(4) { transition-delay: 0.17s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(5) { transition-delay: 0.20s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(6) { transition-delay: 0.23s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-link:nth-child(7) { transition-delay: 0.26s; }
body.menu-open .drawer-nav--mobile .drawer-menu__rail-action--contact { transition-delay: 0.29s; }
body.menu-open .drawer-nav--mobile .drawer-menu__content-head { transition-delay: 0.10s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(1) { transition-delay: 0.12s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(3) { transition-delay: 0.18s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(4) { transition-delay: 0.21s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(5) { transition-delay: 0.24s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(6) { transition-delay: 0.27s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(7) { transition-delay: 0.30s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--products .drawer-menu__row-link:nth-child(8) { transition-delay: 0.33s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__heading { transition-delay: 0.32s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(2) { transition-delay: 0.34s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(3) { transition-delay: 0.37s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(4) { transition-delay: 0.40s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(5) { transition-delay: 0.43s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(6) { transition-delay: 0.46s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(7) { transition-delay: 0.49s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(8) { transition-delay: 0.52s; }
body.menu-open .drawer-nav--mobile .drawer-menu__section--links .drawer-menu__row-link:nth-child(9) { transition-delay: 0.55s; }
body.menu-open .drawer-nav--mobile .drawer-menu__footer { transition-delay: 0.58s; }

.drawer-panel__footer {
  padding: 10px 20px 10px 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #999;
  border-top: 1px solid var(--pars-border);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .drawer-panel {
    transition-duration: 0.2s;
  }

  .drawer-panel--nav .drawer-panel__contact,
  .drawer-panel--nav .drawer-panel__heading,
  .drawer-panel--nav .drawer-panel__list li,
  .drawer-panel--nav .drawer-panel__footer,
  .drawer-nav--mobile .drawer-menu__close,
  .drawer-nav--mobile .drawer-menu__rail-link,
  .drawer-nav--mobile .drawer-menu__rail-action,
  .drawer-nav--mobile .drawer-menu__contact,
  .drawer-nav--mobile .drawer-menu__heading,
  .drawer-nav--mobile .drawer-menu__row-link,
  .drawer-nav--mobile .drawer-menu__footer {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu-icon span {
    transition-duration: 0.15s;
  }

  .drawer-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.contact-dept {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pars-border);
}

.contact-dept:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-dept h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pars-gray);
}

.contact-dept__address {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  font-style: normal;
}

.contact-dept a {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.contact-dept a:hover { color: var(--color-brand); }

body.menu-open,
body.contact-open { overflow: hidden; }

body.menu-open .right-nav,
body.contact-open .right-nav { z-index: 170; }

/* ── Site wrap ── */
.site-wrap {
  margin-right: var(--pars-sidebar);
  min-height: 100vh;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: var(--pars-sidebar);
  z-index: 99;
  isolation: isolate;
}

.site-header__topbar {
  position: relative;
  z-index: 2;
  height: var(--pars-topbar);
  margin-top: 0;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(66, 82, 96, 0.08);
  opacity: 1;
  transition:
    margin-top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    border-color 0.32s ease;
}

.site-header.is-scrolled .site-header__topbar {
  margin-top: calc(-1 * var(--pars-topbar));
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.site-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.site-header__topbar-note {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(87, 86, 86, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header__contacts {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.site-header__contacts-item {
  display: flex;
  align-items: center;
}

.site-header__contacts-item--cta {
  margin-right: 0.15rem;
}

.site-header__contacts-sep {
  display: block;
  width: 1px;
  height: 0.9rem;
  margin: 0 0.45rem;
  background: rgba(66, 82, 96, 0.18);
}

button.site-header__contact-link {
  cursor: pointer;
  font-family: inherit;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  appearance: none;
  -webkit-appearance: none;
}

.site-header__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(66, 82, 96, 0.78);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.site-header__contact-link:hover {
  color: var(--pars-gray-dark, #425260);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(66, 82, 96, 0.1);
}

.site-header__contact-link:focus-visible {
  outline: 2px solid rgba(66, 82, 96, 0.35);
  outline-offset: 2px;
}

.site-header__contact-link--quick {
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  color: rgba(66, 82, 96, 0.78);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header__contact-link--quick .site-header__contact-icon {
  width: 0.95rem;
  height: 0.95rem;
  background: transparent;
  color: rgba(66, 82, 96, 0.55);
}

.site-header__contact-link--quick:hover {
  color: var(--pars-gray-dark, #425260);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(66, 82, 96, 0.1);
  box-shadow: none;
}

.site-header__contact-link--quick:hover .site-header__contact-icon {
  background: transparent;
  color: var(--pars-gray-dark, #425260);
}

.site-header__contact-link--wa:hover {
  color: #128c7e;
}

.site-header__contact-link--wa:hover .site-header__contact-icon {
  color: #128c7e;
  background: rgba(18, 140, 126, 0.1);
}

.site-header__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: transparent;
  color: rgba(66, 82, 96, 0.55);
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__contact-link:hover .site-header__contact-icon {
  background: transparent;
  color: var(--pars-gray-dark, #425260);
}

.site-header__contact-icon svg {
  display: block;
}

.site-header__contact-label {
  white-space: nowrap;
}

.site-header__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--pars-header-main);
  background: #fff;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(66, 82, 96, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 20px -4px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled .site-header__main {
  border-bottom-color: rgba(66, 82, 96, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 28px -6px rgba(0, 0, 0, 0.16);
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-width: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0;
}

.site-header__langs {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  background: rgba(66, 82, 96, 0.07);
  border-radius: 10px;
  padding: 3px;
}

.site-header__langs button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 10px;
  background: none;
  border: none;
  border-radius: 7px;
  color: rgba(87, 86, 86, 0.72);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.site-header__lang-flag {
  font-size: 0.9375rem;
  line-height: 1;
}

.site-header__langs button.active {
  background: #fff;
  color: var(--pars-gray-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.site-header__langs button:hover:not(.active) {
  color: var(--pars-gray-dark);
  background: rgba(255, 255, 255, 0.55);
}

.site-header__langs button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.site-header__langs.lang-switch button.active,
.site-header__langs.lang-switch button:hover {
  background: none;
  color: rgba(87, 86, 86, 0.72);
}

.site-header__langs.lang-switch button.active {
  background: #fff;
  color: var(--pars-gray-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.site-header__langs.lang-switch button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.55);
  color: var(--pars-gray-dark);
}

.site-header__brand {
  justify-self: center;
  text-align: center;
}

.site-header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--pars-gray);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__search:hover,
.site-header__search:focus-visible {
  color: var(--color-brand);
  background: rgba(219, 11, 18, 0.07);
}

.site-header__search:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.site-header__search svg {
  display: block;
}

/* ── Site search overlay ── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 120000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(4.5rem, 12vh) 1rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.site-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.site-search__panel {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(8, 11, 16, 0.28);
  transform: translateY(-10px);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.site-search.is-open .site-search__panel {
  transform: translateY(0);
}

.site-search__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem 0.35rem;
}

.site-search__title {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.site-search__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.site-search__close:hover,
.site-search__close:focus-visible {
  background: var(--color-brand, #db0b12);
  color: #fff;
  outline: none;
}

.site-search__form {
  padding: 0.35rem 1.15rem 0.75rem;
}

.site-search__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.35rem 0.35rem 0.85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search__field:focus-within {
  border-color: rgba(219, 11, 18, 0.45);
  box-shadow: 0 0 0 4px rgba(219, 11, 18, 0.08);
  background: #fff;
}

.site-search__icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.site-search__field input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0.65rem 0.25rem;
  outline: none;
}

.site-search__submit {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 10px;
  background: var(--color-brand, #db0b12);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.site-search__submit:hover {
  filter: brightness(0.95);
}

.site-search__live {
  margin-top: 0.65rem;
  max-height: min(50vh, 22rem);
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.site-search__live[hidden] {
  display: none !important;
}

.search-live-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.search-live-item:last-of-type {
  border-bottom: none;
}

.search-live-item:hover,
.search-live-item.is-active {
  background: rgba(219, 11, 18, 0.05);
}

.search-live-img {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-live-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-live-ph {
  color: #94a3b8;
  font-size: 0.875rem;
}

.search-live-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.search-live-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-live-cat {
  font-size: 0.75rem;
  color: #64748b;
}

.search-live-empty {
  padding: 1rem 0.85rem;
  font-size: 0.875rem;
  color: #64748b;
}

.search-live-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brand, #db0b12);
  text-decoration: none;
  border-top: 1px solid #f1f5f9;
  background: #fafafa;
}

.search-live-geo {
  padding: 0.45rem 0.85rem 0.75rem;
  font-size: 0.7rem;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
}

.site-search__footer {
  margin: 0;
  padding: 0.65rem 1.15rem 1.1rem;
  text-align: center;
  font-size: 0.8125rem;
}

.site-search__footer a {
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
}

.site-search__footer a:hover {
  color: var(--color-brand, #db0b12);
}

html.site-search-open,
body.site-search-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .site-search {
    padding: 0;
    align-items: stretch;
  }

  .site-search__panel {
    width: 100%;
    min-height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .site-search__form {
    flex: 1 1 auto;
  }

  .site-search__live {
    max-height: none;
    border: none;
    border-radius: 0;
    border-top: 1px solid #e2e8f0;
  }

  .site-search__field {
    padding-left: 0.75rem;
  }

  .site-search__submit {
    min-height: 44px;
  }
}

.site-header__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  color: var(--pars-gray);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__quote:hover,
.site-header__quote:focus-visible {
  color: var(--color-brand);
  background: rgba(219, 11, 18, 0.07);
}

.site-header__quote:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.site-header__quote-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 2px;
  flex-shrink: 0;
}

.site-header__quote svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.site-header__quote-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.site-header__quote-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  z-index: 2;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(219, 11, 18, 0.35);
  pointer-events: none;
}

.site-header__menu-btn {
  display: none;
  width: 52px;
  height: var(--pars-header-main);
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

body.menu-open .site-header__menu-btn--mobile {
  background: none;
}

.site-header__brand img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.site-header__contact {
  width: 50px;
  height: var(--pars-header-main);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23575656' d='M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.2c20.9 16.9 50.7 16.9 71.6 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.1-92.8 31.1-131.2 0L48 212.2z'/%3E%3C/svg%3E") center / 32px no-repeat;
  border: none;
  cursor: pointer;
  display: none;
}

.site-header__contact--mobile { display: none; }

/* ── Preloader ── */
body.preloader-active {
  overflow: hidden;
}

.preloader {
  --preloader-mark-width: clamp(168px, 40vw, 220px);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: var(--preloader-mark-width);
  max-width: 88vw;
  text-align: center;
  transition: opacity 0.6s ease;
}

.preloader--hide .preloader__inner {
  opacity: 0;
}

.preloader__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
}

.preloader__brand {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 0;
}

.preloader__brand img {
  display: block;
  width: var(--preloader-mark-width);
  max-width: 100%;
  height: auto;
}

.preloader__tagline {
  margin: 0;
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: #949494;
}

.preloader__tagline [lang="tr"],
.preloader__tagline [lang="en"] {
  display: block;
  padding-left: 0.06em;
}

html:not([data-lang="en"]) .preloader__tagline [lang="en"],
html[data-lang="en"] .preloader__tagline [lang="tr"] {
  display: none;
}

.preloader__progress {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: #ececec;
  border-radius: 999px;
}

.preloader__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--color-brand);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.preloader__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Carousel — tam viewport (header hariç) ── */
.main-pars {
  padding-top: var(--pars-header);
  transition: padding-top 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

body.carousel-video-active .main-pars {
  padding-top: 0;
}

body.carousel-video-active .header-carousel {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  height: 100dvh;
  max-height: 100dvh;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

body.carousel-video-active .header-carousel__slides {
  position: absolute;
  inset: 0;
  flex: none;
  height: 100%;
  min-height: 100dvh;
}

body.carousel-video-active .header-carousel .video-hero__tool,
body.carousel-video-active .header-carousel .hero-spotlight,
body.carousel-video-active .header-carousel .hero-spotlight a,
body.carousel-video-active .header-carousel .hero-spotlight button {
  pointer-events: auto;
}

body.carousel-video-active .header-carousel__slide--video.active {
  pointer-events: none;
}

body.carousel-video-active .header-carousel__control {
  display: none;
}

body.carousel-video-active .site-header__topbar {
  background: #f8f9fa;
  border-bottom-color: rgba(66, 82, 96, 0.1);
}

body.carousel-video-active .site-header.is-scrolled .site-header__main {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(66, 82, 96, 0.12);
}

body.carousel-video-active .site-header__main {
  background: rgb(255 255 255);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body.carousel-video-active .header-carousel-spacer {
  display: none;
  height: 0;
}

.header-carousel-spacer {
  display: none;
}

.header-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100dvh - var(--pars-header));
  max-height: calc(100dvh - var(--pars-header));
  overflow: hidden;
  background: #fff;
  --slide-content-offset: clamp(96px, 14vh, 140px);
  --slide-gap: clamp(8px, 1.4vw, 18px);
  --slide-pad-inline: clamp(12px, 2.5vw, 40px);
  --slide-pad-top: clamp(10px, 2vw, 24px);
  --slide-pad-bottom: clamp(4px, 0.8vw, 10px);
  --slide-title-size: clamp(1.125rem, 2.85vw, 2.25rem);
  --slide-title-line-height: 1.28;
  --slide-title-tracking: 0.01em;
  --slide-content-max-width: min(1140px, 94%);
  --slide-img-max-width: min(1240px, 98%);
  --slide-img-max-height: calc(100dvh - var(--pars-header) - var(--pars-carousel-ctrl) - var(--slide-content-offset));
  --slide-img-featured-scale: 1.36;
}

.header-carousel__slide--video {
  --slide-content-offset: 0;
}

.header-carousel__slide:nth-child(2) {
  --slide-content-offset: clamp(88px, 12vh, 120px);
}

.header-carousel__slide--video .slide-card {
  gap: 0;
  padding: 0;
}

.header-carousel__slide:nth-child(2) .slide-card {
  gap: clamp(4px, 0.7vw, 10px);
  padding-top: clamp(6px, 1vw, 14px);
  padding-bottom: 0;
}

.header-carousel__slides {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
  perspective: 1400px;
}

.header-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.82s;
  will-change: opacity, transform, filter;
}

.header-carousel__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.header-carousel__slide.is-leaving {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  filter: blur(6px);
}

.header-carousel__slides[data-direction="next"] .header-carousel__slide.is-entering:not(.active) {
  transform: translate3d(40px, 8px, 0) scale(0.978);
}

.header-carousel__slides[data-direction="prev"] .header-carousel__slide.is-entering:not(.active) {
  transform: translate3d(-40px, 8px, 0) scale(0.978);
}

.header-carousel__slides[data-direction="next"] .header-carousel__slide.is-leaving {
  transform: translate3d(-36px, -6px, 0) scale(0.972);
}

.header-carousel__slides[data-direction="prev"] .header-carousel__slide.is-leaving {
  transform: translate3d(36px, -6px, 0) scale(0.972);
}

.header-carousel__slide.is-entering.active .slide-card__content {
  animation: carousel-content-in 0.78s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-carousel__slide.is-entering.active .slide-card__media {
  animation: carousel-media-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-carousel__slide--video.is-entering.active .slide-card__media {
  animation: carousel-video-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes carousel-content-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes carousel-media-in {
  from { opacity: 0.55; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes carousel-video-in {
  from { opacity: 0.65; }
  to { opacity: 1; }
}

.slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--slide-gap);
  width: 100%;
  height: 100%;
  padding: var(--slide-pad-top) var(--slide-pad-inline) var(--slide-pad-bottom);
  background: #fff;
}

.slide-card__media {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  max-height: calc(100% - var(--slide-content-offset));
  overflow: visible;
}

.slide-card__media img {
  width: auto;
  max-width: var(--slide-img-max-width);
  height: auto;
  max-height: var(--slide-img-max-height);
  object-fit: contain;
  object-position: center center;
}

.slide-card__media--video {
  position: relative;
  background: #111;
}

.slide-card__video {
  display: block;
  width: auto;
  max-width: min(100%, var(--slide-img-max-width));
  height: auto;
  max-height: var(--slide-img-max-height);
  object-fit: contain;
  object-position: center center;
  background: #111;
}

.header-carousel__slide--video .slide-card {
  height: 100%;
  padding: 0;
  gap: 0;
  justify-content: stretch;
}

.header-carousel__slide--video .slide-card__media--video {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  overflow: hidden;
}

.header-carousel__slide--video .slide-card__video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

body.carousel-video-active .header-carousel__slide--video .slide-card__media--video,
body.carousel-video-active .header-carousel__slide--video .slide-card__video {
  min-height: 100dvh;
}

.slide-card__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.72) 30%, rgba(8, 11, 16, 0.18) 55%, transparent 76%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.38) 0%, transparent 38%, rgba(8, 11, 16, 0.36) 100%);
}

.video-hero {
  --spotlight-view-h: 11.5rem;
  --spotlight-footer-h: 2.875rem;
  --spotlight-card-h: calc(var(--spotlight-view-h) + var(--spotlight-footer-h));
  --spotlight-media-w: 11rem;
  --spotlight-media-h: 7.75rem;
  --hero-l-gap: clamp(1.15rem, 2.2vw, 1.75rem);
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vh, 1.25rem);
  padding:
    calc(var(--pars-header) + clamp(0.75rem, 2vh, 1.25rem))
    clamp(1.25rem, 4vw, 3rem)
    clamp(1rem, 2.5vh, 1.75rem)
    clamp(1.5rem, 5.5vw, 5.5rem);
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.video-hero__middle {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  width: 100%;
  pointer-events: none;
}

.video-hero__layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(0.75rem, 2.5vw, 1.75rem);
  flex: 0 0 auto;
  width: 100%;
  pointer-events: none;
}

.video-hero__column {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(100%, 36rem);
  pointer-events: auto;
}

.video-hero__column--text {
  width: min(100%, 36rem);
  transform: translateY(100px);
}

.video-hero__frame {
  position: relative;
  padding:
    clamp(0.25rem, 0.5vw, 0.5rem)
    0
    clamp(0.85rem, 1.6vw, 1.15rem)
    calc(var(--hero-l-gap) + 1px);
}

.video-hero__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-brand);
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
}

.video-hero__frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(3rem, 28%, 6.5rem);
  height: 1px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.video-hero__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-prose);
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.video-hero__title {
  display: inline-grid;
  margin: 0;
  max-width: min(100%, 12em);
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--font-weight-medium);
  line-height: 1.14;
  letter-spacing: -0.022em;
  font-feature-settings: "kern" 1, "liga" 1;
  color: #fff;
}

.video-hero__title-bold {
  grid-column: 1;
  grid-row: 1;
  font-size: var(--text-display);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.02;
  letter-spacing: -0.032em;
  white-space: nowrap;
}

.video-hero__title-rest {
  grid-column: 1;
  grid-row: 2;
  width: 0;
  min-width: 100%;
  font-weight: var(--font-weight-medium);
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-align: right;
  white-space: nowrap;
}

.video-hero__subtitle {
  margin: 1.125rem 0 0;
  max-width: 26rem;
  font-family: var(--font-prose);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.74);
  text-wrap: pretty;
}

.video-hero__tools {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.625rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(100%, 36rem);
  pointer-events: auto;
}

.video-hero__tool {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  min-height: 4.125rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.video-hero__tool:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.video-hero__tool:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.video-hero__tool-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  background: rgba(219, 11, 18, 0.14);
  border: 1px solid rgba(219, 11, 18, 0.28);
  color: #ff7076;
}

.video-hero__tool-body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.video-hero__tool-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  letter-spacing: var(--letter-spacing-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-hero__tool-hint {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  max-width: 100%;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

@media (min-width: 1025px) {
  .video-hero__tools {
    max-width: min(100%, 40rem);
  }

  .video-hero__tool--wide {
    flex: 1.35 1 0;
    min-width: 12.5rem;
    padding-inline: 0.85rem 0.95rem;
    align-items: flex-start;
  }

  .video-hero__tool--wide .video-hero__tool-icon {
    margin-top: 0.1rem;
  }
}

.video-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-top: 1.125rem;
  padding-left: calc(var(--hero-l-gap, 1.35rem) + 1px);
}

.video-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.video-hero__btn--primary {
  color: #fff;
  background: var(--color-brand);
  border: 1px solid var(--color-brand);
  box-shadow: 0 8px 24px rgba(219, 11, 18, 0.24);
}

.video-hero__btn--primary:hover {
  transform: translateY(-1px);
  background: #e80c14;
  border-color: #e80c14;
}

.video-hero__btn--ghost {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.video-hero__btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.video-hero__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Mini makine slider — sağ alt, sabit boyut */
.hero-spotlight-wrap {
  flex: 0 1 36rem;
  width: min(100%, 36rem);
  min-width: 0;
  display: block;
  pointer-events: none;
}

.hero-spotlight__hook {
  margin: 0 0 0.625rem;
  padding-right: 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 0.5vw + 0.85rem, 1.125rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: right;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  min-height: 1.25em;
}

.hero-spotlight__hook-accent {
  display: inline-block;
  margin-right: 0.3em;
  padding: 0.12em 0.45em 0.14em;
  font-size: 0.78em;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  vertical-align: 0.06em;
  color: #fff;
  background: var(--color-brand);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(219, 11, 18, 0.45);
}

.hero-spotlight__hook::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  margin-right: 0.55rem;
  vertical-align: middle;
  background: var(--color-brand);
}

.hero-spotlight__hook::after {
  content: " ↓";
  opacity: 0.75;
  font-size: 0.85em;
}

.hero-spotlight {
  width: 100%;
  height: var(--spotlight-card-h);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  font-family: var(--font-prose);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.14),
    0 32px 64px -12px rgba(0, 0, 0, 0.28),
    0 0 48px -8px rgba(219, 11, 18, 0.12);
  overflow: hidden;
  pointer-events: auto;
  contain: layout style;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-spotlight:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.1),
    0 28px 52px rgba(0, 0, 0, 0.18),
    0 40px 72px -12px rgba(0, 0, 0, 0.32),
    0 0 56px -6px rgba(219, 11, 18, 0.18);
}

.hero-spotlight__viewport {
  position: relative;
  height: var(--spotlight-view-h);
  min-height: var(--spotlight-view-h);
  max-height: var(--spotlight-view-h);
  overflow: hidden;
}

.hero-spotlight__item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--spotlight-media-w);
  align-items: center;
  gap: 1.125rem;
  padding: 1.375rem 1.375rem 1.375rem 1.5rem;
  text-decoration: none;
  color: var(--color-primary-dark);
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: translateX(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
  will-change: opacity, transform;
}

.hero-spotlight__item.active {
  position: absolute;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: translateX(0);
}

.hero-spotlight__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  height: 100%;
}

.hero-spotlight__cat {
  flex-shrink: 0;
  font-family: var(--font-prose);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  color: var(--color-brand);
}

.hero-spotlight__name {
  flex-shrink: 0;
  width: 100%;
  min-height: 2.35em;
  max-height: 2.35em;
  font-family: var(--font-prose);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.175;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-spotlight__desc {
  flex-shrink: 0;
  width: 100%;
  min-height: 1.35em;
  max-height: 1.35em;
  font-family: var(--font-prose);
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-spotlight__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  font-family: var(--font-prose);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-brand);
  transition: gap 0.2s ease;
}

.hero-spotlight__item:hover .hero-spotlight__cta {
  gap: 0.45rem;
}

.hero-spotlight__cta svg {
  fill: currentColor;
}

.hero-spotlight__media {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--spotlight-media-w);
  height: var(--spotlight-media-h);
  background: #ffffff;
  border: 1px solid rgba(46, 46, 46, 0.06);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hero-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-spotlight__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #94a3b8;
}

.hero-spotlight__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: var(--spotlight-footer-h);
  min-height: var(--spotlight-footer-h);
  max-height: var(--spotlight-footer-h);
  padding: 0 0.85rem;
  border-top: 1px solid rgba(46, 46, 46, 0.08);
  background: #fafafa;
}

.hero-spotlight__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.hero-spotlight__arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border: solid var(--color-primary-dark);
  border-width: 0 1.5px 1.5px 0;
}

.hero-spotlight__arrow--prev::before {
  transform: rotate(135deg) translate(-1px, 1px);
}

.hero-spotlight__arrow--next::before {
  transform: rotate(-45deg) translate(-1px, -1px);
}

.hero-spotlight__arrow:hover {
  border-color: rgba(219, 11, 18, 0.35);
  background: rgba(219, 11, 18, 0.04);
}

.hero-spotlight__arrow:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.hero-spotlight__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
}

.hero-spotlight__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(46, 46, 46, 0.18);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.hero-spotlight__dot.active {
  background: var(--color-brand);
  transform: scale(1.15);
}

.hero-spotlight__dot:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.header-carousel__slide--video.active .video-hero__frame::before {
  animation: video-hero-l-v 0.95s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-carousel__slide--video.active .video-hero__frame::after {
  animation: video-hero-l-h 0.7s 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-carousel__slide--video.active .video-hero__frame {
  animation: video-hero-in 0.75s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-carousel__slide--video.active .video-hero__eyebrow {
  animation: none;
}

.header-carousel__slide--video.active .video-hero__title {
  animation: none;
}

.header-carousel__slide--video.active .video-hero__subtitle {
  animation: none;
}

.header-carousel__slide--video.active .video-hero__tools {
  animation: video-hero-in 0.85s 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes video-hero-l-v {
  from {
    transform: scaleY(0);
    opacity: 0.55;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes video-hero-l-h {
  from {
    transform: scaleX(0);
    opacity: 0.55;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes video-hero-in {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-carousel__slide--video.active .video-hero__frame::before,
  .header-carousel__slide--video.active .video-hero__frame::after {
    animation: none;
    transform: none;
    opacity: 1;
  }

  .header-carousel__slide--video.active .video-hero__frame,
  .header-carousel__slide--video.active .video-hero__tools {
    animation: none;
  }

  .hero-spotlight__item {
    transition: none;
    will-change: auto;
  }
}

/* ALUPRO — 2. slide daha büyük */
.header-carousel__slide:nth-child(2) .slide-card__media {
  flex: 1 1 0;
  max-height: none;
}

.header-carousel__slide:nth-child(2) .slide-card__media img {
  width: auto;
  max-width: 100%;
  height: calc(100dvh - var(--pars-header) - var(--pars-carousel-ctrl) - clamp(112px, 15vh, 152px));
  max-height: none;
  object-fit: contain;
  transform: scale(var(--slide-img-featured-scale));
  transform-origin: center center;
}

.slide-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  max-width: var(--slide-content-max-width);
  text-align: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding-inline: clamp(8px, 1.5vw, 16px);
}

.slide-card__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 0.75rem);
  width: 100%;
}

.slide-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--slide-title-size);
  font-weight: var(--font-weight-extrabold, 800);
  line-height: var(--slide-title-line-height);
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--color-primary-dark);
}

.slide-card__cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 0.35rem 0.35rem 0.35rem 1.15rem;
  min-height: 0;
  background: linear-gradient(135deg, #e80c14 0%, var(--color-brand) 55%, #b8090f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 4px 18px rgba(219, 11, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.slide-card__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%);
  pointer-events: none;
}

.slide-card__cta-label {
  position: relative;
  z-index: 1;
  padding: 0;
}

.slide-card__cta-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-brand);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.slide-card__cta-arrow svg {
  display: block;
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.slide-card__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 26px rgba(219, 11, 18, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slide-card__cta:hover .slide-card__cta-arrow {
  transform: scale(1.06);
}

.slide-card__cta:hover .slide-card__cta-arrow svg {
  transform: translateX(1px);
}

.slide-card__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.slide-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(219, 11, 18, 0.24);
}

.header-carousel__control {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--pars-carousel-ctrl);
  padding: 0 clamp(12px, 2.5vw, 40px) clamp(16px, 2.5vw, 24px);
  background: #fff;
}

.carousel-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  width: min(1140px, 100%);
}

.carousel-toolbar__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 36px);
  min-width: 0;
}

.carousel-toolbar__rule {
  flex-shrink: 0;
  width: clamp(28px, 5vw, 56px);
  height: 3px;
  border-radius: 999px;
  background: var(--pars-gray);
  opacity: 0.55;
}

.carousel-feature {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.28em;
  margin: 0;
  min-width: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.carousel-feature.is-updating {
  opacity: 0;
  transform: translateY(8px);
}

.carousel-feature__value,
.carousel-feature__label {
  font-family: var(--font-display);
  font-weight: var(--font-weight-extrabold, 800);
  line-height: 1;
  letter-spacing: var(--letter-spacing-heading);
  white-space: nowrap;
}

.carousel-feature__value {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  color: var(--color-brand);
}

.carousel-feature__label {
  font-size: clamp(1.625rem, 4.2vw, 3rem);
  color: var(--color-primary-dark);
}

.carousel-toolbar__cta {
  flex-shrink: 0;
  justify-self: end;
}

.carousel-btn-wrap {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.carousel-btn {
  width: clamp(48px, 5.5vw, 60px);
  height: clamp(48px, 5.5vw, 60px);
  border: none;
  border-radius: 0;
  background: transparent center / clamp(26px, 3.2vw, 34px) no-repeat;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.78;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  opacity: 1;
  transform: scale(1.08);
  background-color: transparent;
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  opacity: 1;
}

.carousel-btn--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 6l-6 6 6 6' stroke='%23575656' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.carousel-btn--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23575656' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── Kategori grid (PARS) ── */
.categories-section {
  background: #f6f6f6;
  padding: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.categories-grid__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  min-height: 375px;
  padding: 40px 20px;
  border: 2px solid var(--pars-border);
  border-right: 0;
  border-bottom: 0;
  background: #fff;
  position: relative;
}

.categories-grid__item p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 12px 0 20px;
}

.categories-grid__item--dark {
  background: var(--pars-gray-dark);
  border-color: var(--pars-gray-dark);
  justify-content: center;
  overflow: hidden;
}

.categories-grid__item--dark h2 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  color: #fff;
  line-height: .85;
  letter-spacing: -0.02em;
  margin: 0;
}

.categories-grid__item--dark h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
  margin: 0;
}

.categories-grid__item--dark h4 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.categories-grid__item--link::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--color-brand);
  transition: all .2s ease;
  pointer-events: none;
  z-index: 1;
}

.categories-grid__item--link:hover::before {
  border-width: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.categories-grid__item--link:hover .categories-grid__title {
  color: var(--color-brand);
}

.categories-grid__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--color-text);
  transition: color .2s;
  position: relative;
  z-index: 2;
}

.categories-grid__discover {
  display: inline-block;
  align-self: center;
  position: relative;
  z-index: 2;
  padding: 8px 50px;
  background: var(--pars-gray-dark);
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 2px 4px 4px rgba(0,0,0,.25);
  transition: background .3s;
}

.categories-grid__discover:hover {
  background: var(--color-brand);
  color: #fff;
}

.categories-grid__item--dark [lang="en"] { display: none; }
html[data-lang="en"] .categories-grid__item--dark [lang="tr"] { display: none; }
html[data-lang="en"] .categories-grid__item--dark [lang="en"] { display: block; }

/* ── Mobil hızlı iletişim çubuğu ── */
.mobile-action-bar {
  display: none;
}

@media (max-width: 640px) {
  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 92;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(199, 199, 199, 0.75);
    box-shadow: 0 -8px 28px rgba(8, 11, 16, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body {
    padding-bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.menu-open .mobile-action-bar,
  body.contact-open .mobile-action-bar,
  body.qc-open .mobile-action-bar,
  body.preloader-active .mobile-action-bar {
    display: none;
  }

  .mobile-action-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 3.75rem;
    padding: 0.35rem 0.125rem;
    font-size: 0.5625rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    text-align: center;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .mobile-action-bar__item svg {
    flex-shrink: 0;
    color: var(--color-steel);
    transition: color 0.2s ease;
  }

  .mobile-action-bar__item:active,
  .mobile-action-bar__item:hover {
    background: rgba(66, 82, 96, 0.06);
    color: var(--color-brand);
  }

  .mobile-action-bar__item:active svg,
  .mobile-action-bar__item:hover svg {
    color: var(--color-brand);
  }

  .mobile-action-bar__lang {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
  }

  .mobile-action-bar__lang-flag {
    font-size: 1.125rem;
    line-height: 1;
  }

  .mobile-action-bar__lang-code {
    font-size: 0.625rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.04em;
  }

  .mobile-action-bar__quote {
    position: relative;
  }

  .mobile-action-bar__quote-badge {
    position: absolute;
    top: 0.35rem;
    right: calc(50% - 1.35rem);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--color-brand);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .site-header__topbar-note {
    display: none;
  }

  .video-hero__layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
  }

  .video-hero__middle {
    align-items: center;
  }

  .video-hero__column--text {
    max-width: 100%;
    transform: translateY(0);
  }

  .video-hero__eyebrow {
    font-size: clamp(0.875rem, 2.2vw, 1.125rem);
    margin-bottom: 0.65rem;
  }

  .video-hero__tools {
    max-width: 100%;
  }

  .hero-spotlight-wrap {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .hero-spotlight__hook {
    text-align: left;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  :root { --pars-sidebar: 0px; }

  .right-nav { display: none; }

  .site-wrap { margin-right: 0; }

  .site-header { right: 0; }

  .site-header__main {
    padding: 0 12px;
    grid-template-columns: 44px 1fr 44px;
    gap: 0;
  }

  .site-header__left {
    display: none;
  }

  .site-header__brand {
    grid-column: 2;
    justify-self: center;
  }

  .site-header__actions {
    grid-column: 3;
    justify-self: end;
  }

  .drawer-overlay { right: 0; }

  .drawer-panel {
    right: 0;
    width: min(360px, 92vw);
  }

  .drawer-panel--nav {
    width: min(420px, 92vw);
    max-width: 92vw;
    --drawer-rail-width: 92px;
    --drawer-icon-size: 52px;
    border-radius: 0 0 18px 0;
    box-shadow: -10px 0 36px rgba(8, 11, 16, 0.16);
  }

  .drawer-menu__rail {
    box-shadow: 8px 0 22px rgba(8, 11, 16, 0.12);
  }

  .drawer-panel--contact .contact-dept a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 0.2rem;
  }

  .site-header__brand img {
    height: 44px;
    max-width: min(240px, 46vw);
  }

  .products-showcase__header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .products-showcase__header .section__see-all {
    width: 100%;
    justify-content: center;
  }

  .products-showcase__track {
    height: clamp(280px, 42vh, 380px);
  }

  .carousel-toolbar--showcase {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.5rem;
  }

  .carousel-toolbar--showcase .carousel-toolbar__rule {
    display: none;
  }

  .carousel-toolbar--showcase .carousel-btn--prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .carousel-toolbar--showcase .carousel-feature--showcase {
    grid-column: 2;
    grid-row: 1;
    padding-inline: 0.25rem;
  }

  .carousel-toolbar--showcase .carousel-btn--next {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }

  .carousel-toolbar--showcase .carousel-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-size: 22px;
  }

  .carousel-feature--showcase .carousel-feature__model {
    font-size: 1.0625rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .carousel-feature--showcase .carousel-feature__badge {
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .video-hero__actions {
    padding-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .video-hero__btn {
    width: 100%;
  }

  .categories-grid { grid-template-columns: 1fr; }

  .site-header__contact--mobile,
  .site-header__menu-btn--mobile { display: flex; }

  .site-header__actions {
    width: auto;
    min-width: auto;
    min-height: var(--pars-header-main);
    gap: 2px;
  }

  .site-header__quote-label {
    display: none;
  }

  .site-header__quote {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
  }

  .site-header__quote-icon {
    margin-right: 0;
  }

  :root {
    --pars-carousel-ctrl: 96px;
  }

  .header-carousel {
    height: calc(100dvh - var(--pars-header) - 3.75rem - env(safe-area-inset-bottom, 0px));
    max-height: calc(100svh - var(--pars-header) - 3.75rem - env(safe-area-inset-bottom, 0px));
    --slide-content-offset: clamp(88px, 18vh, 120px);
    --slide-gap: 10px;
    --slide-pad-inline: 16px;
    --slide-pad-top: 14px;
    --slide-pad-bottom: 8px;
    --slide-title-size: clamp(0.875rem, 4.8vw, 1.25rem);
    --slide-title-line-height: 1.3;
    --slide-title-tracking: 0.008em;
    --slide-content-max-width: 100%;
    --slide-img-max-width: 100%;
    --slide-img-max-height: min(56vh, 460px);
    --slide-img-featured-scale: 1.2;
  }

  body.carousel-video-active .header-carousel {
    height: calc(100dvh - 3.75rem - env(safe-area-inset-bottom, 0px));
    max-height: calc(100svh - 3.75rem - env(safe-area-inset-bottom, 0px));
  }

  .header-carousel__slide--video {
    --slide-content-offset: 0;
  }

  .header-carousel__slide:nth-child(2) {
    --slide-content-offset: clamp(80px, 16vh, 108px);
  }

  .header-carousel__slide--video .slide-card {
    gap: 0;
    padding: 0;
  }

  .header-carousel__slide--video .slide-card__video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transform: none;
  }

  .header-carousel__slide:nth-child(2) .slide-card {
    gap: 6px;
    padding-top: 8px;
    padding-bottom: 0;
  }

  .header-carousel__slide:nth-child(2) .slide-card__media img {
    width: 100%;
    height: auto;
    max-height: min(68vh, 580px);
    transform: scale(var(--slide-img-featured-scale));
  }

  .header-carousel__slide--video .slide-card__video-overlay {
    background:
      linear-gradient(180deg, rgba(8, 11, 16, 0.62) 0%, rgba(8, 11, 16, 0.28) 32%, rgba(8, 11, 16, 0.82) 100%),
      linear-gradient(90deg, rgba(8, 11, 16, 0.9) 0%, rgba(8, 11, 16, 0.55) 42%, transparent 78%);
  }

  .video-hero {
    --spotlight-view-h: 7.5rem;
    --spotlight-footer-h: 2.125rem;
    --spotlight-media-w: 7.5rem;
    --spotlight-media-h: 5.5rem;
    --hero-l-gap: 0;
    gap: 0;
    height: 100%;
    min-height: 0;
    padding:
      calc(var(--pars-header) + 0.5rem)
      1rem
      2.75rem
      1rem;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
  }

  .video-hero__middle {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 0;
    padding-bottom: 0.75rem;
  }

  .video-hero__column--text {
    max-width: 100%;
    width: 100%;
    transform: translateY(0);
    display: flex;
    justify-content: center;
  }

  .video-hero__frame {
    width: 100%;
    max-width: 26rem;
    padding: 0;
    text-align: center;
  }

  .video-hero__frame::before,
  .video-hero__frame::after {
    display: none;
  }

  .video-hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: clamp(0.9375rem, 3.4vw, 1.125rem);
    line-height: 1.4;
  }

  .video-hero__title {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.625rem, 7.2vw, 2.125rem);
    line-height: 1.2;
    text-align: center;
  }

  .video-hero__title-bold {
    display: inline;
    font-size: inherit;
    font-weight: var(--font-weight-extrabold);
    line-height: inherit;
    white-space: normal;
  }

  .video-hero__title-rest {
    display: inline;
    width: auto;
    margin-top: 0;
    font-size: inherit;
    font-weight: var(--font-weight-medium);
    line-height: inherit;
    text-align: center;
    white-space: normal;
  }

  .video-hero__title-rest::before {
    content: "\00a0";
  }

  .video-hero__subtitle {
    margin: 0.75rem auto 0;
    max-width: 22rem;
    font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.84);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .video-hero__layout {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.25rem;
    transform: translateY(-1.25rem);
    min-height: 0;
    flex-shrink: 0;
  }

  .video-hero__tools {
    display: none;
  }

  /* Mobil hero-spotlight */
  .hero-spotlight-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex: 0 0 auto;
    flex-shrink: 0;
    pointer-events: auto;
    z-index: 2;
  }

  .hero-spotlight__hook {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    text-align: center;
    padding-right: 0;
  }

  .hero-spotlight__hook::before {
    display: none;
  }

  .hero-spotlight__hook::after {
    content: " ↓";
    opacity: 0.7;
  }

  .hero-spotlight {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: var(--spotlight-card-h);
    min-height: var(--spotlight-card-h);
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 10px 28px rgba(0, 0, 0, 0.18),
      0 24px 48px -16px rgba(0, 0, 0, 0.32);
  }

  .hero-spotlight:hover {
    transform: none;
  }

  .hero-spotlight__item {
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    grid-template-columns: minmax(0, 1fr) var(--spotlight-media-w);
  }

  .hero-spotlight__content {
    align-items: flex-start;
    gap: 0.15rem;
  }

  .hero-spotlight__name {
    font-size: 1rem;
    min-height: auto;
    max-height: none;
    line-height: 1.2;
  }

  .hero-spotlight__desc {
    font-size: 0.8125rem;
    min-height: auto;
    max-height: none;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-spotlight__cat {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .hero-spotlight__cta {
    margin-top: 0.35rem;
    font-size: 0.75rem;
  }

  .hero-spotlight__media {
    width: var(--spotlight-media-w);
    height: var(--spotlight-media-h);
    border-radius: 10px;
  }

  .hero-spotlight__footer {
    padding: 0 0.75rem;
    background: #f5f5f5;
  }

  .hero-spotlight__arrow {
    width: 28px;
    height: 28px;
  }

  .slide-card {
    padding: var(--slide-pad-top) var(--slide-pad-inline) var(--slide-pad-bottom);
    gap: var(--slide-gap);
  }

  .slide-card__media {
    max-height: calc(100% - var(--slide-content-offset));
  }

  .slide-card__media img {
    max-width: var(--slide-img-max-width);
    max-height: var(--slide-img-max-height);
  }

  .slide-card__content {
    gap: 0.65rem;
  }

  .slide-card__cta {
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    font-size: 0.75rem;
    gap: 0.625rem;
  }

  .slide-card__cta-arrow {
    width: 26px;
    height: 26px;
  }

  .slide-card__cta-arrow svg {
    width: 11px;
    height: 11px;
  }

  .header-carousel__control {
    padding: 0 12px 12px;
  }

  .carousel-toolbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .carousel-toolbar__hero {
    gap: 10px;
  }

  .carousel-toolbar__rule {
    width: 20px;
  }

  .carousel-feature__value {
    font-size: clamp(1.625rem, 8vw, 2.25rem);
  }

  .carousel-feature__label {
    font-size: clamp(1.375rem, 6.5vw, 1.875rem);
  }

  .carousel-toolbar__cta {
    justify-self: center;
  }

  .carousel-toolbar__hero .carousel-btn {
    width: 42px;
    height: 42px;
    background-size: 24px;
  }

  .carousel-btn-wrap { gap: 24px; }

  .categories-grid { grid-template-columns: 1fr; }

  .categories-grid__item {
    border-right: 2px solid var(--pars-border);
    min-height: 280px;
  }
}

@media (max-height: 740px) and (max-width: 640px) {
  .video-hero {
    --spotlight-view-h: 6.75rem;
    --spotlight-footer-h: 2rem;
    --spotlight-media-w: 6.75rem;
    --spotlight-media-h: 5rem;
    padding-top: calc(var(--pars-header) + 0.35rem);
    padding-bottom: 2.25rem;
  }

  .video-hero__layout {
    transform: translateY(-1rem);
  }

  .video-hero__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
  }

  .video-hero__title {
    font-size: clamp(1.25rem, 5.8vw, 1.5rem);
  }

  .video-hero__subtitle {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }

  .drawer-panel--nav {
    --drawer-rail-cell: 68px;
    --drawer-icon-size: 42px;
  }

  .drawer-menu__contact {
    padding-block: 6px;
  }

  .drawer-menu__contact-item {
    font-size: 0.625rem;
  }

  .drawer-menu__section--links .drawer-menu__row-link {
    padding-block: 6px;
  }
}

/* ── Products showcase (hero altı slider) ── */
.products-showcase {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.products-showcase--surface {
  background: #ffffff;
  color: var(--color-text);
}

.products-showcase__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

/* Ürünler bölüm başlığı — editorial tipografi */
.products-section-head {
  max-width: min(36rem, 100%);
}

.products-section-head__label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 0.875rem;
  font-family: var(--font-prose);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--color-steel);
}

.products-section-head__label::before {
  content: "";
  flex-shrink: 0;
  width: 1.75rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-brand) 0%, rgba(219, 11, 18, 0.35) 100%);
}

.products-section-head__label[lang="en"] {
  display: none;
}

html[data-lang="en"] .products-section-head__label[lang="tr"] {
  display: none;
}

html[data-lang="en"] .products-section-head__label[lang="en"] {
  display: inline-flex;
}

.products-section-head__title[lang="en"] {
  display: none;
}

html[data-lang="en"] .products-section-head__title[lang="tr"] {
  display: none;
}

html[data-lang="en"] .products-section-head__title[lang="en"] {
  display: block;
}

.products-section-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.06;
  letter-spacing: var(--letter-spacing-heading);
  text-wrap: balance;
}

.products-section-head__title-lead {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-dark);
}

.products-section-head__title-accent {
  display: block;
  margin-top: 0.06em;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-brand);
}

.products-showcase__stage {
  position: relative;
  max-width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.products-showcase__shell {
  display: block;
}

.products-showcase__track {
  position: relative;
  height: clamp(380px, 52vh, 520px);
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.products-showcase__control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-inline: 0.25rem;
}

.carousel-toolbar--showcase {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  margin-inline: 0;
}

.carousel-toolbar--showcase .carousel-btn--prev {
  grid-column: 1;
  justify-self: start;
}

.carousel-toolbar--showcase .carousel-toolbar__rule:first-of-type {
  grid-column: 2;
  justify-self: start;
  width: clamp(28px, 5vw, 56px);
  max-width: none;
}

.carousel-toolbar--showcase .carousel-feature--showcase {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  justify-self: center;
  width: 100%;
  max-width: 48rem;
  min-width: 0;
  margin: 0 auto;
  padding-inline: clamp(0.5rem, 2vw, 1.25rem);
  text-align: center;
}

.carousel-toolbar--showcase .carousel-toolbar__rule:last-of-type {
  grid-column: 4;
  justify-self: end;
  width: clamp(28px, 5vw, 56px);
  max-width: none;
}

.carousel-toolbar--showcase .carousel-btn--next {
  grid-column: 5;
  justify-self: end;
}

.carousel-feature--showcase .carousel-feature__model {
  display: block;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: var(--font-weight-bold, 700);
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carousel-feature--showcase .carousel-feature__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.35vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.carousel-feature--showcase .carousel-feature__badge-text {
  display: inline;
  color: var(--color-primary-dark);
}

.carousel-feature--showcase .carousel-feature__badge-accent {
  color: var(--color-brand);
}

.carousel-feature--showcase .carousel-feature__badge-rest {
  color: var(--color-primary-dark);
}

.carousel-feature--showcase .carousel-feature__arrow {
  display: inline-block;
  width: 1rem;
  height: 0.5rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.carousel-feature--showcase .carousel-feature__arrow--left {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 10' fill='none'%3E%3Cpath d='M21 5H5' stroke='%232e2e2e' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M6.5 1.5L1.5 5L6.5 8.5' stroke='%232e2e2e' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.carousel-feature--showcase .carousel-feature__arrow--right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 10' fill='none'%3E%3Cpath d='M1 5H17' stroke='%232e2e2e' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M15.5 1.5L20.5 5L15.5 8.5' stroke='%232e2e2e' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.carousel-feature--showcase .carousel-feature__badge[hidden],
.carousel-feature--showcase .carousel-feature__badge.is-empty {
  display: none;
}

.carousel-feature--showcase .carousel-feature__sep {
  display: none;
}

.carousel-feature--showcase .carousel-feature__desc {
  display: none;
}

.carousel-toolbar--showcase .carousel-btn {
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.products-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.82s;
}

.products-showcase__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.products-showcase__slide.is-leaving {
  opacity: 0;
  z-index: 1;
  filter: blur(6px);
}

.products-showcase__track[data-direction="next"] .products-showcase__slide.is-entering:not(.active) {
  transform: translate3d(40px, 8px, 0) scale(0.978);
}

.products-showcase__track[data-direction="prev"] .products-showcase__slide.is-entering:not(.active) {
  transform: translate3d(-40px, 8px, 0) scale(0.978);
}

.products-showcase__track[data-direction="next"] .products-showcase__slide.is-leaving {
  transform: translate3d(-36px, -6px, 0) scale(0.972);
}

.products-showcase__track[data-direction="prev"] .products-showcase__slide.is-leaving {
  transform: translate3d(36px, -6px, 0) scale(0.972);
}

.slide-card--showcase {
  --slide-gap: 0;
  --slide-pad-inline: clamp(1rem, 3vw, 2rem);
  --slide-pad-top: clamp(0.75rem, 2vh, 1.25rem);
  --slide-pad-bottom: clamp(0.75rem, 2vh, 1.25rem);
  --slide-content-offset: 0px;
  --slide-img-max-height: min(58vh, 440px);
  --slide-img-featured-scale: 1.15;
  background: transparent;
}

.slide-card--showcase .slide-card__media {
  max-height: 100%;
  overflow: hidden;
}

.slide-card--showcase .slide-card__media img {
  display: block;
  margin-inline: auto;
}

.slide-card--showcase .slide-card__product-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slide-card--showcase .slide-card__product-link:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .products-showcase__stage {
    max-width: 100%;
    padding-inline: clamp(0.75rem, 4vw, 1.125rem);
  }

  .products-showcase__shell {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.07);
    overflow: hidden;
  }

  .products-showcase__track {
    height: clamp(220px, 36vh, 300px);
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 72%);
  }

  .slide-card--showcase {
    --slide-pad-inline: 0.625rem;
    --slide-pad-top: 0.5rem;
    --slide-pad-bottom: 0.375rem;
    --slide-img-max-width: 100%;
    --slide-img-max-height: 100%;
    --slide-img-featured-scale: 1;
  }

  .slide-card--showcase .slide-card__media img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .products-showcase__control {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    padding: 0.625rem 0.75rem 0.75rem;
    border-top: 1px solid #eef2f6;
  }

  .carousel-toolbar--showcase {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.5rem;
  }

  .carousel-toolbar--showcase .carousel-toolbar__rule {
    display: none;
  }

  .carousel-toolbar--showcase .carousel-btn--prev {
    grid-column: 1;
    grid-row: 1;
  }

  .carousel-toolbar--showcase .carousel-feature--showcase {
    grid-column: 2;
    grid-row: 1;
    padding-inline: 0.35rem;
  }

  .carousel-toolbar--showcase .carousel-btn--next {
    grid-column: 3;
    grid-row: 1;
  }

  .carousel-feature--showcase .carousel-feature__model {
    font-size: 1rem;
  }

  .carousel-feature--showcase .carousel-feature__badge {
    font-size: 0.6875rem;
    gap: 0.3rem;
  }
}

/* ── Mobil: hero sonrası showcase & kategoriler ── */
@media (max-width: 640px) {
  .products-showcase {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .products-showcase__header {
    margin-bottom: 1.25rem;
    gap: 0.875rem;
    align-items: center;
    text-align: center;
  }

  .products-section-head {
    max-width: 20rem;
    margin-inline: auto;
  }

  .products-showcase__track {
    height: clamp(200px, 34vh, 280px);
  }

  .slide-card--showcase {
    --slide-pad-inline: 0.5rem;
    --slide-pad-top: 0.4375rem;
    --slide-pad-bottom: 0.3125rem;
  }

  .products-showcase__control {
    padding: 0.5625rem 0.625rem 0.6875rem;
  }

  .carousel-feature--showcase .carousel-feature__model {
    font-size: 0.9375rem;
  }

  .carousel-feature--showcase .carousel-feature__desc {
    display: none !important;
  }

  .categories-grid__item {
    min-height: 200px;
    padding: 1.25rem 1rem;
  }

  .categories-grid__title {
    font-size: clamp(1.125rem, 5vw, 1.375rem);
  }

  .categories-grid__discover {
    min-height: 44px;
    padding: 0.625rem 1rem;
  }
}

/* i18n: video hero — lang rules must override .video-hero__title display */
.video-hero__eyebrow[lang="en"],
.video-hero__title[lang="en"],
.video-hero__subtitle[lang="en"] {
  display: none;
}

html[data-lang="en"] .video-hero__eyebrow[lang="tr"],
html[data-lang="en"] .video-hero__title[lang="tr"],
html[data-lang="en"] .video-hero__subtitle[lang="tr"] {
  display: none;
}

html[data-lang="en"] .video-hero__eyebrow[lang="en"] {
  display: block;
}

html[data-lang="en"] .video-hero__title[lang="en"] {
  display: inline-grid;
}

html[data-lang="en"] .video-hero__subtitle[lang="en"] {
  display: block;
}

@media (max-width: 640px) {
  html[data-lang="en"] .video-hero__title[lang="en"] {
    display: block;
  }
}

/* ── Inner pages (atech-corporate theme) ── */
.page-inner {
  /* Header boşluğu .main-pars üzerinden (--pars-header) */
}

body.page-inner-shell .main-pars.page-inner {
  padding-top: var(--pars-header);
  transition: padding-top 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Inner sayfa ilk hero — header altına yapışık */
body.page-inner-shell .main-pars.page-inner > .quote-page-hero:first-child,
body.page-inner-shell .main-pars.page-inner > .catalog-page-head:first-child,
body.page-inner-shell .main-pars.page-inner > .page-hero:first-child {
  margin-top: 0;
}

.page-hero {
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(135deg, #0b0f14 0%, #151b24 55%, #1a2230 100%);
  color: #fff;
  overflow: visible;
}

.page-hero--light {
  background: #fff;
  color: #0f172a;
  border-bottom: 1px solid #e8ecf2;
}

.page-hero--light .page-hero__bg {
  display: none;
}

.page-hero--light .page-hero__breadcrumb {
  color: #64748b;
}

.page-hero--light .page-hero__breadcrumb a {
  color: #475569;
}

.page-hero--light .page-hero__breadcrumb a:hover {
  color: var(--color-brand);
}

.page-hero--light .page-hero__breadcrumb .page-hero__bc-current {
  color: #0f172a;
  font-weight: var(--font-weight-semibold);
}

.page-hero--light .page-hero__bc-sep {
  opacity: 0.55;
  color: #94a3b8;
}

.page-hero--light .page-hero__kicker {
  color: #64748b;
}

.page-hero--light .page-hero__title {
  color: #0f172a;
}

.page-hero--light .page-hero__lead {
  color: #64748b;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(219, 11, 18, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

/* Katalog (catalog-page-head) ile aynı: ortalı başlık standardı */
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  color: var(--color-brand);
}

.page-hero__breadcrumb .page-hero__bc-current {
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--font-weight-semibold);
}

.page-hero__bc-sep {
  opacity: 0.45;
}

.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--light .page-hero__kicker::before,
.page-hero--light .page-hero__kicker::after {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb, 219, 11, 18), 0.45));
}

.page-hero--light .page-hero__kicker::after {
  background: linear-gradient(90deg, rgba(var(--brand-rgb, 219, 11, 18), 0.45), transparent);
}

.page-hero__title {
  margin: 0;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight, 1.12);
  letter-spacing: var(--letter-spacing-heading, -0.022em);
  color: #fff;
}

.page-hero__lead {
  margin: 0.875rem auto 0;
  max-width: 36rem;
  font-size: clamp(0.875rem, 2vw, 0.96875rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.page-hero--compact {
  padding: clamp(1rem, 2.5vw, 1.375rem) 0 clamp(0.875rem, 2vw, 1.125rem);
}

.page-hero--compact.page-hero--light {
  background: #fff;
}

.page-hero--compact .page-hero__breadcrumb {
  margin-bottom: 0;
}

.page-hero--compact .page-hero__kicker {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .page-hero--light.page-hero--compact {
    padding: 0.875rem 0 0.75rem;
  }

  .page-hero {
    padding: 0.875rem 0 1.125rem;
  }

  .page-hero__breadcrumb {
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .page-hero__kicker {
    margin-bottom: 0.5rem;
  }

  .page-hero__title {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
  }

  .page-hero__lead {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
  }
}

.page-content {
  padding: clamp(2rem, 4vw, 3.5rem) 1rem clamp(3rem, 6vw, 5rem);
}

.page-section__placeholder {
  padding: 2rem;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.8);
  color: #475569;
  line-height: 1.6;
}

.page-inner-shell .preloader {
  display: none;
}

/* Footer marka — main.css önbelleğini override (son yüklenen tema CSS) */
.footer .logo.logo--footer {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0 0.875rem;
  border-radius: 8px;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.footer .logo.logo--footer .logo__img,
.footer .logo.logo--footer img {
  background: transparent !important;
}

.footer__brand .footer__desc {
  text-align: justify !important;
}

/* ── Hızlı iletişim modal ── */
.qc-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.qc-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.qc-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(66, 82, 96, 0.08), transparent 40%),
    rgba(18, 22, 28, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.qc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background-color: #fff;
  background-image: radial-gradient(rgba(66, 82, 96, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  border-radius: 4px;
  box-shadow:
    0 24px 64px rgba(8, 11, 16, 0.22),
    0 2px 8px rgba(8, 11, 16, 0.08);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.qc-modal.is-open .qc-modal__dialog {
  transform: translateY(0) scale(1);
}

.qc-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(66, 82, 96, 0.55);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.qc-modal__close:hover,
.qc-modal__close:focus-visible {
  color: var(--pars-gray-dark, #425260);
  transform: rotate(90deg);
}

.qc-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
}

.qc-modal__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(66, 82, 96, 0.45);
}

.qc-dept {
  margin-bottom: 1.35rem;
}

.qc-dept:last-child {
  margin-bottom: 0;
}

.qc-dept__name {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #2b333c;
  letter-spacing: -0.01em;
}

.qc-dept__link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.28rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(66, 82, 96, 0.82);
  text-decoration: none;
  transition: color 0.18s ease;
}

.qc-dept__link svg {
  flex-shrink: 0;
  color: rgba(66, 82, 96, 0.45);
}

.qc-dept__link:hover {
  color: var(--color-brand, #db0b12);
}

.qc-dept__link:hover svg {
  color: var(--color-brand, #db0b12);
}

.qc-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding-top: 0.35rem;
}

.qc-form__field {
  display: block;
  margin: 0;
}

.qc-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(66, 82, 96, 0.72);
}

.qc-form__field input,
.qc-form__field textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.35rem 0 0.55rem;
  border: 0;
  border-bottom: 1px solid rgba(66, 82, 96, 0.22);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #2b333c;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.qc-form__field input:focus,
.qc-form__field textarea:focus {
  border-bottom-color: var(--pars-gray-dark, #425260);
}

.qc-form__field--message textarea {
  min-height: 4.5rem;
}

.qc-form__submit {
  align-self: flex-start;
  margin-top: 0.35rem;
  min-width: 7.5rem;
  padding: 0.7rem 1.6rem;
  border: 0;
  border-radius: 4px;
  background: #5a636c;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.qc-form__submit:hover:not(:disabled) {
  background: #425260;
}

.qc-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.qc-form__status {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.qc-form__status.is-success {
  color: #1f7a4d;
}

.qc-form__status.is-error {
  color: #b42318;
}

.qc-form__legal {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: rgba(66, 82, 96, 0.5);
}

.qc-form__legal a {
  color: rgba(66, 82, 96, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.qc-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .site-header__contact-link:not(.site-header__contact-link--quick) .site-header__contact-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-header__contact-link:not(.site-header__contact-link--quick) {
    padding: 0.35rem;
  }
}

@media (max-width: 760px) {
  .qc-modal__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3.25rem 1.25rem 1.5rem;
  }

  .qc-modal__depts {
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(66, 82, 96, 0.1);
  }

  .site-header__contacts-sep {
    display: none;
  }
}

/* ── Announcement band / fuar duyuru kuşağı ── */
.announcement-band {
  --ab-h: 3rem;
  --ab-fg: #fff;
  --ab-accent: var(--color-brand, #db0b12);
  --ab-brand-rgb: var(--brand-rgb, 219, 11, 18);
  position: relative;
  z-index: 40;
  overflow: hidden;
  isolation: isolate;
  color: var(--ab-fg);
  background: #12080a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(var(--ab-brand-rgb), 0.45),
    0 8px 24px rgba(0, 0, 0, 0.28);
}
.announcement-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.announcement-band__bg-wash {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse 55% 120% at 12% 50%, rgba(var(--ab-brand-rgb), 0.82) 0%, transparent 58%),
    radial-gradient(ellipse 45% 140% at 88% 40%, rgba(var(--ab-brand-rgb), 0.55) 0%, transparent 55%),
    linear-gradient(105deg, #1a0508 0%, #3a0c12 28%, #0c1016 62%, #18060a 100%);
  background-size: 140% 140%;
  animation: ab-bg-shift 7s ease-in-out infinite alternate;
}
.announcement-band__bg-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle 140px at 18% 50%, rgba(255, 80, 80, 0.55) 0%, transparent 70%),
    radial-gradient(circle 180px at 72% 40%, rgba(255, 40, 40, 0.4) 0%, transparent 68%),
    radial-gradient(circle 120px at 92% 60%, rgba(255, 180, 160, 0.28) 0%, transparent 65%);
  animation: ab-glow-pulse 2.8s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
.announcement-band__bg-sheen {
  position: absolute;
  inset: -10% -30%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.05) 44%,
    rgba(255, 255, 255, 0.55) 49%,
    rgba(255, 210, 210, 0.35) 51%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 60%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: ab-sheen 2.6s linear infinite;
  mix-blend-mode: soft-light;
}
.announcement-band__bg-flare {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 45%;
  height: 180%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 120, 120, 0.2) 58%,
    transparent 70%
  );
  filter: blur(6px);
  animation: ab-flare 3.8s ease-in-out infinite;
  mix-blend-mode: overlay;
  opacity: 0.85;
}
.announcement-band__bg-sparkles {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-image:
    radial-gradient(circle, #fff 0 1.1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 220, 220, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, #fff 0 0.9px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 180, 180, 0.9) 0 1.2px, transparent 1.8px);
  background-size: 120px 40px, 160px 40px, 90px 40px, 140px 40px;
  background-position: 8% 40%, 35% 55%, 62% 35%, 88% 60%;
  animation: ab-sparkle 1.8s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
.announcement-band__bg-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(
    -28deg,
    transparent 0,
    transparent 10px,
    rgba(255, 255, 255, 0.08) 10px,
    rgba(255, 255, 255, 0.08) 11px
  );
  background-size: 28px 28px;
  animation: ab-stripes 18s linear infinite;
}
@keyframes ab-bg-shift {
  from { transform: translate3d(-4%, 0, 0) scale(1.05); }
  to { transform: translate3d(4%, 0, 0) scale(1.08); }
}
@keyframes ab-glow-pulse {
  from { opacity: 0.55; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}
@keyframes ab-sheen {
  from { background-position: 160% 0; }
  to { background-position: -90% 0; }
}
@keyframes ab-flare {
  0% { transform: translateX(-30%) skewX(-12deg); opacity: 0; }
  15% { opacity: 0.9; }
  45% { opacity: 0.75; }
  70% { transform: translateX(160%) skewX(-12deg); opacity: 0; }
  100% { transform: translateX(160%) skewX(-12deg); opacity: 0; }
}
@keyframes ab-sparkle {
  from {
    opacity: 0.35;
    filter: brightness(0.85);
    background-position: 8% 40%, 35% 55%, 62% 35%, 88% 60%;
  }
  to {
    opacity: 1;
    filter: brightness(1.35);
    background-position: 12% 30%, 40% 65%, 58% 45%, 84% 40%;
  }
}
@keyframes ab-stripes {
  from { background-position: 0 0; }
  to { background-position: 56px 0; }
}
/* Ana sayfa: hero üzerinde overlay — scroll ile hero ile gider, içeriği aşağı itmez */
.announcement-band--home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  min-height: var(--ab-h, 3rem);
  pointer-events: auto;
  /* flex çocuğu olarak yer kaplamasın diye absolute; ekstra güvence */
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
}
/* Video hero tam ekran: yapısal header yüksekliği (scrolled’da küçülen --pars-header’a bağlama) */
body.carousel-video-active .announcement-band--home {
  top: var(--ab-top, calc(var(--pars-header-main, 70px) + var(--pars-topbar-size, var(--pars-topbar, 36px))));
}
.announcement-band--after-hero {
  position: relative;
  z-index: 5;
}
/* Hero altına çekilen kartlar kuşağın üstüne binmesin */
.announcement-band--after-hero + *,
.announcement-band--after-hero + .about-page-stats,
.announcement-band--after-hero + .product-detail-page,
.announcement-band--after-hero + .event-hero,
.announcement-band--after-hero + .page-section,
.announcement-band--after-hero + .events-page,
.announcement-band--after-hero + .quote-page-body,
.announcement-band--after-hero + .catalog-toolbar,
.announcement-band--after-hero + .gallery-page-main {
  margin-top: 0 !important;
}
.announcement-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 3rem;
  padding: 0.5rem clamp(0.75rem, 2vw, 1.25rem);
  max-width: 1400px;
  margin: 0 auto;
}
.announcement-band__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #db0b12 0%, #9f0710 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 4px 14px rgba(219, 11, 18, 0.35);
  animation: ab-badge-pop 2.4s ease-in-out infinite;
}
.announcement-band__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: ab-pulse 1.35s ease-out infinite;
}
@keyframes ab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); transform: scale(1); }
  70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); transform: scale(1); }
}
@keyframes ab-badge-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.announcement-band__ticker {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.announcement-band__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: ab-marquee 24s linear infinite;
}
.announcement-band__item {
  font-size: clamp(0.8125rem, 1.5vw, 0.975rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
@keyframes ab-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-band__track,
  .announcement-band__pulse,
  .announcement-band__badge,
  .announcement-band__bg-wash,
  .announcement-band__bg-glow,
  .announcement-band__bg-sheen,
  .announcement-band__bg-flare,
  .announcement-band__bg-sparkles,
  .announcement-band__bg-stripes,
  .announcement-band__cta--primary {
    animation: none !important;
  }
}
.announcement-band__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.announcement-band__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.announcement-band__cta--primary {
  background: #fff;
  color: #9f0710;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  animation: ab-cta-nudge 2.8s ease-in-out infinite;
}
.announcement-band__cta--outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.75);
}
.announcement-band__cta--dark {
  background: #0f1419;
  color: #fff;
}
.announcement-band__cta--white {
  background: #fff;
  color: #0f1419;
}
.announcement-band__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
@keyframes ab-cta-nudge {
  0%, 100% { transform: translateY(0); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22); }
  50% { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28); }
}
@media (max-width: 640px) {
  .announcement-band {
    --ab-h: 2.75rem;
  }
  .announcement-band--home {
    min-height: var(--ab-h);
  }
  .announcement-band__inner {
    flex-wrap: nowrap;
    gap: 0.4rem 0.5rem;
    min-height: var(--ab-h);
    padding: 0.35rem 0.65rem;
  }
  .announcement-band__badge {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.45rem;
    max-width: 38vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .announcement-band__ticker {
    order: unset;
    flex: 1 1 auto;
    min-width: 0;
  }
  .announcement-band__item {
    font-size: 0.75rem;
    font-weight: 600;
  }
  .announcement-band__cta {
    min-height: 1.85rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.6875rem;
  }
  .announcement-band--hide-mobile {
    display: none !important;
  }
}

/* ── Site popup / duyuru modülü ── */
.site-popup {
  position: fixed;
  inset: 0;
  z-index: 235;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 22, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.site-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(8, 11, 16, 0.24);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-popup__dialog--media_hero {
  width: min(720px, 100%);
}

.site-popup.is-open .site-popup__dialog {
  transform: translateY(0) scale(1);
}

.site-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(66, 82, 96, 0.7);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-popup__preview-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #d97706;
  border-radius: 4px;
}

.site-popup__media img,
.site-popup__video-file {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px 6px 0 0;
}

.site-popup__dialog--modal .site-popup__media img,
.site-popup__dialog--modal .site-popup__media--video {
  border-radius: 6px 6px 0 0;
}

.site-popup__video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f1419;
}

.site-popup__video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-popup__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.site-popup__dialog--media_hero .site-popup__body {
  padding-top: 1rem;
}

.site-popup__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #2b333c;
  line-height: 1.25;
}

.site-popup__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(43, 51, 60, 0.88);
}

.site-popup__text p {
  margin: 0 0 0.75rem;
}

.site-popup__text p:last-child {
  margin-bottom: 0;
}

.site-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 6px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.site-popup__cta:hover {
  transform: translateY(-1px);
}

.site-popup__cta--primary {
  background: var(--color-brand, #db0b12);
  border-color: var(--color-brand, #db0b12);
  color: #fff;
}

.site-popup__cta--primary:hover {
  filter: brightness(1.06);
  color: #fff;
}

.site-popup__cta--outline {
  background: transparent;
  border-color: rgba(219, 11, 18, 0.55);
  color: var(--color-brand, #db0b12);
}

.site-popup__cta--outline:hover {
  background: rgba(219, 11, 18, 0.08);
  border-color: var(--color-brand, #db0b12);
  color: var(--color-brand, #db0b12);
}

.site-popup__cta--dark {
  background: #1a222b;
  border-color: #1a222b;
  color: #fff;
}

.site-popup__cta--dark:hover {
  background: #0f1419;
  border-color: #0f1419;
  color: #fff;
}

.site-popup__cta--white {
  background: #fff;
  border-color: #fff;
  color: var(--color-brand, #db0b12);
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.12);
}

.site-popup__cta--white:hover {
  background: #f8fafc;
  color: var(--color-brand, #db0b12);
}

.site-popup__dismiss-link {
  display: block;
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.8125rem;
  color: rgba(66, 82, 96, 0.55);
  cursor: pointer;
  text-decoration: underline;
}

.site-popup__dismiss-link:hover {
  color: rgba(66, 82, 96, 0.85);
}

body.site-popup-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .site-popup__dialog {
    width: 100%;
    max-height: 92vh;
  }
}

/* ── Etkinlikler ── */
.events-section-title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2b333c;
}
.events-section-title--past {
  margin-top: 2.5rem;
  color: rgba(43, 51, 60, 0.65);
}
.events-empty {
  padding: 2rem 0;
  color: rgba(43, 51, 60, 0.7);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.event-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(66, 82, 96, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
  border-color: rgba(66, 82, 96, 0.28);
  box-shadow: 0 12px 32px rgba(8, 11, 16, 0.06);
}
.event-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #eef1f4;
  overflow: hidden;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card__placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(66, 82, 96, 0.35);
  font-size: 2rem;
}
.event-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.event-card__badge {
  display: inline-flex;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
}
.event-card__badge--emerald { background: #d1fae5; color: #065f46; }
.event-card__badge--sky { background: #e0f2fe; color: #075985; }
.event-card__badge--slate { background: #f1f5f9; color: #475569; }
.event-card__type {
  font-size: 0.75rem;
  color: rgba(66, 82, 96, 0.55);
}
.event-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.3;
}
.event-card__title a {
  color: inherit;
  text-decoration: none;
}
.event-card__date,
.event-card__place {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  color: rgba(43, 51, 60, 0.7);
}
.event-card__excerpt {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(43, 51, 60, 0.78);
  line-height: 1.5;
  flex: 1;
}
.event-card__cta {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pars-accent, #1d4ed8);
  text-decoration: none;
}
.events-past-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(66, 82, 96, 0.1);
}
.events-past-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(66, 82, 96, 0.08);
  font-size: 0.9375rem;
}
.events-past-list a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.events-past-list span {
  color: rgba(66, 82, 96, 0.45);
}

.event-detail.page-section {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}
.event-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.event-detail__grid--solo {
  grid-template-columns: minmax(0, 48rem);
}

/* —— Event detail hero —— */
.event-hero {
  position: relative;
  background: #0f1419;
  color: #fff;
  overflow: hidden;
}
.event-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.event-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}
.event-hero--has-cover .event-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.35) 0%, rgba(8, 11, 16, 0.72) 55%, rgba(8, 11, 16, 0.92) 100%);
}
.event-hero--has-cover .event-hero__band {
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: flex-end;
}
.event-hero__band {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.25rem, 5vw, 3.5rem);
}
.event-hero:not(.event-hero--has-cover) {
  background:
    linear-gradient(145deg, #1a222b 0%, #0f1419 50%, #2a0a0c 100%);
}
/* Event detail hero inner width comes from .container */
.event-hero__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.event-hero__status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.event-hero__status--emerald {
  background: rgba(16, 185, 129, 0.25);
  color: #a7f3d0;
}
.event-hero__status--sky {
  background: rgba(14, 165, 233, 0.28);
  color: #bae6fd;
}
.event-hero__status--slate {
  background: rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
}
.event-hero__title {
  margin: 0 0 0.85rem;
  font-family: inherit;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.event-hero__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}
.event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.event-hero__cta {
  background: var(--color-brand, #db0b12) !important;
  border-color: var(--color-brand, #db0b12) !important;
  min-width: 10rem;
  justify-content: center;
}
.event-hero__cta:hover {
  filter: brightness(1.08);
}
.event-hero__back {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.event-hero__back:hover {
  color: #fff;
}

/* —— Fact strip —— */
.event-facts {
  border-bottom: 1px solid rgba(66, 82, 96, 0.1);
  background: #f7f8fa;
}
.event-facts__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.event-facts__item {
  padding: 1.15rem 1.25rem;
  border-right: 1px solid rgba(66, 82, 96, 0.1);
}
.event-facts__item:last-child {
  border-right: 0;
}
.event-facts__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(66, 82, 96, 0.5);
}
.event-facts__value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1a222b;
  line-height: 1.35;
}
.event-facts__value--booth {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.04em;
  color: var(--color-brand, #db0b12);
}

.event-detail__content {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(26, 34, 43, 0.88);
}
.event-detail__content > *:first-child {
  margin-top: 0;
}
.event-detail__subhead {
  margin: 1.75rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(66, 82, 96, 0.55);
}
.event-detail__venue p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(43, 51, 60, 0.8);
}
.event-detail__external {
  margin: 1.75rem 0 0;
}
.event-detail__ext-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-brand, #db0b12);
  text-decoration: none;
}
.event-detail__ext-link:hover {
  text-decoration: underline;
}

.event-book-card {
  position: sticky;
  top: 1rem;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(66, 82, 96, 0.12);
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(8, 11, 16, 0.07);
  overflow: hidden;
}
.event-book-card__head {
  padding: 1.35rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(66, 82, 96, 0.08);
  background:
    linear-gradient(180deg, rgba(219, 11, 18, 0.04), transparent 80%);
}
.event-book-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand, #db0b12);
}
.event-book-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1a222b;
}
.event-book-card__lead {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(43, 51, 60, 0.68);
  line-height: 1.5;
}
.event-book-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(66, 82, 96, 0.08);
  background: #fafbfc;
}
.event-book-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(66, 82, 96, 0.38);
  border-right: 1px solid rgba(66, 82, 96, 0.06);
  transition: color 0.2s ease, background 0.2s ease;
}
.event-book-steps li:last-child {
  border-right: 0;
}
.event-book-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(66, 82, 96, 0.1);
  font-size: 0.625rem;
}
.event-book-steps li.is-active {
  color: var(--color-brand, #db0b12);
  background: #fff;
}
.event-book-steps li.is-active span {
  background: var(--color-brand, #db0b12);
  color: #fff;
}
.event-book-steps li.is-done {
  color: #059669;
}
.event-book-steps li.is-done span {
  background: #059669;
  color: #fff;
}
.event-book-form {
  padding: 1.15rem 1.4rem 1.4rem;
}
.event-book-fieldset {
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
}
.event-book-fieldset--submit {
  margin-bottom: 0;
}
.event-book-fieldset legend {
  margin: 0 0 0.7rem;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(66, 82, 96, 0.55);
}
.event-book-form__field {
  display: block;
  margin-bottom: 0.75rem;
}
.event-book-form__field span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(66, 82, 96, 0.65);
}
.event-book-form__field span em {
  color: var(--color-brand, #db0b12);
  font-style: normal;
}
.event-book-form__field input,
.event-book-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(66, 82, 96, 0.18);
  border-radius: 3px;
  font: inherit;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.event-book-form__field input:focus,
.event-book-form__field textarea:focus {
  outline: none;
  border-color: var(--color-brand, #db0b12);
  box-shadow: 0 0 0 3px rgba(219, 11, 18, 0.12);
}
.event-book-form__field input.is-invalid {
  border-color: #dc2626;
}
.event-book-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.event-book-form__terms {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}
.event-book-form__terms em {
  color: var(--color-brand, #db0b12);
  font-style: normal;
}
.event-book-form__terms a {
  color: inherit;
  font-weight: 700;
}
.event-book-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: #b91c1c;
}
.event-book-note {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: rgba(66, 82, 96, 0.5);
}
.event-time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.event-time-chip {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(66, 82, 96, 0.18);
  border-radius: 3px;
  background: #fff;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2b333c;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.event-time-chip:hover {
  border-color: var(--color-brand, #db0b12);
  color: var(--color-brand, #db0b12);
}
.event-time-chip.is-selected {
  background: var(--color-brand, #db0b12);
  border-color: var(--color-brand, #db0b12);
  color: #fff;
}
.event-book-submit {
  width: 100%;
  margin-top: 0.15rem;
  background: var(--color-brand, #db0b12) !important;
  border-color: var(--color-brand, #db0b12) !important;
}
.event-book-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.event-book-reassure {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: rgba(66, 82, 96, 0.5);
  text-align: center;
}
.event-book-alert {
  margin: 0.85rem 1.4rem 0;
  padding: 0.75rem 0.85rem;
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.45;
}
.event-book-form .event-book-alert {
  margin: 0 0 0.85rem;
}
.event-book-alert--ok {
  background: #ecfdf5;
  color: #065f46;
}
.event-book-alert--err {
  background: #fef2f2;
  color: #991b1b;
}
.event-detail__mobile-cta {
  display: none;
  margin: 1.75rem 0 0;
}
.event-detail__mobile-cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--color-brand, #db0b12) !important;
  border-color: var(--color-brand, #db0b12) !important;
}

@media (max-width: 900px) {
  .event-detail__grid {
    grid-template-columns: 1fr;
  }
  .event-book-card {
    position: static;
  }
  .event-detail__mobile-cta {
    display: block;
  }
  .event-facts__row {
    grid-template-columns: 1fr;
  }
  .event-facts__item {
    border-right: 0;
    border-bottom: 1px solid rgba(66, 82, 96, 0.1);
  }
  .event-facts__item:last-child {
    border-bottom: 0;
  }
  .event-hero__band {
    padding-top: clamp(2.5rem, 12vw, 4rem);
  }
}
@media (max-width: 520px) {
  .event-book-form__row {
    grid-template-columns: 1fr;
  }
  .event-book-steps li {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.625rem;
  }
}

