/* Medicaline deneme � Amaterasu scroll referans tasar?m? */
:root {
  --intro-surface: #f3f4f7;
  --text: #0f1c2e;
  --text-muted: #4a5f73;
  --ama-deep: #030818;
  --ama-mid: #0a2a42;
  --ama-teal: #2a8fa8;
  --ama-teal-glow: #4ec4dc;
  --ama-text-light: #f4f8fb;
  --ama-muted-light: rgba(244, 248, 251, 0.62);
  --ama-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ama-pad: clamp(1.25rem, 4vw, 3rem);
  --ama-header-h: 4.5rem;
  --ama-vw: 100%;
  --ama-hero-img-h: calc(100vw * 9 / 16);
  --ama-scroll-on-img: 72vh;
  --ama-scroll-hold: min(22vh, 200px);
  --ama-ease-soft: cubic-bezier(0.33, 0, 0.2, 1);
  --ama-vision-radius: clamp(1.35rem, 4.2vw, 2.75rem);
  --ama-sans: "DM Sans", system-ui, sans-serif;
  --ama-vision-cover: 0;
  --ama-hero-bg-pos: 0;
  --ama-hero-bg-y: 0px;
  --ama-hero-bg-scale: 1;
  --ama-hero-img-mix: 0;
  --ama-flow-shift: 0px;
  --ama-light-x: 72%;
  --ama-light-y: 12%;
  --ama-light-angle: 218deg;
  --ama-light-strength: 0.14;
  --ama-light-proximity: 0.88;
  --ama-header-bg: 0;
  --ama-orb-progress: 0;
  --ama-products-quote-fade: 0;
  --ama-orb-clip-r: 0px;
  --ama-orb-reveal-h: min(280vh, 1920px);
  --ama-orb-reveal-hold: min(52vh, 440px);
  --ama-scene-gradient:
    radial-gradient(ellipse 120% 80% at 85% 20%, rgba(42, 143, 168, 0.35), transparent 50%),
    radial-gradient(ellipse 90% 70% at 10% 80%, rgba(10, 42, 66, 0.9), transparent 55%),
    linear-gradient(145deg, var(--ama-deep) 0%, var(--ama-mid) 55%, #061828 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--intro-surface);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

.ama {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--ama-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ama-text-light);
  background-color: var(--intro-surface);
  overflow-x: clip;
  --header-reserve: calc(var(--ama-header-h) + env(safe-area-inset-top, 0px));
  --catalog-available: calc(100dvh - var(--header-reserve) - 1.75rem);
  --catalog-vh-mult: 1.4;
  --catalog-max-h-inner: min(var(--catalog-available), calc(68vh * var(--catalog-vh-mult)));
  --catalog-max-h: calc(var(--catalog-max-h-inner) + 200px);
  --brand: #3079b5;
}

/* Hero g�rseli sabit; vizyon paneli �stten �rter (Amaterasu) */
.ama::before,
.ama-hero-bg--alt {
  display: none !important;
}

.ama::after {
  display: none;
}

body.ama.ama-hero-bg-hidden .ama-hero__stage {
  opacity: 1;
  visibility: visible;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scroll sayac? */
.ama-scroll-meter {
  position: fixed;
  top: 50%;
  left: var(--ama-pad);
  z-index: 90;
  transform: translateY(-50%);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}

/* Header � ortada marka, sa?da Vizyon + grid */
.ama-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--ama-header-h);
  padding: env(safe-area-inset-top, 0) var(--ama-pad) 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.4s var(--ama-ease);
  will-change: transform;
}

body.ama-header-hidden:not(.is-nav-open) .ama-header {
  transform: translateY(calc(-100% - env(safe-area-inset-top, 0px)));
  pointer-events: none;
}

.ama-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #2a4a66;
  background-image: url("images/arkaplaneader.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, calc(var(--ama-header-bg, 0) * 0.18));
  opacity: var(--ama-header-bg, 0);
  transition:
    opacity 0.35s var(--ama-ease),
    border-color 0.35s var(--ama-ease);
}

.ama-header__brand,
.ama-header__end,
.ama-header__menu-toggle {
  pointer-events: auto;
}

.ama-header__brand {
  grid-column: 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ama-header__logo {
  display: block;
  width: clamp(6.5rem, 16vw, 9.375rem);
  height: auto;
  transition: opacity 0.35s var(--ama-ease);
}

.ama-header__logo--dark {
  opacity: calc(1 - var(--ama-header-bg, 0));
}

.ama-header__logo--light {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: var(--ama-header-bg, 0);
}

.ama-header__end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
}

.ama-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: color-mix(
    in srgb,
    var(--text) calc((1 - var(--ama-header-bg, 0)) * 100%),
    #fff calc(var(--ama-header-bg, 0) * 100%)
  );
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.ama-header__menu-toggle:focus-visible {
  outline: 2px solid var(--ama-teal-glow);
  outline-offset: 2px;
}

.ama-header__menu-bars {
  display: block;
  position: relative;
  top: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.28s var(--ama-ease),
    background 0.28s var(--ama-ease),
    opacity 0.28s var(--ama-ease);
}

.ama-header__menu-bars::before,
.ama-header__menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.28s var(--ama-ease), top 0.28s var(--ama-ease);
}

.ama-header__menu-bars::before {
  top: -7px;
}

.ama-header__menu-bars::after {
  top: 7px;
}

body.is-nav-open .ama-header__menu-bars {
  background: transparent;
}

body.is-nav-open .ama-header__menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.is-nav-open .ama-header__menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

body.ama-past-hero .ama-scroll-meter {
  color: rgba(15, 28, 46, 0.07);
}

body.ama-past-hero .ama-scroll-top {
  border-color: rgba(15, 28, 46, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
}

/* Nav � index.html �ekmece men� */
body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .ama-header {
  z-index: 420;
  isolation: isolate;
}

body.is-nav-open .ama-header__end {
  position: relative;
  z-index: 2;
}

body.is-nav-open .ama-header__logo--dark {
  opacity: 0;
}

body.is-nav-open .ama-header__logo--light {
  opacity: 1;
}

body.is-nav-open .ama-header__menu-toggle {
  position: relative;
  z-index: 3;
  color: #fff;
}

.ama-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.is-nav-open .ama-nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ama-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 410;
  width: min(88vw, 300px);
  max-width: 100%;
  margin: 0;
  padding:
    calc(env(safe-area-inset-top, 0px) + var(--ama-header-h) + 0.75rem)
    1.25rem
    1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #2a4a66;
  background-image: url("images/arkaplaneader.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.ama-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.ama-nav__scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ama-nav__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding: 0 0 1.125rem;
  margin: 0 0 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.ama-nav__logo {
  display: block;
  line-height: 0;
}

.ama-nav__logo img {
  display: block;
  height: clamp(38px, 6vw, 48px);
  width: auto;
}

.ama-nav__scroll > a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  white-space: normal;
  text-align: left;
}

.ama-nav__scroll > a:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.ama-nav__scroll > a:hover,
.ama-nav__scroll > a:focus-visible {
  color: rgba(255, 255, 255, 0.95);
  outline: none;
}

.ama-lang-switcher--drawer {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.125rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9375rem;
  color: #fff;
}

.ama-lang-switcher__current {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
}

.ama-lang-switcher__sep {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.ama-lang-switcher__link {
  padding: 0.65rem 1rem;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  font-size: 0.9375rem;
}

.ama-lang-switcher__link:hover,
.ama-lang-switcher__link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  outline: none;
}

.ama-main,
.ama-footer,
.ama-scroll-meter,
.ama-scroll-top {
  position: relative;
  z-index: 1;
}

.ama-main {
  width: 100%;
  max-width: 100%;
  background: transparent;
}

.ama-vision,
.ama-scene,
.ama-meet,
.ama-footer,
.catalog-section,
.ama-instagram,
.events-section,
.contact-section {
  width: 100%;
  max-width: 100%;
}

/* Kongre ve Etkinlikler � index.html ile ayn? blok (style.css); deneme ak???na uyum */
.ama .events-section,
.ama .contact-section {
  position: relative;
  z-index: 2;
  color: var(--text);
}

.ama .events-section .event-card__media {
  aspect-ratio: 4 / 5;
}

.ama .events-section .event-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

.ama .contact-section__panel {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Kongreler ve Etkinlikler — katalog ile aynı scroll reveal + kart dağılımı */
.events-section--ama-reveal .ama-events-reveal {
  opacity: 0;
  transform: translate3d(0, 2.75rem, 0) scale(0.98);
  filter: blur(10px);
  transition:
    opacity 1.05s var(--ama-ease),
    transform 1.15s var(--ama-ease-soft),
    filter 1.2s var(--ama-ease);
  transition-delay: calc(var(--events-reveal-delay, 0) * 0.13s);
  will-change: opacity, transform, filter;
}

.events-section--ama-reveal.is-revealed .ama-events-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}



@media (min-width: 900px) {
  .events-section--ama-reveal .events-section__title {
    margin-top: 0;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .events-section__marquee {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.events-section--ama-reveal .events-section__title.ama-events-reveal {
  transform: translate3d(0, 2rem, 0) scale(0.99);
  letter-spacing: 0.06em;
}

.events-section--ama-reveal.is-revealed .events-section__title.ama-events-reveal {
  letter-spacing: 0.02em;
  transition:
    opacity 1.05s var(--ama-ease),
    transform 1.15s var(--ama-ease-soft),
    filter 1.2s var(--ama-ease),
    letter-spacing 1.4s var(--ama-ease);
}

.events-section--ama-reveal:not(.is-revealed) .events-section__marquee,
.events-section--ama-reveal:not(.is-revealed) .events-section__more {
  pointer-events: none;
}

.events-section__marquee {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(1rem, 3vw, 1.65rem);
  align-self: stretch;
}

.events-section.events-section--ama-reveal .events-section__pin {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.events-section__inner--cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

.events-section .ama-instagram__marquee {
  width: 100%;
}

.events-section.is-dragging .ama-instagram__marquee-viewport {
  cursor: grabbing;
}

.events-section.is-slider-active .ama-instagram__card:hover {
  transform: translateY(-4px) scale(1.02);
}

.events-section.is-dragging .ama-instagram__card:hover {
  transform: none;
}

.events-section--ama-reveal #events-reveal-grid .event-card:nth-child(1) {
  --card-fly-x: -26vw;
  --card-fly-y: -16vh;
  --card-fly-rot: -9deg;
  --card-fly-scale: 0.9;
}

.events-section--ama-reveal #events-reveal-grid .event-card:nth-child(2) {
  --card-fly-x: 3vw;
  --card-fly-y: -20vh;
  --card-fly-rot: 5deg;
  --card-fly-scale: 0.88;
}

.events-section--ama-reveal #events-reveal-grid .event-card:nth-child(3) {
  --card-fly-x: 28vw;
  --card-fly-y: -18vh;
  --card-fly-rot: 10deg;
  --card-fly-scale: 0.9;
}

.events-section--ama-reveal
  #events-reveal-grid:not(.is-cards-dealt)
  .event-card {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--card-fly-x), var(--card-fly-y), 32px)
    rotate(var(--card-fly-rot)) scale(var(--card-fly-scale));
  transform-origin: 50% 108%;
  filter: blur(5px);
}

.events-section--ama-reveal #events-reveal-grid.is-deal-active .event-card {
  pointer-events: auto;
  animation: ama-events-card-deal 1.85s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(0.65s + var(--card-deal-delay, 0) * 0.28s);
}

.events-section--ama-reveal #events-reveal-grid.is-cards-dealt .event-card {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  filter: none;
  animation: none;
}

@keyframes ama-events-card-deal {
  0% {
    opacity: 0;
    transform: translate3d(var(--card-fly-x), var(--card-fly-y), 32px)
      rotate(var(--card-fly-rot)) scale(var(--card-fly-scale));
    filter: blur(5px);
  }
  55% {
    opacity: 0.5;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (min-width: 900px) {
  .events-section--ama-reveal #events-reveal-grid.is-deal-active .event-card {
    animation-duration: 2s;
  }
}

/* Mobil: Kongreler — görseller alt alta */
@media (max-width: 899px) {
  .events-section.events-section--ama-reveal {
    overflow: visible;
  }

  .events-section.events-section--ama-reveal .ama-scene-reveal__track {
    height: auto;
    min-height: 0;
  }

  .events-section.events-section--ama-reveal .ama-scene-reveal__sticky.events-section__pin {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
  }

  .events-section.events-section--ama-reveal .ama-scene-reveal__hold {
    height: 0;
    min-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  /* Mobil: İletişim — formun tamamı (telefon, mesaj, gönder, adres, harita) görünsün */
  .contact-section.ama-section--pin {
    overflow: visible;
  }

  .contact-section.ama-section--pin .ama-scene-reveal__track {
    height: auto;
    min-height: 0;
  }

  .contact-section.ama-section--pin .ama-scene-reveal__sticky.contact-section__pin {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
  }

  .contact-section.ama-section--pin .ama-scene-reveal__hold {
    height: 0;
    min-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .contact-section.ama-section--pin .contact-section__inner {
    max-height: none;
    overflow: visible;
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .ama .events-section {
    margin-top: 0;
    padding: 0;
  }

  .events-section.events-section--ama-reveal .events-section__inner {
    width: 100%;
    max-width: 1100px;
    min-height: 0;
    max-height: none;
    padding-inline: var(--ama-pad);
    padding-block: clamp(1.25rem, 4vw, 2rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .events-section--ama-reveal .events-section__title {
    margin-top: 0;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(1.3rem, 4.8vw, 1.55rem);
    flex-shrink: 0;
  }

  .events-section--ama-reveal .events-section__marquee {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    flex: 0 0 auto;
    align-self: stretch;
  }

  .events-section.events-section--ama-reveal .events-section__inner--cta {
    padding-inline: var(--ama-pad);
    box-sizing: border-box;
  }

  .events-section--ama-reveal .events-section__grid {
    --events-mobile-gap: clamp(0.85rem, 3vw, 1.15rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--events-mobile-gap);
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
    flex: 0 0 auto;
    align-content: start;
  }

  .ama .events-section .event-card {
    border-radius: clamp(10px, 2.5vw, 14px);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(24, 52, 78, 0.1);
  }

  .ama .events-section .event-card__media {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-height: none;
    height: auto;
  }

  .ama .events-section .event-card__media img {
    object-fit: cover;
    object-position: center;
  }

  .events-section--ama-reveal .events-section__more {
    margin-top: clamp(1.25rem, 4vw, 1.75rem);
    flex-shrink: 0;
    align-self: center;
  }
}

/* Instagram � ?effaf zemin, 9:16 kartlar (API sonra ba?lanacak) */
.ama-instagram {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(0.35rem, 1vh, 0.75rem) 0 clamp(0.2rem, 0.6vh, 0.45rem);
  background: transparent;
  color: var(--text);
}

/* Instagram + Kongre + İletişim: pin scroll boslugunu kaldir, bolumleri yaklastir */
body.ama .ama-instagram.ama-section--pin .ama-scene-reveal__track,
body.ama .events-section.events-section--ama-reveal .ama-scene-reveal__track,
body.ama .contact-section.ama-section--pin .ama-scene-reveal__track {
  height: auto;
  min-height: 0;
}

body.ama .ama-instagram.ama-section--pin .ama-scene-reveal__sticky.ama-instagram__pin,
body.ama .events-section.events-section--ama-reveal .ama-scene-reveal__sticky.events-section__pin,
body.ama .contact-section.ama-section--pin .ama-scene-reveal__sticky.contact-section__pin {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
  background: transparent;
}

body.ama .ama-instagram.ama-section--pin .ama-scene-reveal__hold,
body.ama .events-section.events-section--ama-reveal .ama-scene-reveal__hold,
body.ama .contact-section.ama-section--pin .ama-scene-reveal__hold {
  height: 0;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
}

body.ama .events-section.events-section--ama-reveal {
  margin-top: 100px;
  padding: clamp(0.25rem, 0.8vh, 0.65rem) clamp(16px, 4vw, 40px) clamp(2rem, 4vw, 3rem);
}

body.ama .events-section.events-section--ama-reveal .events-section__inner {
  padding-block: clamp(0.25rem, 0.8vh, 0.65rem);
}

body.ama .events-section--ama-reveal .events-section__title {
  margin-bottom: 80px;
}

.ama-instagram__marquee {
  width: 100%;
}

.ama-instagram__marquee-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ama-instagram.is-dragging .ama-instagram__marquee-viewport {
  cursor: grabbing;
}

.ama-instagram__marquee-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: max-content;
  will-change: transform;
}

.ama-instagram__marquee-track .ama-instagram__card {
  pointer-events: none;
}

.ama-instagram__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(0.85rem, 2.8vw, 1.35rem);
  margin: 0;
  padding: 0 clamp(0.45rem, 1.5vw, 0.65rem);
  list-style: none;
  flex: 0 0 auto;
}

.ama-instagram__item {
  flex: 0 0 auto;
}

.ama-instagram__card {
  display: block;
  width: min(17.5rem, 42vw);
  aspect-ratio: 9 / 16;
  margin: 0;
  border-radius: clamp(0.85rem, 2.2vw, 1.1rem);
  overflow: hidden;
  background: color-mix(in srgb, var(--text) 6%, transparent);
  box-shadow: 0 12px 36px rgb(0 0 0 / 0.1);
  transition: transform 0.4s var(--ama-ease);
}

.ama-instagram.is-slider-active .ama-instagram__card:hover {
  transform: translateY(-4px) scale(1.02);
}

.ama-instagram.is-dragging .ama-instagram__card:hover {
  transform: none;
}

.ama-instagram__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
}

@media (min-width: 900px) {
  .ama-instagram__card {
    width: min(15.75rem, 18vw);
  }

  .ama-instagram__track {
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ama-instagram__marquee-viewport {
    overflow-x: auto;
    cursor: auto;
    touch-action: pan-x;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(var(--ama-pad), env(safe-area-inset-left, 0px));
  }

  .ama-instagram__marquee-track {
    transform: none !important;
  }

  .ama-instagram__item {
    scroll-snap-align: start;
  }
}

/* Kataloglar?m?z � scroll ile kademeli a�?l?? */
.catalog-section--ama-reveal {
  position: relative;
  z-index: 2;
  padding-top: clamp(1.5rem, 4vh, 2.75rem);
  color: var(--text);
}

.catalog-section--ama-reveal .ama-catalog-reveal {
  opacity: 0;
  transform: translate3d(0, 2.75rem, 0) scale(0.98);
  filter: blur(10px);
  transition:
    opacity 1.05s var(--ama-ease),
    transform 1.15s var(--ama-ease-soft),
    filter 1.2s var(--ama-ease);
  transition-delay: calc(var(--catalog-reveal-delay, 0) * 0.13s);
  will-change: opacity, transform, filter;
}

.catalog-section--ama-reveal.is-revealed .ama-catalog-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.catalog-section--ama-reveal .catalog-section__intro {
  gap: clamp(0.85rem, 2.4vw, 1.4rem);
}

.catalog-section--ama-reveal .catalog-section__title {
  padding-bottom: clamp(0.4rem, 1.1vw, 0.75rem);
}

.catalog-section--ama-reveal .catalog-section__between {
  flex: 0 0 auto;
  min-height: 0;
  margin: 0;
  padding: clamp(0.2rem, 0.6vw, 0.45rem) 0;
  justify-content: center;
  align-items: center;
}

.catalog-section--ama-reveal .catalog-section__title.ama-catalog-reveal {
  transform: translate3d(0, 2rem, 0) scale(0.99);
  letter-spacing: 0.06em;
}

.catalog-section--ama-reveal.is-revealed .catalog-section__title.ama-catalog-reveal {
  letter-spacing: 0.02em;
  transition:
    opacity 1.05s var(--ama-ease),
    transform 1.15s var(--ama-ease-soft),
    filter 1.2s var(--ama-ease),
    letter-spacing 1.4s var(--ama-ease);
}

.catalog-section--ama-reveal .catalog-slider.ama-catalog-reveal {
  transform: none;
  filter: none;
}

/* Web: katalog kartları + okları biraz yukarı */
@media (min-width: 900px) {
  body.ama .catalog-section--ama-reveal .catalog-slider__stage {
    transform: translate(-50%, calc(-47% - 100px + 60px - 50px));
  }

  body.ama .catalog-section--ama-reveal .catalog-slider__btn {
    top: calc(50% - 50px);
  }
}

/* Mobil: katalog alanı sıkı, kartlar ortada, dotlar alta */
@media (max-width: 899px) {
  body.ama {
    --catalog-vh-mult: 1;
    --catalog-max-h: min(calc(var(--catalog-max-h-inner) + 5rem), calc(100dvh - var(--header-reserve)));
  }

  body.ama .catalog-section--ama-reveal .catalog-section__intro {
    min-height: auto;
  }

  body.ama .catalog-section--ama-reveal .catalog-section__between {
    transform: translateY(20px);
  }

  body.ama .catalog-section--ama-reveal .catalog-section__viewport {
    height: auto;
    max-height: var(--catalog-max-h);
  }

  body.ama .catalog-section--ama-reveal .catalog-slider {
    flex: 1 1 auto;
    min-height: clamp(210px, 42dvh, 340px);
  }

  body.ama .catalog-section--ama-reveal .catalog-slider__stage {
    transform: translate(-50%, -50%);
    height: min(100%, calc(var(--catalog-card-max-h, 200px) + 1.5rem));
  }

  body.ama .catalog-section--ama-reveal .catalog-slider__btn {
    top: 50%;
    transform: translateY(-50%);
  }
}

.catalog-section--ama-reveal:not(.is-revealed) .catalog-filter-bar,
.catalog-section--ama-reveal:not(.is-revealed) .catalog-slider {
  pointer-events: none;
}

/* ?skambil kart? gibi u�arak geli? � g�r�n�r slaytlar (merkez / yan) */
.catalog-section--ama-reveal .catalog-slider__slide--left {
  --card-fly-x: -26vw;
  --card-fly-y: -16vh;
  --card-fly-rot: -9deg;
  --card-fly-scale: 0.9;
}

.catalog-section--ama-reveal .catalog-slider__slide--center {
  --card-fly-x: 3vw;
  --card-fly-y: -20vh;
  --card-fly-rot: 5deg;
  --card-fly-scale: 0.88;
}

.catalog-section--ama-reveal .catalog-slider__slide--right {
  --card-fly-x: 28vw;
  --card-fly-y: -18vh;
  --card-fly-rot: 10deg;
  --card-fly-scale: 0.9;
}

.catalog-section--ama-reveal
  #catalog-slider:not(.is-cards-dealt)
  .catalog-slider__slide--left
  .catalog-slider__card,
.catalog-section--ama-reveal
  #catalog-slider:not(.is-cards-dealt)
  .catalog-slider__slide--center
  .catalog-slider__card,
.catalog-section--ama-reveal
  #catalog-slider:not(.is-cards-dealt)
  .catalog-slider__slide--right
  .catalog-slider__card {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--card-fly-x), var(--card-fly-y), 32px)
    rotate(var(--card-fly-rot)) scale(var(--card-fly-scale));
  transform-origin: 50% 108%;
  filter: blur(5px);
  box-shadow: none;
}

.catalog-section--ama-reveal #catalog-slider.is-deal-active .catalog-slider__slide--left .catalog-slider__card,
.catalog-section--ama-reveal #catalog-slider.is-deal-active .catalog-slider__slide--center .catalog-slider__card,
.catalog-section--ama-reveal #catalog-slider.is-deal-active .catalog-slider__slide--right .catalog-slider__card {
  pointer-events: auto;
  animation: ama-catalog-card-deal 1.85s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(0.65s + var(--card-deal-delay, 0) * 0.28s);
}

.catalog-section--ama-reveal #catalog-slider.is-cards-dealt .catalog-slider__slide--left .catalog-slider__card,
.catalog-section--ama-reveal #catalog-slider.is-cards-dealt .catalog-slider__slide--center .catalog-slider__card,
.catalog-section--ama-reveal #catalog-slider.is-cards-dealt .catalog-slider__slide--right .catalog-slider__card {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  filter: none;
  animation: none;
}

@keyframes ama-catalog-card-deal {
  0% {
    opacity: 0;
    transform: translate3d(var(--card-fly-x), var(--card-fly-y), 32px)
      rotate(var(--card-fly-rot)) scale(var(--card-fly-scale));
    filter: blur(5px);
    box-shadow: none;
  }
  55% {
    opacity: 0.5;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
    box-shadow: none;
  }
}

@media (min-width: 900px) {
  .catalog-section--ama-reveal #catalog-slider.is-deal-active .catalog-slider__slide--left .catalog-slider__card,
  .catalog-section--ama-reveal #catalog-slider.is-deal-active .catalog-slider__slide--center .catalog-slider__card,
  .catalog-section--ama-reveal #catalog-slider.is-deal-active .catalog-slider__slide--right .catalog-slider__card {
    animation-duration: 2s;
  }
}

/* Hero � ?effaf, sabit g�rsel �st�nde */
.ama-hero {
  position: relative;
  z-index: auto;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  pointer-events: none;
  color: var(--text);
}

.ama-hero a,
.ama-hero button {
  pointer-events: auto;
}

.ama-hero__stage {
  position: relative;
  z-index: auto;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--ama-deep);
}

.ama-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.05);
  opacity: 0;
  filter: blur(12px);
  will-change: opacity, transform, filter;
  transform-origin: center center;
}

body.ama-intro-ready .ama-hero__bg {
  animation: ama-hero-bg-in 1.45s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}

@keyframes ama-hero-bg-in {
  0% {
    opacity: 0;
    transform: scale(1.06);
    filter: blur(12px);
  }
  55% {
    opacity: 0.92;
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.ama-hero__bg-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ama-hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ama-hero__scroll-pad,
.ama-hero__scroll-hold {
  display: none;
}

.ama-hero__shade {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(7rem, 22vh, 14rem);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(243, 244, 247, 0) 0%,
    rgba(243, 244, 247, 0.28) 32%,
    rgba(243, 244, 247, 0.68) 68%,
    var(--intro-surface) 100%
  );
}

.ama-hero__light {
  display: none;
}

body.ama-hero-bg-hidden .ama-hero__light {
  opacity: 0;
}

.ama-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--ama-header-h) + 1rem) var(--ama-pad) 5rem;
  will-change: opacity, transform;
  opacity: calc(1 - var(--ama-vision-cover) * 0.9);
  transform: translate3d(0, calc(var(--ama-vision-cover) * -18px), 0);
}

@media (max-width: 899px) {
  .ama-hero__inner {
    transform: translate3d(0, calc(var(--ama-vision-cover) * -18px - 100px), 0);
  }
}

/* Ürünler slider — hero sonrası ayrı section */
.ama-products-section {
  position: relative;
  z-index: 6;
  width: 100%;
  margin-top: 0;
  color: var(--text);
  isolation: isolate;
}

.ama-products-section__surface {
  position: relative;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(2.5rem, 6vw, 4.25rem);
}

.ama-products-section--fullscreen .ama-products-section__surface {
  padding: 0;
  background: transparent;
}

.ama-products-section--fullscreen .ama-products__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.ama-products-section--fullscreen .ama-products__card {
  aspect-ratio: auto;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.ama-products-section--fullscreen .ama-products__track {
  padding-bottom: 0;
}

.ama-products-section--fullscreen .ama-products__slide--bellavita,
.ama-products-section--fullscreen .ama-products__slide--calixa,
.ama-products-section--fullscreen .ama-products__slide--sticol,
.ama-products-section--fullscreen .ama-products__slide--elasty {
  border: none;
  box-shadow: none;
  background: transparent;
}

.ama-products-section--fullscreen .ama-products__slide:not(.ama-products__slide--bellavita):not(.ama-products__slide--calixa):not(.ama-products__slide--sticol):not(.ama-products__slide--elasty) {
  background: #fff;
  border: 1px solid rgba(48, 121, 181, 0.12);
  box-shadow: none;
}

.ama-products-section--fullscreen .ama-products__slide-inner {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100%;
}

.ama-products-section--fullscreen .ama-products__nav--prev {
  left: max(0.85rem, env(safe-area-inset-left, 0px));
}

.ama-products-section--fullscreen .ama-products__nav--next {
  right: max(0.85rem, env(safe-area-inset-right, 0px));
}

.ama-products-section--fullscreen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: clamp(8rem, 26vh, 16rem);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(243, 244, 247, 0) 0%,
    rgba(243, 244, 247, 0.18) 36%,
    rgba(243, 244, 247, 0.46) 72%,
    rgba(243, 244, 247, 0.72) 100%
  );
  opacity: calc(1 - var(--ama-products-quote-fade, 0));
  transition: opacity 0.12s linear;
  will-change: opacity;
}

.ama-products__slide--bellavita,
.ama-products__slide--calixa,
.ama-products__slide--sticol,
.ama-products__slide--elasty {
  position: relative;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 48%;
}

.ama-products__slide--bellavita .ama-products__slide-bg,
.ama-products__slide--calixa .ama-products__slide-bg,
.ama-products__slide--sticol .ama-products__slide-bg,
.ama-products__slide--elasty .ama-products__slide-bg {
  opacity: 0;
  transform: none;
  filter: none;
  will-change: opacity;
}

.ama-products__slide--bellavita.is-slide-animated .ama-products__slide-bg,
.ama-products__slide--calixa.is-slide-animated .ama-products__slide-bg,
.ama-products__slide--sticol.is-slide-animated .ama-products__slide-bg,
.ama-products__slide--elasty.is-slide-animated .ama-products__slide-bg {
  animation: ama-products-slide-bg-dissolve-in 0.85s ease forwards;
}

.ama-products__slide--bellavita.is-slide-leaving .ama-products__slide-bg,
.ama-products__slide--calixa.is-slide-leaving .ama-products__slide-bg,
.ama-products__slide--sticol.is-slide-leaving .ama-products__slide-bg,
.ama-products__slide--elasty.is-slide-leaving .ama-products__slide-bg {
  animation: ama-products-slide-bg-dissolve-out 0.46s ease forwards;
}

.ama-products__slide--bellavita::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(243, 244, 247, 0.94) 0%,
    rgba(243, 244, 247, 0.72) 34%,
    rgba(243, 244, 247, 0.2) 58%,
    transparent 78%
  );
}

.ama-products__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ama-products__slide-bg picture,
.ama-products__slide-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.ama-products__slide-bg img {
  object-fit: cover;
  object-position: center center;
}

.ama-products__slide-inner--overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  padding:
    calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + 1.5rem)
    var(--ama-pad)
    max(1.5rem, env(safe-area-inset-bottom, 0px));
}

.ama-products__slide-copy--left {
  align-items: flex-start;
  text-align: left;
  max-width: min(34rem, 92vw);
}

.ama-products__slide-logo {
  display: block;
  width: min(15.5rem, 68vw);
  height: auto;
  margin: 0 0 clamp(1rem, 2.4vw, 1.35rem);
  object-fit: contain;
  object-position: left center;
}

.ama-products__slide--bellavita .ama-products__slide-desc {
  margin: 0;
  max-width: 34ch;
}

.ama-products__slide--bellavita .ama-products__slide-cta {
  margin-top: clamp(1.1rem, 2.4vw, 1.5rem);
}

.ama-products__slide--bellavita .ama-products__slide-depth {
  opacity: 0;
  transform: translate3d(0, 20px, -200px) scale(0.74);
  filter: blur(12px);
  transform-origin: 50% 52%;
  will-change: transform, opacity, filter;
}

.ama-products__slide--bellavita.is-slide-animated .ama-products__slide-depth {
  animation: ama-products-slide-panel-depth-in 1.15s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}

.ama-products__slide--bellavita.is-slide-leaving .ama-products__slide-depth {
  animation: ama-products-slide-panel-depth-out 0.46s cubic-bezier(0.4, 0, 0.65, 1) forwards;
}

.ama-products__slide--bellavita.is-slide-animated .ama-products__slide-depth--1 { animation-delay: 0.04s; }
.ama-products__slide--bellavita.is-slide-animated .ama-products__slide-depth--2 { animation-delay: 0.12s; }
.ama-products__slide--bellavita.is-slide-animated .ama-products__slide-depth--3 { animation-delay: 0.2s; }

/* Calixa Bellavita — tam ekran slider */
.ama-products__slide-inner--calixa {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding:
    calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1rem, 2.5vh, 1.75rem))
    clamp(1rem, 3vw, 2.5rem)
    max(1.25rem, env(safe-area-inset-bottom, 0px));
}

.ama-products__slide--calixa .ama-calixa__depth {
  opacity: 0;
  transform: translate3d(0, 20px, -200px) scale(0.74);
  filter: blur(12px);
  transform-origin: 50% 52%;
  will-change: transform, opacity, filter;
}

.ama-products__slide--calixa.is-slide-animated .ama-calixa__depth {
  animation: ama-products-slide-panel-depth-in 1.15s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}

.ama-products__slide--calixa.is-slide-leaving .ama-calixa__depth {
  animation: ama-products-slide-panel-depth-out 0.46s cubic-bezier(0.4, 0, 0.65, 1) forwards;
}

.ama-products__slide--calixa.is-slide-animated .ama-calixa__depth--1 { animation-delay: 0.04s; }
.ama-products__slide--calixa.is-slide-animated .ama-calixa__depth--2 { animation-delay: 0.12s; }
.ama-products__slide--calixa.is-slide-animated .ama-calixa__depth--3 { animation-delay: 0.2s; }
.ama-products__slide--calixa.is-slide-animated .ama-calixa__depth--4 { animation-delay: 0.28s; }

.ama-calixa__foot {
  display: contents;
}

.ama-calixa__head-wrap {
  position: absolute;
  top: calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1.25rem, 3.2vh, 2.75rem));
  left: 50%;
  z-index: 2;
  width: min(38rem, 92vw);
  transform: translateX(-50%);
}

.ama-calixa__head {
  text-align: center;
}

.ama-calixa__logo {
  width: min(18rem, 52vw);
  margin: 0 auto clamp(0.85rem, 2vw, 1.15rem);
  object-position: center center;
}

.ama-calixa__tagline {
  margin: 0 auto clamp(0.65rem, 1.4vw, 0.85rem);
  max-width: 36ch;
  font-family: var(--font-hero-title);
  font-size: clamp(0.95rem, 1.55vw, 1.2rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #4a1020;
}

.ama-calixa__tagline strong {
  color: #97022a;
  font-weight: 700;
}

.ama-calixa__tech-bar-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.42rem 30px;
}

.ama-calixa__tech-bar-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(172, 2, 47, 0) 0%,
    rgba(172, 2, 47, 0.55) 8%,
    #ac022f 18%,
    #ac022f 82%,
    rgba(172, 2, 47, 0.55) 92%,
    rgba(172, 2, 47, 0) 100%
  );
  pointer-events: none;
}

.ama-calixa__tech-bar {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(0.56rem, 0.82vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.ama-calixa__center-wrap {
  position: absolute;
  top: 59%;
  left: 50%;
  z-index: 2;
  width: clamp(15.5rem, 26vw, 21.5rem);
  transform: translate(-50%, -50%);
}

.ama-calixa__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.7rem, 1.25vw, 1rem);
}

.ama-calixa__features {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.55rem, 1.15vw, 0.9rem);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ama-calixa__feature {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  max-width: 7rem;
  text-align: center;
}

.ama-calixa__feature-icon {
  display: grid;
  place-items: center;
  width: clamp(2.85rem, 4.2vw, 3.45rem);
  height: clamp(2.85rem, 4.2vw, 3.45rem);
  padding: 0.55rem;
  border: 1.5px solid #97022a;
  border-radius: 50%;
  color: #97022a;
  box-sizing: border-box;
}

.ama-calixa__feature-icon svg {
  width: 100%;
  height: 100%;
}

.ama-calixa__feature-label {
  font-size: clamp(0.48rem, 0.68vw, 0.56rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: #97022a;
}

.ama-calixa__formula {
  width: 100%;
  text-align: center;
}

.ama-calixa__ratio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.1vw, 0.85rem);
  margin-bottom: 0.45rem;
}

.ama-calixa__ratio-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: clamp(4.15rem, 6.8vw, 5rem);
  min-height: clamp(4.15rem, 6.8vw, 5rem);
  border: 1.5px solid #97022a;
  border-radius: 50%;
  color: #97022a;
}

.ama-calixa__ratio-name {
  font-size: clamp(0.56rem, 0.82vw, 0.66rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.ama-calixa__ratio-value {
  margin-top: 0.12rem;
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1;
  color: #97022a;
}

.ama-calixa__ratio-plus {
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  font-weight: 700;
  color: #97022a;
  line-height: 1;
}

.ama-calixa__formula-text {
  margin: 0;
  font-size: clamp(0.5rem, 0.72vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: #97022a;
}

.ama-calixa__cta {
  display: none;
}

/* StiCol Volume — tam ekran slider */
.ama-products__slide-inner--sticol {
  position: relative;
  display: block;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1rem, 2.5vh, 2rem))
    clamp(1rem, 4vw, 2.5rem)
    max(1.25rem, env(safe-area-inset-bottom, 0px));
}

.ama-products__slide--sticol .ama-sticol__depth {
  opacity: 0;
  transform: translate3d(0, 20px, -200px) scale(0.74);
  filter: blur(12px);
  transform-origin: 50% 52%;
  will-change: transform, opacity, filter;
}

.ama-products__slide--sticol.is-slide-animated .ama-sticol__depth {
  animation: ama-products-slide-panel-depth-in 1.15s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}

.ama-products__slide--sticol.is-slide-leaving .ama-sticol__depth {
  animation: ama-products-slide-panel-depth-out 0.46s cubic-bezier(0.4, 0, 0.65, 1) forwards;
}

.ama-products__slide--sticol.is-slide-animated .ama-sticol__depth--1 { animation-delay: 0.04s; }
.ama-products__slide--sticol.is-slide-animated .ama-sticol__depth--2 { animation-delay: 0.12s; }
.ama-products__slide--sticol.is-slide-animated .ama-sticol__depth--3 { animation-delay: 0.2s; }
.ama-products__slide--sticol.is-slide-animated .ama-sticol__depth--4 { animation-delay: 0.28s; }

.ama-sticol__foot {
  display: contents;
}

.ama-sticol__head-wrap {
  position: absolute;
  top: calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1.25rem, 3.2vh, 2.75rem));
  left: 50%;
  z-index: 2;
  width: min(36rem, 92vw);
  transform: translateX(-50%);
}

.ama-sticol__head {
  text-align: center;
}

.ama-sticol__logo-wrap {
  display: block;
  width: min(14rem, 48vw);
  margin: 0 auto clamp(0.55rem, 1.2vw, 0.75rem);
}

.ama-sticol__logo {
  display: block;
  width: 100%;
  margin: 0;
  object-position: center center;
}

.ama-sticol__subtitle {
  margin: 0 auto clamp(0.55rem, 1.1vw, 0.75rem);
  font-size: clamp(0.52rem, 0.78vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.ama-sticol__divider {
  width: min(18rem, 72vw);
  height: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.45);
}

.ama-sticol__center-wrap {
  position: absolute;
  top: 58%;
  left: 50%;
  z-index: 2;
  width: clamp(16rem, 28vw, 23rem);
  transform: translate(-50%, -50%);
}

.ama-sticol__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.3vw, 1.05rem);
}

.ama-sticol__headline {
  margin: 0;
  text-align: center;
  font-family: var(--font-hero-title);
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.ama-sticol__headline-line {
  display: block;
  color: #fff;
}

.ama-sticol__headline-line--accent {
  color: #b78cff;
}

.ama-sticol__features {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ama-sticol__feature {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  max-width: 7.25rem;
  padding: 0 0.45rem;
  text-align: center;
}

.ama-sticol__feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.65rem;
  right: 0;
  width: 1px;
  height: calc(100% - 1.5rem);
  background: rgba(255, 255, 255, 0.28);
}

.ama-sticol__feature-icon {
  display: grid;
  place-items: center;
  width: clamp(2.75rem, 4vw, 3.25rem);
  height: clamp(2.75rem, 4vw, 3.25rem);
  padding: 0.5rem;
  border: 1.5px solid rgba(183, 140, 255, 0.85);
  border-radius: 50%;
  color: #b78cff;
  box-sizing: border-box;
}

.ama-sticol__feature-icon svg {
  width: 100%;
  height: 100%;
}

.ama-sticol__feature-label {
  font-size: clamp(0.46rem, 0.64vw, 0.54rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
}

.ama-sticol__tech-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1vw, 0.75rem);
  width: 100%;
  padding: 0.5rem 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-sizing: border-box;
}

.ama-sticol__tech-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: clamp(2.35rem, 3.4vw, 2.75rem);
  height: clamp(2.35rem, 3.4vw, 2.75rem);
  color: #fff;
}

.ama-sticol__tech-icon svg {
  width: 100%;
  height: 100%;
}

.ama-sticol__tech-copy {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  min-width: 0;
  text-align: center;
}

.ama-sticol__tech-title {
  font-size: clamp(0.5rem, 0.72vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #fff;
}

.ama-sticol__tech-desc {
  font-size: clamp(0.46rem, 0.64vw, 0.52rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: #b78cff;
}

.ama-sticol__cta {
  display: none;
}

/* Elasty — tam ekran slider */
.ama-products__slide-inner--elasty {
  position: relative;
  display: block;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1rem, 2.5vh, 2rem))
    clamp(1rem, 4vw, 2.5rem)
    max(1.25rem, env(safe-area-inset-bottom, 0px));
}

.ama-products__slide--elasty .ama-elasty__depth {
  opacity: 0;
  transform: translate3d(0, 20px, -200px) scale(0.74);
  filter: blur(12px);
  transform-origin: 50% 52%;
  will-change: transform, opacity, filter;
}

.ama-products__slide--elasty.is-slide-animated .ama-elasty__depth {
  animation: ama-products-slide-panel-depth-in 1.15s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}

.ama-products__slide--elasty.is-slide-leaving .ama-elasty__depth {
  animation: ama-products-slide-panel-depth-out 0.46s cubic-bezier(0.4, 0, 0.65, 1) forwards;
}

.ama-products__slide--elasty.is-slide-animated .ama-elasty__depth--1 { animation-delay: 0.04s; }
.ama-products__slide--elasty.is-slide-animated .ama-elasty__depth--2 { animation-delay: 0.12s; }
.ama-products__slide--elasty.is-slide-animated .ama-elasty__depth--3 { animation-delay: 0.2s; }
.ama-products__slide--elasty.is-slide-animated .ama-elasty__depth--4 { animation-delay: 0.28s; }

.ama-elasty__foot {
  display: contents;
}

.ama-elasty__head-wrap {
  position: absolute;
  top: calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1.25rem, 3.2vh, 2.75rem));
  left: 50%;
  z-index: 2;
  width: min(34rem, 92vw);
  transform: translateX(-50%);
}

.ama-elasty__head {
  text-align: center;
}

.ama-elasty__logo {
  width: min(16rem, 48vw);
  margin: 0 auto clamp(0.55rem, 1.2vw, 0.75rem);
  object-fit: contain;
  object-position: center center;
}

.ama-elasty__subtitle {
  margin: 0;
  font-size: clamp(0.52rem, 0.78vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  color: #1a6f7a;
  text-transform: uppercase;
}

.ama-elasty__center-wrap {
  position: absolute;
  top: 58%;
  left: 50%;
  z-index: 2;
  width: clamp(15.5rem, 26vw, 21.5rem);
  transform: translate(-50%, -50%);
}

.ama-elasty__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.55rem, 1.2vw, 0.85rem);
  text-align: center;
}

.ama-elasty__headline {
  margin: 0;
  font-family: var(--font-hero-title);
  font-size: clamp(1.05rem, 1.85vw, 1.45rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.ama-elasty__headline-line {
  display: block;
  color: #12343a;
}

.ama-elasty__headline-line--accent {
  color: #1ba3b0;
  font-weight: 500;
}

.ama-elasty__desc {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  line-height: 1.5;
  color: #2a4a52;
}

.ama-elasty__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ama-elasty__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  text-align: center;
}

.ama-elasty__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1.5px solid rgba(27, 163, 176, 0.75);
  border-radius: 50%;
  color: #1ba3b0;
  box-sizing: border-box;
}

.ama-elasty__feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ama-elasty__feature-label {
  font-size: clamp(0.46rem, 0.62vw, 0.52rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #1f4a52;
}

.ama-elasty__series {
  width: 100%;
  padding: 0.55rem 0.65rem 0.6rem;
  border: 1px solid rgba(27, 163, 176, 0.28);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.42);
  box-sizing: border-box;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ama-elasty__series-title {
  margin: 0 0 0.45rem;
  font-size: clamp(0.5rem, 0.72vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1a6f7a;
}

.ama-elasty__series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.ama-elasty__series-item {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding-top: 0.28rem;
  border-top: 2px solid #1ba3b0;
}

.ama-elasty__series-item--grand {
  border-top-color: #2d2d2d;
}

.ama-elasty__series-item--deep {
  border-top-color: #1ba3b0;
}

.ama-elasty__series-item--fine {
  border-top-color: #c9a227;
}

.ama-elasty__series-name {
  font-size: clamp(0.42rem, 0.58vw, 0.48rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #12343a;
}

.ama-elasty__series-value {
  font-size: clamp(0.5rem, 0.72vw, 0.56rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2a4a52;
}

.ama-elasty__cta {
  display: none;
}

.ama-products {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
}

.ama-products__inner {
  width: min(1100px, calc(100% - 2 * var(--ama-pad)));
  margin: 0 auto;
}

.ama-products__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
}

.ama-products__title {
  margin: 0;
  font-family: var(--font-hero-title);
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  color: var(--brand);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.ama-products__sub {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ama-products__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
}

.ama-products__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.ama-products__card {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(48, 121, 181, 0.18);
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Ürün slide — metin + görsel kart */
.ama-products__slide {
  background: #fff;
  border: 1px solid rgba(48, 121, 181, 0.14);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

.ama-products__slide--clone {
  pointer-events: none;
  user-select: none;
}

.ama-products__slide-inner {
  --ama-products-slide-inset: clamp(1.25rem, 4.5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(0.75rem, 2vh, 1.25rem) var(--ama-products-slide-inset);
  box-sizing: border-box;
  perspective: 1400px;
  perspective-origin: 50% 42%;
}

.ama-products__slide-copy {
  min-width: 0;
  justify-self: stretch;
  align-self: center;
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform-style: preserve-3d;
}

.ama-products__slide-title {
  margin: 0 0 clamp(0.65rem, 1.8vw, 1rem);
  font-family: var(--font-hero-title);
  font-size: clamp(1.5rem, 3.1vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: none;
}

.ama-products__slide-desc {
  margin: 0;
  max-width: none;
  font-size: clamp(0.9rem, 1.45vw, 1.12rem);
  line-height: 1.62;
  color: var(--text-muted);
  text-shadow: none;
}

/* Ürün slider CTA — hero “Yolculuğa başla” ile aynı yüzey; panel derinlik animasyonuyla birlikte */
.ama-products .hero-panel__cta.ama-products__slide-cta {
  position: relative;
  z-index: 2;
  margin-top: clamp(1rem, 2.2vw, 1.5rem);
  align-self: flex-start;
  pointer-events: auto;
}

.ama-products__slide--clone .ama-products__slide-cta {
  pointer-events: none;
}

.ama-products__slide-media {
  margin: 0;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform-style: preserve-3d;
}

.ama-products__slide-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(62vh, 440px);
  object-fit: contain;
  object-position: center center;
}

/* Slide geçişi — tüm panel derinden gelir / derine gider */
.ama-products__slide .ama-products__slide-inner {
  opacity: 0;
  transform: translate3d(0, 20px, -200px) scale(0.74);
  filter: blur(12px);
  transform-origin: 50% 52%;
  will-change: transform, opacity, filter;
}

.ama-products__slide.is-slide-animated .ama-products__slide-inner {
  animation: ama-products-slide-panel-depth-in 1.15s cubic-bezier(0.16, 1, 0.32, 1) forwards;
}

.ama-products__slide.is-slide-leaving .ama-products__slide-inner {
  animation: ama-products-slide-panel-depth-out 0.46s cubic-bezier(0.4, 0, 0.65, 1) forwards;
}

.ama-products__slide--calixa .ama-products__slide-inner,
.ama-products__slide--calixa.is-slide-animated .ama-products__slide-inner,
.ama-products__slide--calixa.is-slide-leaving .ama-products__slide-inner,
.ama-products__slide--sticol .ama-products__slide-inner,
.ama-products__slide--sticol.is-slide-animated .ama-products__slide-inner,
.ama-products__slide--sticol.is-slide-leaving .ama-products__slide-inner,
.ama-products__slide--elasty .ama-products__slide-inner,
.ama-products__slide--elasty.is-slide-animated .ama-products__slide-inner,
.ama-products__slide--elasty.is-slide-leaving .ama-products__slide-inner {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.ama-products__slide .ama-products__slide-title,
.ama-products__slide .ama-products__slide-desc,
.ama-products__slide .ama-products__slide-media {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

@keyframes ama-products-slide-panel-depth-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, -220px) scale(0.7);
    filter: blur(14px);
  }
  45% {
    opacity: 0.55;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes ama-products-slide-panel-depth-out {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 16px, -190px) scale(0.78);
    filter: blur(11px);
  }
}

@keyframes ama-products-slide-bg-dissolve-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ama-products-slide-bg-dissolve-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.ama-products__slider {
  position: relative;
  overflow: visible;
}

.ama-products__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(48, 121, 181, 0.2);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(10, 28, 52, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ama-products__nav--prev {
  left: -3.25rem;
}

.ama-products__nav--next {
  right: -3.25rem;
}

.ama-products__dots {
  display: none;
}

.ama-products__dot {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 0.35s var(--ama-ease-soft),
    background 0.35s var(--ama-ease),
    border-color 0.35s var(--ama-ease);
}

.ama-products__dot[aria-selected="true"] {
  transform: scale(1.35);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(48, 121, 181, 0.45);
}

@media (max-width: 899px) {
  .ama-products__inner {
    width: 100%;
  }

  .ama-products__track {
    grid-auto-columns: 100%;
    gap: 0;
    padding-bottom: 0;
    scroll-padding-inline: 0;
  }

  .ama-products__card {
    aspect-ratio: 4 / 5;
    width: 100%;
    scroll-snap-align: start;
  }

  .ama-products__slide {
    aspect-ratio: auto;
    min-height: min(72vh, 520px);
  }

  .ama-products__slide-inner {
    --ama-products-slide-inset: var(--ama-pad);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    padding: clamp(0.65rem, 2vh, 1rem) var(--ama-products-slide-inset);
    gap: 0.75rem;
  }

  .ama-products__slide-media {
    order: 1;
    justify-self: center;
    max-width: min(92vw, 380px);
    padding-left: 0;
  }

  .ama-products__slide-copy {
    order: 2;
    justify-self: stretch;
    max-width: none;
    padding: 0;
    align-items: center;
  }

  .ama-products .hero-panel__cta.ama-products__slide-cta {
    align-self: center;
  }

  .ama-products__slide-title {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
  }

  .ama-products__slide-desc {
    font-size: clamp(0.88rem, 3.4vw, 1rem);
  }

  .ama-products__slide-media img {
    width: 100%;
    max-height: min(48vh, 340px);
    margin: 0 auto;
    object-position: center center;
  }

  .ama-products__nav {
    display: none;
  }

  .ama-products__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding-bottom: 2px;
  }
}

/* Ürünler — bölüm girişi: sadece slide depth (çift animasyon yok) */
.ama-products--ama-reveal .ama-products-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.ama-products--ama-reveal:not(.is-revealed) .ama-products__track {
  opacity: 0;
  pointer-events: none;
}

.ama-products--ama-reveal.is-revealed .ama-products__track {
  opacity: 1;
}

.ama-products--ama-reveal .ama-products__card {
  --card-fly-x: 0px;
  --card-fly-y: -18vh;
  --card-fly-rot: 6deg;
  --card-fly-scale: 0.92;
}

.ama-products--ama-reveal .ama-products__card:nth-child(1) {
  --card-fly-x: -24vw;
  --card-fly-rot: -9deg;
}
.ama-products--ama-reveal .ama-products__card:nth-child(2) {
  --card-fly-x: -6vw;
  --card-fly-rot: -3deg;
}
.ama-products--ama-reveal .ama-products__card:nth-child(3) {
  --card-fly-x: 10vw;
  --card-fly-rot: 4deg;
}
.ama-products--ama-reveal .ama-products__card:nth-child(4) {
  --card-fly-x: 16vw;
  --card-fly-rot: 6deg;
}

@media (min-width: 900px) {
  /* Web: tek kart görünür; diğerleri ok ile */
  .ama-products__slider {
    overflow: visible;
  }

  .ama-products-section--fullscreen .ama-products__slide-inner:not(.ama-products__slide-inner--overlay) {
    --ama-products-slide-inset: clamp(2rem, 5vw, 4rem);
    gap: clamp(1rem, 2.2vw, 1.75rem);
  }

  .ama-products__slide-inner--overlay {
    padding-left: clamp(2rem, 6vw, 5rem);
    padding-right: clamp(2rem, 6vw, 5rem);
  }

  .ama-products__slide--bellavita .ama-products__slide-logo {
    width: min(18rem, 22vw);
  }

  .ama-products__slide--bellavita .ama-products__slide-desc {
    max-width: 38ch;
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  }

  .ama-products__slide--bellavita .ama-products__slide-inner,
  .ama-products__slide--bellavita.is-slide-animated .ama-products__slide-inner,
  .ama-products__slide--bellavita.is-slide-leaving .ama-products__slide-inner {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .ama-products__slide--bellavita .ama-products__slide-inner--overlay {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .ama-products__slide--bellavita::after {
    display: none;
  }

  .ama-products__slide--bellavita .ama-products__slide-copy--left {
    position: absolute;
    top: 52%;
    left: 50%;
    z-index: 2;
    width: clamp(14rem, 22vw, 19.5rem);
    max-width: none;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
  }

  .ama-products__slide--bellavita .ama-products__slide-logo {
    margin-left: auto;
    margin-right: auto;
    object-position: center center;
  }

  .ama-products__slide--bellavita .ama-products__slide-desc {
    text-align: center;
    color: #fff;
  }

  .ama-products__slide--bellavita .ama-products__slide-cta,
  .ama-products__slide--bellavita .hero-panel__cta.ama-products__slide-cta {
    align-self: center;
  }

  .ama-calixa__center-wrap {
    top: 59%;
    left: 50%;
    width: clamp(15.5rem, 26vw, 21.5rem);
    transform: translate(calc(-50% - 100px), -50%);
  }

  .ama-calixa__head-wrap {
    width: min(34rem, 88vw);
    transform: translateX(calc(-50% - 100px));
  }

  .ama-calixa__tagline {
    color: #000000;
    text-shadow: 0 1px 6px rgba(74, 16, 32, 0.35);
  }

  .ama-calixa__feature-icon {
    border-color: #fff;
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(74, 16, 32, 0.3));
  }

  .ama-calixa__feature-label {
    color: #fff;
    text-shadow: 0 1px 6px rgba(74, 16, 32, 0.35);
  }

  .ama-calixa__ratio-item {
    border-color: #fff;
    color: #fff;
  }

  .ama-calixa__ratio-name {
    color: #fff;
  }

  .ama-calixa__ratio-value,
  .ama-calixa__ratio-plus {
    color: #fff;
    text-shadow: 0 1px 6px rgba(74, 16, 32, 0.35);
  }

  .ama-calixa__formula-text {
    color: #fff;
    text-shadow: 0 1px 6px rgba(74, 16, 32, 0.35);
  }

  .ama-products__slide--calixa .ama-calixa__cta.hero-panel__cta {
    display: inline-flex;
    align-self: center;
    margin-top: clamp(0.65rem, 1.2vw, 1rem);
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    box-shadow: none;
  }

  .ama-products__slide--calixa .ama-calixa__cta.hero-panel__cta:hover,
  .ama-products__slide--calixa .ama-calixa__cta.hero-panel__cta:focus-visible {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
  }

  .ama-sticol__center-wrap {
    top: 58%;
    left: 50%;
    width: clamp(16rem, 28vw, 23rem);
    transform: translate(calc(-50% - 100px), -50%);
  }

  .ama-sticol__head-wrap {
    width: min(32rem, 88vw);
    top: calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + clamp(1.25rem, 3.2vh, 2.75rem) + 50px);
    transform: translateX(calc(-50% - 100px));
  }

  .ama-sticol__logo-wrap {
    transform: translateX(10px);
  }

  .ama-sticol__subtitle {
    margin-bottom: 0;
  }

  .ama-sticol__divider {
    margin-top: clamp(0.3rem, 0.55vw, 0.45rem);
  }

  .ama-sticol__feature-icon {
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(20, 8, 40, 0.35));
  }

  .ama-sticol__feature-label {
    color: #fff;
    text-shadow: 0 1px 6px rgba(20, 8, 40, 0.35);
  }

  .ama-sticol__headline-line {
    text-shadow: 0 1px 6px rgba(20, 8, 40, 0.35);
  }

  .ama-sticol__headline-line--accent {
    color: #c9a8ff;
  }

  .ama-sticol__tech-desc {
    color: #c9a8ff;
  }

  .ama-products__slide--sticol .ama-sticol__cta.hero-panel__cta {
    display: inline-flex;
    align-self: center;
    margin-top: clamp(0.55rem, 1vw, 0.85rem);
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    box-shadow: none;
  }

  .ama-products__slide--sticol .ama-sticol__cta.hero-panel__cta:hover,
  .ama-products__slide--sticol .ama-sticol__cta.hero-panel__cta:focus-visible {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
  }

  .ama-elasty__center-wrap {
    top: 58%;
    left: 50%;
    width: clamp(15.5rem, 26vw, 21.5rem);
    transform: translate(calc(-50% - 100px), -50%);
  }

  .ama-elasty__head-wrap {
    width: min(32rem, 88vw);
    transform: translate(calc(-50% - 100px), 0);
  }

  .ama-elasty__logo {
    transform: translateX(10px);
  }

  .ama-elasty__subtitle {
    color: #fff;
    text-shadow: 0 1px 6px rgba(18, 52, 58, 0.35);
  }

  .ama-elasty__headline-line {
    color: #fff;
    text-shadow: 0 1px 6px rgba(18, 52, 58, 0.35);
  }

  .ama-elasty__headline-line--accent {
    color: #fff;
  }

  .ama-elasty__desc {
    color: #fff;
    text-shadow: 0 1px 6px rgba(18, 52, 58, 0.35);
  }

  .ama-elasty__feature-icon {
    border-color: #fff;
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(18, 52, 58, 0.3));
  }

  .ama-elasty__feature-label {
    color: #fff;
    text-shadow: 0 1px 6px rgba(18, 52, 58, 0.35);
  }

  .ama-products__slide--elasty .ama-elasty__cta.hero-panel__cta {
    display: inline-flex;
    align-self: center;
    margin-top: clamp(0.55rem, 1vw, 0.85rem);
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    box-shadow: none;
  }

  .ama-products__slide--elasty .ama-elasty__cta.hero-panel__cta:hover,
  .ama-products__slide--elasty .ama-elasty__cta.hero-panel__cta:focus-visible {
    background-color: transparent;
    border-color: #000;
    color: #000;
    box-shadow: none;
  }

  .ama-products__slide-inner {
    --ama-products-slide-inset: clamp(2rem, 5vw, 4rem);
    gap: clamp(1rem, 2.2vw, 1.75rem);
  }

  .ama-products__slide-title {
    font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  }

  .ama-products__slide-desc {
    font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  }

  .ama-products__slide-media {
    max-width: min(100%, 560px);
  }

  .ama-products__slide-media img {
    max-height: min(64vh, 480px);
  }

  .ama-products__nav--prev {
    left: clamp(-4.5rem, -3.5vw, -2.75rem);
  }

  .ama-products__nav--next {
    right: clamp(-4.5rem, -3.5vw, -2.75rem);
  }

  .ama-products__track {
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  .ama-products--ama-reveal .ama-products__card:nth-child(1),
  .ama-products--ama-reveal .ama-products__card:nth-child(2),
  .ama-products--ama-reveal .ama-products__card:nth-child(3),
  .ama-products--ama-reveal .ama-products__card:nth-child(4) {
    --card-fly-x: 0px;
    --card-fly-rot: 0deg;
  }
}

.ama-products--ama-reveal
  #ama-products-track:not(.is-cards-dealt)
  .ama-products__card:not(.ama-products__slide) {
  opacity: 0;
  transform: translate3d(var(--card-fly-x), var(--card-fly-y), 24px)
    rotate(var(--card-fly-rot)) scale(var(--card-fly-scale));
  transform-origin: 50% 108%;
  filter: blur(5px);
}

.ama-products--ama-reveal
  #ama-products-track:not(.is-cards-dealt)
  .ama-products__slide {
  opacity: 1;
  transform: none;
  filter: none;
}

.ama-products--ama-reveal #ama-products-track.is-deal-active .ama-products__card:not(.ama-products__slide) {
  animation: ama-products-card-deal 1.85s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(0.55s + var(--card-deal-delay, 0) * 0.22s);
}

.ama-products--ama-reveal #ama-products-track.is-deal-active .ama-products__slide,
.ama-products--ama-reveal #ama-products-track.is-cards-dealt .ama-products__slide {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.ama-products--ama-reveal #ama-products-track.is-cards-dealt .ama-products__card:not(.ama-products__slide) {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

@keyframes ama-products-card-deal {
  0% {
    opacity: 0;
    transform: translate3d(var(--card-fly-x), var(--card-fly-y), 24px)
      rotate(var(--card-fly-rot)) scale(var(--card-fly-scale));
    filter: blur(5px);
  }
  55% {
    opacity: 0.55;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.ama-hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  font-size: clamp(2.25rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: none;
  max-width: 14ch;
  perspective: 1400px;
  perspective-origin: 50% 48%;
}

html[lang="en"] .ama-hero__title {
  font-size: clamp(1.85rem, 5.4vw, 4.15rem);
  max-width: min(20ch, 62vw);
  letter-spacing: -0.02em;
  gap: 0.1em;
}

@media (max-width: 899px) {
  html[lang="en"] .ama-hero__title {
    font-size: clamp(1.5rem, 6.8vw, 2.65rem);
    max-width: min(19ch, 76vw);
  }
}

.ama-hero__line {
  display: block;
}

.ama-hero__title--soft {
  font-weight: 300;
  color: var(--text-muted);
  opacity: 1;
}

.ama-hero__scroll-hint,
.ama-hero__note {
  will-change: opacity;
  opacity: calc(1 - var(--ama-vision-cover) * 0.95);
}

/* Hero giri? � loader sonras? */
.ama-intro-item {
  opacity: 0;
  transform: translate3d(0, 28px, -240px) scale(0.68);
  filter: blur(16px);
  transform-style: preserve-3d;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

body.ama-intro-ready .ama-intro-item {
  animation: ama-hero-depth-in 1.15s cubic-bezier(0.16, 1, 0.32, 1) forwards;
  animation-delay: calc(0.4s + var(--i, 0) * 0.14s);
}

body.ama-intro-ready .ama-hero__title--soft.ama-intro-item {
  animation-name: ama-hero-depth-in-soft;
}

@keyframes ama-hero-depth-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, -240px) scale(0.68);
    filter: blur(16px);
  }
  45% {
    opacity: 0.55;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes ama-hero-depth-in-soft {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, -240px) scale(0.68);
    filter: blur(16px);
  }
  45% {
    opacity: 0.4;
    filter: blur(4px);
  }
  100% {
    opacity: 0.75;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.ama-hero__scroll-hint {
  animation: ama-scroll-hint-bounce 2.4s var(--ama-ease) infinite;
  animation-delay: 1.4s;
}

@keyframes ama-scroll-hint-bounce {
  0%,
  100% {
    transform: rotate(180deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(6px);
  }
}

/* CTA g�r�n�m�: style.css .hero-panel__cta (index ile ayn?) */
.ama-hero .hero-panel__cta.ama-hero__cta {
  margin-top: 2rem;
  align-self: center;
}

.ama-hero__scroll-hint {
  position: absolute;
  left: var(--ama-pad);
  bottom: 1.75rem;
  z-index: 2;
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ama-hero__note {
  position: absolute;
  right: var(--ama-pad);
  bottom: 2rem;
  z-index: 2;
  margin: 0;
  max-width: 16rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: right;
}

/* Vision � a�?k dikd�rtgen (videodaki beyaz blok) */
.ama-vision {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  color: var(--text);
}

.ama-vision--reveal {
  min-height: 0;
  overflow: visible;
  background: transparent;
  margin-top: 0;
}

.ama-vision-reveal__surface {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ama-pad);
  background-color: var(--intro-surface);
  border-radius: 0;
  box-shadow: none;
  opacity: calc(
    var(--ama-products-quote-fade, 0)
    * (1 - clamp(0, var(--ama-orb-progress, 0) / 0.42, 1))
  );
  transform: translate3d(0, calc(var(--ama-orb-progress, 0) * -12px), 0);
  will-change: opacity, transform;
  pointer-events: none;
}

.ama-vision-reveal__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/ozlusoz-arkaplan.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.ama-vision__ozlusoz {
  position: relative;
  z-index: 1;
  display: block;
  width: min(88vw, 22rem);
  height: auto;
  transform: scale(1.5);
}

@media (max-width: 899px) {
  .ama-vision-reveal__surface {
    padding: clamp(14px, 4.2vw, 22px);
  }

  .ama-vision__ozlusoz {
    width: min(86vw, 18rem);
    transform: scale(1.08);
    transform-origin: center;
  }
}

.ama-vision-orb__paper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  opacity: calc(clamp(0, (var(--ama-orb-progress, 0) - 0.18) / 0.52, 1));
  will-change: opacity;
}

/* index .about-preview ile ayn?: k�??t + �stte intro-surface gradient */
.ama-vision-orb__paper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: calc(clamp(0, (var(--ama-orb-progress, 0) - 0.55) / 0.38, 1));
  background: linear-gradient(
    180deg,
    rgb(243 244 247 / 0.5) 0%,
    rgb(243 244 247 / 0.82) 100%
  );
}

.ama-vision-orb__paper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(64px, 14vh, 132px);
  pointer-events: none;
  z-index: 2;
  opacity: calc(clamp(0, (var(--ama-orb-progress, 0) - 0.72) / 0.25, 1));
  background: linear-gradient(
    to bottom,
    rgb(243 244 247 / 0) 0%,
    rgb(243 244 247 / 0.42) 42%,
    rgb(243 244 247 / 0.78) 72%,
    var(--intro-surface) 100%
  );
}

@media (min-width: 901px) {
  .ama-vision-orb__paper::before {
    background: linear-gradient(
      180deg,
      rgb(243 244 247 / 0.45) 0%,
      rgb(243 244 247 / 0.82) 100%
    );
  }

  .ama-vision-orb__paper::after {
    height: clamp(80px, 16vh, 168px);
  }
}

.ama-vision-orb__paper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2) translateY(-50px);
  transform-origin: center center;
}

.ama-vision-orb__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(72%, 26rem);
  max-height: 70%;
  height: fit-content;
  margin: auto;
  padding: clamp(1.25rem, 3vmin, 1.75rem) clamp(1.25rem, 3.5vw, 2rem);
  gap: 0;
  text-align: center;
  opacity: calc(clamp(0, (var(--ama-orb-progress, 0) - 0.5) * 2.2, 1));
  pointer-events: auto;
}

.ama-vision-orb__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-hero-title);
  font-size: clamp(1.9rem, 3.8vw, 2.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--brand);
  text-shadow: none;
}

.ama-vision-orb__text {
  margin: 0;
  max-width: 24rem;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.8);
}

@media (min-width: 900px) {
  .ama-vision-orb__inner {
    width: min(82.8%, 29.9rem);
  }

  .ama-vision-orb__text {
    max-width: 27.6rem;
  }
}

.ama-vision-orb__inner .hero-panel__cta.ama-vision-orb__cta {
  margin-top: clamp(1.1rem, 2.5vw, 1.65rem);
  align-self: center;
}

/* Koyu sahneler � geometrik arka plan */
.ama-scene {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ama-text-light);
  background:
    radial-gradient(
      ellipse 95% 75% at var(--ama-light-x) var(--ama-light-y),
      rgba(42, 143, 168, 0.4) 0%,
      transparent 52%
    ),
    var(--ama-scene-gradient);
}

/* Human / rings � arka plan ile d�nen �ember tonlar? yer de?i?tirir */
.ama-vision--reveal .ama-scene-reveal__track,
.ama-scene--reveal .ama-scene-reveal__track {
  width: 100%;
  height: calc(var(--ama-orb-reveal-h) + var(--ama-orb-reveal-hold));
}

.ama-scene-reveal__hold {
  height: var(--ama-orb-reveal-hold);
  pointer-events: none;
}

.ama-scene-reveal__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: transparent;
}

.ama-scene-reveal__orb {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: auto;
  background: transparent;
  clip-path: circle(var(--ama-orb-clip-r, 0px) at 50% 100%);
  overflow: hidden;
  will-change: clip-path;
}

body.ama-orb-expanded .ama-vision-reveal__surface {
  opacity: 0;
  visibility: hidden;
}

.ama-scene__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.ama-scene__bg {
  position: absolute;
  inset: -8%;
  opacity: 0.35;
  color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
  will-change: transform;
  transform: translate3d(var(--ama-scene-bg-x, 0), var(--ama-scene-bg-y, 0), 0);
  transition: transform 0.15s linear;
}

.ama-scene__svg {
  width: 100%;
  height: 100%;
}

.ama-scene__svg--drift {
  animation: ama-geo-drift 56s linear infinite;
}

.ama-scene__svg--drift-reverse {
  animation: ama-geo-drift 64s linear infinite reverse;
}

.ama-scene.is-active .ama-scene__svg--drift,
.ama-scene.is-active .ama-scene__svg--drift-reverse {
  animation-duration: 38s;
}

@keyframes ama-geo-drift {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.04);
  }
}

.ama-scene.is-active .ama-scene__bg {
  opacity: 0.48;
}

.ama-scene__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 12vh, 8rem) var(--ama-pad) clamp(3rem, 8vh, 5rem);
  max-width: 36rem;
}

.ama-scene__text {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ama-scene__tag {
  margin: 1.25rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ama-muted-light);
}

.ama-scene__tag span {
  margin-right: 0.35rem;
}

.ama-scene__step {
  position: absolute;
  right: clamp(2rem, 8vw, 6rem);
  bottom: clamp(4rem, 15vh, 8rem);
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ama-text-light);
  opacity: 0.55;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ama-ease), transform 0.6s var(--ama-ease);
}

.ama-scene.is-active .ama-scene__step {
  opacity: 1;
  transform: scale(1);
}

.ama-scene__step::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.25);
  transform: rotate(-45deg);
  animation: ama-step-spin 14s linear infinite;
}

.ama-scene.is-active .ama-scene__step::before {
  border-top-color: rgba(78, 196, 220, 0.85);
  border-right-color: rgba(255, 255, 255, 0.35);
  animation-duration: 5s;
}

@keyframes ama-step-spin {
  to {
    transform: rotate(315deg);
  }
}

.ama-scene__label-side {
  position: absolute;
  right: var(--ama-pad);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ama-muted-light);
  writing-mode: vertical-rl;
}

/* S�re� daireleri */
.ama-scene--flow .ama-scene__inner--flow {
  max-width: none;
  padding-top: 45vh;
}

.ama-scene__flow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + var(--ama-flow-shift)), -58%);
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 0.35rem;
  width: min(100%, 80rem);
  max-width: 100%;
  padding: 0 var(--ama-pad);
  will-change: transform;
}

.ama-flow__item {
  flex: 0 0 auto;
  min-width: 5.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  opacity: 0;
  transform: scale(0.88) translateY(12px);
  transition:
    opacity 0.7s var(--ama-ease),
    transform 0.7s var(--ama-ease),
    border-color 0.4s;
}

.ama-scene__flow.is-in .ama-flow__item {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.ama-scene__flow.is-in .ama-flow__item[data-flow="0"] {
  transition-delay: 0.05s;
}
.ama-scene__flow.is-in .ama-flow__item[data-flow="1"] {
  transition-delay: 0.15s;
}
.ama-scene__flow.is-in .ama-flow__item[data-flow="2"] {
  transition-delay: 0.25s;
}
.ama-scene__flow.is-in .ama-flow__item[data-flow="3"] {
  transition-delay: 0.35s;
}
.ama-scene__flow.is-in .ama-flow__item[data-flow="4"] {
  transition-delay: 0.45s;
}

.ama-scene.is-active .ama-flow__item {
  border-color: rgba(78, 196, 220, 0.45);
}

.ama-flow__item span {
  font-size: clamp(0.55rem, 1.2vw, 0.68rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 8ch;
}

.ama-flow__arrow {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* Meet / kapan?? */
.ama-meet {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 10vh, 6rem) var(--ama-pad);
  background: var(--intro-surface);
  color: var(--text);
  text-align: center;
}

.ama-meet__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ama-teal);
}

.ama-meet__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.ama-meet__text {
  margin: 0 auto 2rem;
  max-width: 28rem;
  color: var(--text-muted);
}

.ama-meet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.ama-meet__actions .hero-panel__cta {
  margin-top: 0;
}

.ama-meet__link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid currentColor;
}

/* Scroll top FAB */
.ama-scroll-top {
  position: fixed;
  right: var(--ama-pad);
  bottom: calc(var(--ama-pad) + 20px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(3, 8, 24, 0.45);
  color: var(--ama-text-light);
  backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
}

/* Ana sayfa: diğer sayfalardaki sabit iletişim / sosyal FAB */
body.ama .site-header__icon-nav {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  right: max(1rem, env(safe-area-inset-right));
  left: auto;
  top: auto;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  grid-area: auto;
  justify-self: end;
}

body.ama .site-header__icon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-height: 0;
  margin: 0;
  padding: 0 0.35rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(48, 121, 181, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: bottom center;
  pointer-events: none;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.32s ease,
    transform 0.32s ease,
    padding 0.32s ease,
    visibility 0.32s ease;
}

body.ama .site-header__icon-nav--open .site-header__icon-list {
  max-height: min(70vh, 420px);
  padding: 0.45rem 0.35rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

body.ama .site-header__icon-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--brand, #3079b5);
  color: #fff;
  box-shadow: 0 4px 18px rgba(24, 52, 78, 0.28);
  cursor: pointer;
}

body.ama .site-header__icon-fab-inner {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

body.ama .site-header__icon-fab-graphic {
  grid-area: 1 / 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.ama .site-header__icon-fab-graphic--close {
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
}

body.ama .site-header__icon-nav--open .site-header__icon-fab-graphic--chat {
  opacity: 0;
  transform: scale(0.7) rotate(45deg);
}

body.ama .site-header__icon-nav--open .site-header__icon-fab-graphic--close {
  opacity: 1;
  transform: scale(1) rotate(0);
}

body.ama .site-header__icon-link {
  color: var(--brand, #3079b5);
}

@media (min-width: 901px) {
  body.ama .ama-scroll-top {
    right: calc(var(--ama-pad) + 4.25rem);
  }
}

@media (max-width: 900px) {
  body.ama .ama-scroll-top {
    right: calc(var(--ama-pad) + 4.5rem);
  }
}

.ama-scroll-top svg {
  display: block;
  flex-shrink: 0;
}

.ama-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.ama-scroll-top:hover {
  transform: translateY(-2px);
  border-color: var(--ama-teal-glow);
}

.ama-footer {
  position: relative;
  z-index: 2;
  padding: 2rem var(--ama-pad);
  text-align: center;
  background: var(--intro-surface);
  color: var(--text-muted);
}

.ama-footer__copy {
  margin: 0;
  font-size: 0.75rem;
}

.ama-footer__copy a {
  text-decoration: underline;
}

/* Reveal */
.ama-reveal {
  opacity: 0;
  transform: translate3d(0, 2.25rem, 0);
  transition:
    opacity 1s var(--ama-ease),
    transform 1s var(--ama-ease);
  transition-delay: calc(var(--reveal-delay, 0) * 0.12s);
}

.ama-reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ama-scene.is-active .ama-scene__text.ama-reveal.is-in {
  transform: translate3d(0, calc((1 - var(--ama-scene-progress, 1)) * 28px), 0);
}

@media (max-width: 899px) {
  .ama-scroll-meter {
    display: none;
  }

  .ama-hero__note {
    display: none;
  }

  .ama-scene__flow {
    flex-wrap: wrap;
    justify-content: center;
    transform: translate(-50%, -52%);
  }

  .ama-flow__arrow {
    display: none;
  }

  .ama-flow__item {
    min-width: 4.5rem;
  }

  .ama-scene__step {
    right: var(--ama-pad);
    bottom: 2rem;
  }

  .ama-vision-orb__inner {
    width: min(88%, 20rem);
    max-height: 76%;
    padding: 1.15rem 1.1rem;
    text-align: left;
    align-items: flex-start;
    transform: translateX(-30px);
  }

  .ama-vision-orb__title {
    margin-bottom: 0.7rem;
    text-align: left;
  }

  .ama-vision-orb__text {
    font-size: 0.82rem;
    line-height: 1.62;
    text-align: left;
  }

  .ama-vision-orb__inner .hero-panel__cta.ama-vision-orb__cta {
    margin-top: 0.9rem;
    align-self: flex-start;
  }

  /* Ürünler slider — mobilde ayrı section */
  .ama-products-section__surface {
    border-radius: 0;
    padding: 0;
  }

  .ama-products-section--fullscreen::after {
    height: clamp(6rem, 20vh, 11rem);
  }

  .ama-products-section--fullscreen .ama-products__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .ama-products-section--fullscreen .ama-products__slider,
  .ama-products-section--fullscreen .ama-products__track {
    width: 100%;
  }

  .ama-products-section--fullscreen .ama-products__slider {
    position: relative;
  }

  .ama-products-section--fullscreen .ama-products__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    z-index: 6;
    margin-top: 0;
    padding-bottom: 0;
  }

  .ama-products-section--fullscreen .ama-products__slide {
    border: none;
    box-shadow: none;
  }

  .ama-products-section--fullscreen .ama-products__slide-inner--overlay {
    align-items: flex-end;
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .ama-products-section--fullscreen .ama-products__slide--bellavita .ama-products__slide-inner--overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 100dvh;
    padding:
      calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + 0.5rem)
      var(--ama-pad)
      calc(max(0.75rem, env(safe-area-inset-bottom, 0px)) + 2.25rem);
  }

  .ama-products-section--fullscreen .ama-products__slide--bellavita .ama-products__slide-copy--left {
    width: 100%;
    max-width: none;
  }

  .ama-products-section--fullscreen .ama-products__slide--bellavita .ama-products__slide-bg {
    background: var(--intro-surface);
  }

  .ama-products-section--fullscreen .ama-products__slide--bellavita .ama-products__slide-bg img {
    object-fit: contain;
    object-position: center center;
  }

  .ama-products-section--fullscreen .ama-products__slide--bellavita::after {
    display: none;
  }

  .ama-products__slide--bellavita .ama-products__slide-logo {
    width: min(13.5rem, 62vw);
  }

  .ama-products__slide--bellavita .ama-products__slide-depth {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    will-change: auto;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa {
    min-height: 100dvh;
    height: 100dvh;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa .ama-products__slide-inner--calixa {
    position: relative;
    display: block;
    min-height: 100dvh;
    height: 100dvh;
    padding:
      calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + 0.5rem)
      0
      0;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa .ama-calixa__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom, 0px)) + 1.85rem);
    z-index: 2;
    width: 100%;
    padding: 0 var(--ama-pad);
    box-sizing: border-box;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa .ama-calixa__depth {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    will-change: auto;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa.is-slide-animated .ama-calixa__depth,
  .ama-products-section--fullscreen .ama-products__slide--calixa.is-slide-leaving .ama-calixa__depth {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa .ama-products__slide-bg {
    background: var(--intro-surface);
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa .ama-products__slide-bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .ama-products-section--fullscreen .ama-products__slide--calixa .ama-products__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
  }

  .ama-calixa__head-wrap,
  .ama-calixa__center-wrap {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .ama-calixa__center {
    gap: 0.55rem;
  }

  .ama-calixa__tech-bar-wrap {
    padding: 0.4rem 30px;
  }

  .ama-calixa__tech-bar {
    font-size: 0.58rem;
    white-space: normal;
  }

  .ama-calixa__head {
    width: 100%;
    margin-bottom: 0.85rem;
  }

  .ama-calixa__logo {
    width: min(12.5rem, 58vw);
    margin-bottom: 0.75rem;
  }

  .ama-calixa__tagline {
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    max-width: none;
    margin-bottom: 0.75rem;
  }

  .ama-calixa__features {
    display: none;
  }

  .ama-calixa__formula {
    display: none;
  }

  .ama-calixa__cta {
    display: inline-flex;
    margin-top: 0.5rem;
    align-self: center;
  }

  .ama-products-section--fullscreen .ama-products__slide--sticol {
    min-height: 100dvh;
    height: 100dvh;
  }

  .ama-products-section--fullscreen .ama-products__slide--sticol .ama-products__slide-inner--sticol {
    position: relative;
    display: block;
    min-height: 100dvh;
    height: 100dvh;
    padding:
      calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + 0.5rem)
      0
      0;
  }

  .ama-products-section--fullscreen .ama-products__slide--sticol .ama-sticol__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom, 0px)) + 1.85rem);
    z-index: 2;
    width: 100%;
    padding: 0 var(--ama-pad);
    box-sizing: border-box;
  }

  .ama-products-section--fullscreen .ama-products__slide--sticol .ama-products__slide-bg {
    background: var(--intro-surface);
  }

  .ama-products-section--fullscreen .ama-products__slide--sticol .ama-products__slide-bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .ama-products-section--fullscreen .ama-products__slide--sticol .ama-products__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
  }

  .ama-sticol__head-wrap,
  .ama-sticol__center-wrap {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .ama-sticol__center {
    gap: 0.55rem;
  }

  .ama-sticol__head {
    width: 100%;
    margin-bottom: 0.85rem;
  }

  .ama-sticol__logo-wrap {
    width: min(11.5rem, 56vw);
    margin-bottom: 0.65rem;
  }

  .ama-sticol__logo {
    width: 100%;
  }

  .ama-sticol__subtitle {
    font-size: 0.54rem;
    margin-bottom: 0.65rem;
    color: #1d1d1b;
  }

  .ama-sticol__divider {
    background: rgba(29, 29, 27, 0.35);
  }

  .ama-sticol__headline {
    font-size: clamp(0.95rem, 3.6vw, 1.08rem);
  }

  .ama-sticol__headline-line {
    color: #1d1d1b;
    text-shadow: none;
  }

  .ama-sticol__tech-box {
    width: auto;
    max-width: 100%;
    align-self: center;
    margin-inline: auto;
    padding: 0.45rem 20px;
    border-color: rgba(29, 29, 27, 0.35);
  }

  .ama-sticol__tech-icon {
    color: #1d1d1b;
  }

  .ama-sticol__tech-title {
    color: #1d1d1b;
  }

  .ama-products__slide--sticol .ama-sticol__cta.hero-panel__cta {
    border-color: #000;
    color: #000;
  }

  .ama-products__slide--sticol .ama-sticol__cta.hero-panel__cta:hover,
  .ama-products__slide--sticol .ama-sticol__cta.hero-panel__cta:focus-visible {
    border-color: #000;
    color: #000;
  }

  .ama-sticol__features {
    display: none;
  }

  .ama-sticol__cta {
    display: inline-flex;
    margin-top: 0.5rem;
    align-self: center;
  }

  .ama-products-section--fullscreen .ama-products__slide--elasty {
    min-height: 100dvh;
    height: 100dvh;
  }

  .ama-products-section--fullscreen .ama-products__slide--elasty .ama-products__slide-inner--elasty {
    position: relative;
    display: block;
    min-height: 100dvh;
    height: 100dvh;
    padding:
      calc(var(--ama-header-h) + env(safe-area-inset-top, 0px) + 0.5rem)
      0
      0;
  }

  .ama-products-section--fullscreen .ama-products__slide--elasty .ama-elasty__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom, 0px)) + 1.85rem);
    z-index: 2;
    width: 100%;
    padding: 0 var(--ama-pad);
    box-sizing: border-box;
  }

  .ama-products-section--fullscreen .ama-products__slide--elasty .ama-products__slide-bg {
    background: var(--intro-surface);
  }

  .ama-products-section--fullscreen .ama-products__slide--elasty .ama-products__slide-bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .ama-products-section--fullscreen .ama-products__slide--elasty .ama-products__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
  }

  .ama-elasty__head-wrap,
  .ama-elasty__center-wrap {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .ama-elasty__center {
    gap: 0.55rem;
  }

  .ama-elasty__head {
    width: 100%;
    margin-bottom: 0.85rem;
  }

  .ama-elasty__logo {
    width: min(12rem, 56vw);
    margin-bottom: 0.55rem;
  }

  .ama-elasty__subtitle {
    font-size: 0.52rem;
    margin-bottom: 0;
    color: #1a6f7a;
  }

  .ama-elasty__headline {
    font-size: clamp(0.95rem, 3.6vw, 1.08rem);
  }

  .ama-elasty__desc,
  .ama-elasty__features,
  .ama-elasty__series {
    display: none;
  }

  .ama-products__slide--elasty .ama-elasty__cta.hero-panel__cta {
    border-color: #000;
    color: #000;
  }

  .ama-products__slide--elasty .ama-elasty__cta.hero-panel__cta:hover,
  .ama-products__slide--elasty .ama-elasty__cta.hero-panel__cta:focus-visible {
    border-color: #000;
    color: #000;
  }

  .ama-elasty__cta {
    display: inline-flex;
    margin-top: 0.5rem;
    align-self: center;
  }

  .ama-products {
    display: block;
    overflow: visible;
  }

  .ama-products__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0 var(--ama-pad);
    box-sizing: border-box;
  }

  .ama-products__track {
    grid-auto-columns: 100%;
    gap: 0;
    padding-bottom: 0;
    scroll-padding-inline: 0;
  }

  .ama-products__card:not(.ama-products__slide) {
    width: 100%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .ama-products__slide {
    
    border: 1px solid rgba(48, 121, 181, 0.14);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ama-products-section--fullscreen .ama-products__slide--bellavita,
  .ama-products-section--fullscreen .ama-products__slide--calixa,
  .ama-products-section--fullscreen .ama-products__slide--sticol,
  .ama-products-section--fullscreen .ama-products__slide--elasty {
    border: none;
    box-shadow: none;
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ama::before,
  .ama::after {
    transform: none !important;
    opacity: 1 !important;
    transition: none;
  }

  .ama-hero__inner,
  .ama-hero__scroll-hint,
  .ama-hero__note {
    transform: none !important;
    opacity: 1 !important;
    transition: none;
  }

  .ama-hero__bg {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .ama-intro-item {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  body.ama-intro-ready .ama-hero__title--soft.ama-intro-item {
    opacity: 0.75;
  }

  .ama-hero__scroll-hint {
    animation: none;
  }

  .ama-hero__light {
    opacity: 0.7 !important;
  }

  .ama-scene__svg--drift,
  .ama-scene__svg--drift-reverse,
  .ama-scene__step::before {
    animation: none;
  }

  .ama-scene__bg {
    transform: none;
  }

  .ama-flow__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ama-scene__flow {
    transform: translate(-50%, -58%);
    flex-wrap: wrap;
    justify-content: center;
  }

  .ama-scene-reveal__orb {
    clip-path: none !important;
  }

  .ama-vision-reveal__surface,
  .ama-vision-orb__inner {
    opacity: 1 !important;
    transform: none !important;
  }

  .ama-reveal,
  .catalog-section--ama-reveal .ama-catalog-reveal,
  .events-section--ama-reveal .ama-events-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    letter-spacing: 0.02em;
  }

  .events-section--ama-reveal #events-reveal-grid .event-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    pointer-events: auto;
  }

  .catalog-section--ama-reveal #catalog-slider .catalog-slider__card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    pointer-events: auto;
  }

  .ama-instagram__marquee-track {
    transform: none !important;
  }

  .ama-nav,
  .ama-header__menu-bars,
  .ama-header__menu-bars::before,
  .ama-header__menu-bars::after {
    transition: none;
  }

  body.is-nav-open .ama-header__menu-bars {
    background: transparent;
  }

  body.is-nav-open .ama-header__menu-bars::before {
    top: 0;
    transform: rotate(45deg);
  }

  body.is-nav-open .ama-header__menu-bars::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .ama-header,
  body.ama-header-hidden:not(.is-nav-open) .ama-header {
    transform: none !important;
    transition: none;
  }

  .ama-products__slide .ama-products__slide-inner,
  .ama-products__slide.is-slide-animated .ama-products__slide-inner,
  .ama-products__slide.is-slide-leaving .ama-products__slide-inner,
  .ama-products__slide--bellavita .ama-products__slide-bg,
  .ama-products__slide--bellavita.is-slide-animated .ama-products__slide-bg,
  .ama-products__slide--bellavita.is-slide-leaving .ama-products__slide-bg,
  .ama-products__slide--bellavita .ama-products__slide-depth,
  .ama-products__slide--bellavita.is-slide-animated .ama-products__slide-depth,
  .ama-products__slide--bellavita.is-slide-leaving .ama-products__slide-depth,
  .ama-products__slide--calixa .ama-products__slide-bg,
  .ama-products__slide--calixa.is-slide-animated .ama-products__slide-bg,
  .ama-products__slide--calixa.is-slide-leaving .ama-products__slide-bg,
  .ama-products__slide--calixa .ama-calixa__depth,
  .ama-products__slide--calixa.is-slide-animated .ama-calixa__depth,
  .ama-products__slide--calixa.is-slide-leaving .ama-calixa__depth,
  .ama-products__slide--sticol .ama-products__slide-bg,
  .ama-products__slide--sticol.is-slide-animated .ama-products__slide-bg,
  .ama-products__slide--sticol.is-slide-leaving .ama-products__slide-bg,
  .ama-products__slide--sticol .ama-sticol__depth,
  .ama-products__slide--sticol.is-slide-animated .ama-sticol__depth,
  .ama-products__slide--sticol.is-slide-leaving .ama-sticol__depth,
  .ama-products__slide--elasty .ama-products__slide-bg,
  .ama-products__slide--elasty.is-slide-animated .ama-products__slide-bg,
  .ama-products__slide--elasty.is-slide-leaving .ama-products__slide-bg,
  .ama-products__slide--elasty .ama-elasty__depth,
  .ama-products__slide--elasty.is-slide-animated .ama-elasty__depth,
  .ama-products__slide--elasty.is-slide-leaving .ama-elasty__depth {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}
