.brand-showcase--orbit {
  --io-section-bg: #ffffff;
  --io-orbit-bg: #ffcd02;
  --io-orbit-border: #0b0f17;
  --io-orbit-text: #0b0f17;
  --io-active-chip-bg: #ffcd02;
  --io-active-chip-border: #0b0f17;
  --io-active-chip-glow: rgba(255, 205, 2, 0.35);
  --io-inactive-chip-bg: #0b0f17;
  --io-inactive-chip-border: rgba(11, 15, 23, 0.35);
  --io-inactive-chip-opacity: 0.85;
  --io-ring-inner-color: rgba(11, 15, 23, 0.55);
  --io-ring-outer-color: rgba(11, 15, 23, 0.35);
  --io-ring-inner-dash: 8 10;
  --io-ring-outer-dash: 2 10;
  --io-shadow-strength: 0.35;
  --io-center-diameter: 260px;
  --io-orbit-radius: 190px;
  --io-chip-diameter: 64px;
  --io-ring-inner-radius: 210px;
  --io-ring-outer-radius: 245px;
  --io-ring-inner-stroke: 2px;
  --io-ring-outer-stroke: 2px;
  --io-stage-size: 520px;
  --io-stage-half: 260px;
  --io-step-duration: 900ms;
  --io-step-ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --io-rotation: -90deg;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f3f6fa 100%);
  padding: 88px 0;
  border-top: 1px solid rgba(12, 18, 28, 0.08);
  border-bottom: 1px solid rgba(12, 18, 28, 0.08);
}

.brand-showcase--orbit .brand-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  max-width: var(--io-max-width, var(--container));
  margin: 0 auto;
}

.brand-showcase--orbit.brand-showcase--media-left .brand-showcase__content {
  order: 2;
}

.brand-showcase--orbit.brand-showcase--media-left .brand-showcase__media {
  order: 1;
}

.brand-showcase--orbit .brand-showcase__content {
  max-width: 560px;
}

.brand-showcase--orbit .brand-showcase__title {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: #0b0f17;
}

.brand-showcase--orbit .brand-showcase__body {
  margin-bottom: 24px;
}

.brand-showcase--orbit .brand-showcase__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-showcase--orbit .brand-showcase__stage {
  position: relative;
  width: min(100%, var(--io-stage-size));
  aspect-ratio: 1 / 1;
}

@media (max-width: 900px) {
  .brand-showcase--orbit {
    padding: 48px 0;
    --io-mobile-scale: 0.78;
  }

.brand-showcase--orbit .brand-showcase__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

.brand-showcase--orbit .brand-showcase__content {
    order: 2;
    max-width: 100%;
  }

.brand-showcase--orbit .brand-showcase__media {
    order: 1;
    overflow: hidden;
    margin-bottom: 28px;
  }

.brand-showcase--orbit .brand-showcase__stage {
    transform: scale(var(--io-mobile-scale));
    transform-origin: center;
    max-width: min(92vw, 360px);
    width: 100%;
    margin: 0 auto;
  }

.brand-showcase--orbit .brand-showcase__title {
    font-size: 32px;
  }
}

.brand-showcase--orbit .brand-showcase__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-showcase--orbit .brand-showcase__ring-group {
  transform-origin: center;
  transform-box: fill-box;
}

.brand-showcase--orbit .brand-showcase__ring {
  fill: none;
  stroke-linecap: round;
  transform-origin: center;
  transform-box: fill-box;
}

.brand-showcase--orbit .brand-showcase__ring--inner {
  stroke: var(--io-ring-inner-color);
  stroke-dasharray: var(--io-ring-inner-dash);
  animation: io-ring-rotate var(--io-ring-inner-duration, 26s) linear infinite;
}

.brand-showcase--orbit .brand-showcase__ring--outer {
  stroke: var(--io-ring-outer-color);
  stroke-dasharray: var(--io-ring-outer-dash);
  animation: io-ring-rotate var(--io-ring-outer-duration, 40s) linear infinite;
}

.brand-showcase--orbit .brand-showcase__orbit {
  position: absolute;
  inset: 0;
}

.brand-showcase--orbit .brand-showcase__orbit-rotator {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) rotate(var(--io-rotation));
  transition: transform var(--io-step-duration) var(--io-step-ease);
}

.brand-showcase--orbit .brand-showcase__orbit-item {
  position: absolute;
  left: calc(var(--io-chip-diameter) / -2);
  top: calc(var(--io-chip-diameter) / -2);
  width: var(--io-chip-diameter);
  height: var(--io-chip-diameter);
  transform: rotate(var(--io-angle)) translate(var(--io-orbit-radius))
    rotate(calc(-1 * (var(--io-angle) + var(--io-rotation))));
}

.brand-showcase--orbit .brand-showcase__chip {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(18, 24, 36, 0.16);
  background: linear-gradient(145deg, #ffffff 0%, #eef2f6 100%);
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--io-step-duration) var(--io-step-ease),
    opacity var(--io-step-duration) var(--io-step-ease),
    box-shadow var(--io-step-duration) var(--io-step-ease),
    border-color var(--io-step-duration) var(--io-step-ease);
  text-decoration: none;
  padding: 9px;
  box-shadow: 0 10px 22px rgba(11, 15, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.brand-showcase--orbit .brand-showcase__chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}

.brand-showcase--orbit .brand-showcase__chip.is-active {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.98),
      rgba(240, 244, 249, 0.98) 45%,
      rgba(219, 226, 236, 1) 100%
    );
  border-color: rgba(12, 18, 28, 0.35);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(11, 15, 23, 0.22),
    0 0 0 6px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-showcase--orbit .brand-showcase__chip.is-active img {
  filter: saturate(1) contrast(1.08);
}

.brand-showcase--orbit .brand-showcase__chip:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.brand-showcase--orbit .brand-showcase__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--io-center-diameter);
  height: var(--io-center-diameter);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(
      circle at 30% 28%,
      rgba(255, 255, 255, 0.95),
      rgba(246, 248, 251, 0.96) 38%,
      rgba(226, 231, 238, 0.98) 68%,
      rgba(210, 216, 226, 1) 100%
    ),
    var(--io-orbit-bg);
  border: 1px solid rgba(12, 18, 28, 0.18);
  color: var(--io-orbit-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(11, 15, 23, calc(0.24 * var(--io-shadow-strength))),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 22px 30px rgba(255, 255, 255, 0.25),
    inset 0 -18px 26px rgba(18, 24, 36, 0.18);
  transition: transform var(--io-step-duration) var(--io-step-ease),
    opacity var(--io-step-duration) var(--io-step-ease);
}

.brand-showcase--orbit .brand-showcase__center-logo {
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.brand-showcase--orbit .brand-showcase__center.is-switching {
  transform: translate(-50%, -50%) scale(1.02);
  opacity: 0.96;
}

.brand-showcase--orbit .brand-showcase__center-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(10, 14, 22, 0.22));
}

.brand-showcase--orbit .brand-showcase__center-name {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.brand-showcase--orbit .brand-showcase--center-logo .brand-showcase__center-name {
  display: none;
}

.brand-showcase--orbit .brand-showcase--center-name .brand-showcase__center-logo {
  display: none;
}

.brand-showcase--orbit.is-paused .brand-showcase__ring--inner,
.brand-showcase--orbit.is-paused .brand-showcase__ring--outer {
  animation-play-state: paused;
}

.brand-showcase--orbit.is-reduced-motion .brand-showcase__ring--inner,
.brand-showcase--orbit.is-reduced-motion .brand-showcase__ring--outer {
  animation: none;
}

.brand-showcase--orbit .brand-showcase--align-center .brand-showcase__content {
  text-align: center;
  margin: 0 auto;
}

@keyframes io-ring-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.brand-showcase--grid {
  --is-bg: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f1f4f9 100%);
  --is-border: rgba(12, 18, 28, 0.1);
  --is-panel-bg: radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.98),
      rgba(241, 244, 248, 0.98) 55%,
      rgba(220, 226, 236, 1) 100%
    );
  --is-card-bg: linear-gradient(145deg, #ffffff 0%, #eef2f6 100%);
  --is-card-border: rgba(12, 18, 28, 0.12);
  background: var(--is-bg);
  padding: 88px 0;
  border-top: 1px solid var(--is-border);
  border-bottom: 1px solid var(--is-border);
}

.brand-showcase--grid .brand-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  max-width: var(--is-max-width, var(--container));
  margin: 0 auto;
}

.brand-showcase--grid.brand-showcase--media-left .brand-showcase__content {
  order: 2;
}

.brand-showcase--grid.brand-showcase--media-left .brand-showcase__media {
  order: 1;
}

.brand-showcase--grid .brand-showcase__content {
  max-width: 560px;
}

.brand-showcase--grid .brand-showcase__title {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: #0b0f17;
}

.brand-showcase--grid .brand-showcase__body {
  margin-bottom: 24px;
}

.brand-showcase--grid .brand-showcase--align-center .brand-showcase__content {
  text-align: center;
  margin: 0 auto;
}

.brand-showcase--grid .brand-showcase__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-showcase--grid .brand-showcase__panel {
  width: min(100%, 520px);
  padding: 32px;
  border-radius: 30px;
  background: var(--is-panel-bg);
  border: 1px solid rgba(12, 18, 28, 0.12);
  box-shadow: 0 30px 70px rgba(11, 15, 23, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.brand-showcase--grid .brand-showcase__logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-showcase--grid .brand-showcase__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 16px;
  background: var(--is-card-bg);
  border: 1px solid rgba(12, 18, 28, 0.1);
  box-shadow: 0 18px 34px rgba(11, 15, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  min-height: 86px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.brand-showcase--grid .brand-showcase__logo-card img {
  width: 100%;
  height: 100%;
  max-height: 36px;
  object-fit: contain;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.brand-showcase--grid .brand-showcase__logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 18, 28, 0.22);
  box-shadow: 0 22px 44px rgba(11, 15, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-showcase--grid .brand-showcase__logo-card:focus-visible {
  outline: 2px solid rgba(12, 18, 28, 0.45);
  outline-offset: 3px;
}

.brand-showcase--grid .brand-showcase__logo-card[data-io-id="ideasoft"] img {
  max-height: 48px;
}

.brand-showcase--grid .brand-showcase__logo-card[data-io-id="shopify"] img {
  max-height: 52px;
}

.brand-showcase--grid .brand-showcase__logo-card[data-io-id="tsoft"] img,
.brand-showcase--grid .brand-showcase__logo-card[data-io-id="ticimax"] img {
  max-height: 30px;
}

.brand-showcase__logo-card[data-io-id="nopcommerce"] img {
  max-height: 58px;
}

.brand-showcase--grid .brand-showcase__logo-card[data-io-id="ikas"] img {
  max-height: 44px;
}

@media (max-width: 900px) {
  .brand-showcase--grid {
    padding: 52px 0;
  }

.brand-showcase--grid .brand-showcase__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

.brand-showcase--grid .brand-showcase__content {
    order: 2;
    max-width: 100%;
  }

.brand-showcase--grid .brand-showcase__media {
    order: 1;
    margin-bottom: 28px;
  }

.brand-showcase--grid .brand-showcase__panel {
    width: min(100%, 420px);
  }

.brand-showcase--grid .brand-showcase__logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.brand-showcase--grid .brand-showcase__title {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
.brand-showcase--grid .brand-showcase__panel {
    padding: 20px;
  }

.brand-showcase--grid .brand-showcase__logo-card {
    min-height: 72px;
  }

.brand-showcase--grid .brand-showcase__logo-card img {
    max-height: 32px;
  }
}

.brand-showcase--ledger {
  --il-bg: linear-gradient(180deg, #f7f9fc 0%, #ffffff 55%, #f0f3f8 100%);
  --il-border: rgba(12, 18, 28, 0.1);
  --il-panel-bg: radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.98),
      rgba(239, 243, 248, 0.98) 60%,
      rgba(217, 224, 234, 1) 100%
    );
  background: var(--il-bg);
  padding: 88px 0;
  border-top: 1px solid var(--il-border);
  border-bottom: 1px solid var(--il-border);
}

.brand-showcase--ledger .brand-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  max-width: var(--il-max-width, var(--container));
  margin: 0 auto;
}

.brand-showcase--ledger .brand-showcase__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-showcase--ledger .brand-showcase__content {
  max-width: 560px;
}

.brand-showcase--ledger .brand-showcase__title {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: #0b0f17;
}

.brand-showcase--ledger .brand-showcase__body {
  margin-bottom: 24px;
}

.brand-showcase--ledger .brand-showcase__panel {
  width: min(100%, 440px);
  padding: 28px;
  border-radius: 26px;
  background: var(--il-panel-bg);
  border: 1px solid rgba(12, 18, 28, 0.12);
  box-shadow: 0 26px 60px rgba(11, 15, 23, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.brand-showcase--ledger .brand-showcase__logo-stack {
  display: grid;
  gap: 12px;
}

.brand-showcase--ledger .brand-showcase__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #eef2f6 100%);
  border: 1px solid rgba(12, 18, 28, 0.1);
  box-shadow: 0 12px 26px rgba(11, 15, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  min-height: 70px;
}

.brand-showcase--ledger .brand-showcase__logo-item img {
  width: 100%;
  height: 100%;
  max-height: 55px;
  object-fit: contain;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.brand-showcase--ledger .brand-showcase__logo-item[data-il-id="trendyol-efaturam"] img {
  max-height: 35px;
}

.brand-showcase--ledger .brand-showcase__logo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 18, 28, 0.22);
  box-shadow: 0 18px 36px rgba(11, 15, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-showcase--ledger .brand-showcase__logo-item:focus-visible {
  outline: 2px solid rgba(12, 18, 28, 0.45);
  outline-offset: 3px;
}

.brand-showcase--ledger .brand-showcase--align-center .brand-showcase__content {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .brand-showcase--ledger {
    padding: 52px 0;
  }

.brand-showcase--ledger .brand-showcase__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

.brand-showcase--ledger .brand-showcase__media {
    order: 1;
    margin-bottom: 28px;
  }

.brand-showcase--ledger .brand-showcase__content {
    order: 2;
    max-width: 100%;
  }

.brand-showcase--ledger .brand-showcase__panel {
    width: min(100%, 420px);
  }

.brand-showcase--ledger .brand-showcase__title {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
.brand-showcase--ledger .brand-showcase__panel {
    padding: 20px;
  }

.brand-showcase--ledger .brand-showcase__logo-item {
    min-height: 64px;
  }

.brand-showcase--ledger .brand-showcase__logo-item img {
    max-height: 48px;
  }
}

.brand-showcase--rail {
  --ic-bg: linear-gradient(180deg, #f7f9fc 0%, #ffffff 55%, #eef2f7 100%);
  --ic-border: rgba(12, 18, 28, 0.1);
  --ic-frame-bg: radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.98),
      rgba(238, 242, 248, 0.98) 60%,
      rgba(215, 222, 233, 1) 100%
    );
  background: var(--ic-bg);
  padding: 88px 0;
  border-top: 1px solid var(--ic-border);
  border-bottom: 1px solid var(--ic-border);
}

.brand-showcase--rail .brand-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  max-width: var(--ic-max-width, var(--container));
  margin: 0 auto;
}

.brand-showcase--rail.brand-showcase--media-left .brand-showcase__content {
  order: 2;
}

.brand-showcase--rail.brand-showcase--media-left .brand-showcase__media {
  order: 1;
}

.brand-showcase--rail .brand-showcase__content {
  max-width: 560px;
}

.brand-showcase--rail .brand-showcase__title {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: #0b0f17;
}

.brand-showcase--rail .brand-showcase__body {
  margin-bottom: 24px;
}

.brand-showcase--rail .brand-showcase__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-showcase--rail .brand-showcase__frame {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 28px;
  background: var(--ic-frame-bg);
  border: 1px solid rgba(12, 18, 28, 0.12);
  box-shadow: 0 26px 60px rgba(11, 15, 23, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.brand-showcase--rail .brand-showcase__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brand-showcase--rail .brand-showcase__tile {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #eef2f6 100%);
  border: 1px solid rgba(12, 18, 28, 0.1);
  box-shadow: 0 14px 30px rgba(11, 15, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.brand-showcase--rail .brand-showcase__tile-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.brand-showcase--rail .brand-showcase__tile img {
  width: 100%;
  height: 100%;
  max-height: 36px;
  object-fit: contain;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.brand-showcase--rail .brand-showcase__tile[data-bs-id="aras"] img {
  max-height: 30px;
}

.brand-showcase--rail .brand-showcase__tile[data-bs-id="surat"] img {
  max-height: 26px;
}

.brand-showcase--rail .brand-showcase__tile[data-bs-id="ups"] img {
  max-height: 42px;
}

.brand-showcase--rail .brand-showcase__tile[data-bs-id="yurtici"] img {
  max-height: 60px;
}

.brand-showcase--rail .brand-showcase__tile:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 18, 28, 0.22);
  box-shadow: 0 18px 36px rgba(11, 15, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-showcase--rail .brand-showcase__tile:focus-visible {
  outline: 2px solid rgba(12, 18, 28, 0.45);
  outline-offset: 3px;
}

.brand-showcase--rail .brand-showcase--align-center .brand-showcase__content {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .brand-showcase--rail {
    padding: 52px 0;
  }

.brand-showcase--rail .brand-showcase__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

.brand-showcase--rail .brand-showcase__media {
    order: 1;
    margin-bottom: 28px;
  }

.brand-showcase--rail .brand-showcase__content {
    order: 2;
    max-width: 100%;
  }

.brand-showcase--rail .brand-showcase__frame {
    width: min(100%, 420px);
  }

.brand-showcase--rail .brand-showcase__rail {
    grid-template-columns: 1fr;
  }

.brand-showcase--rail .brand-showcase__title {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
.brand-showcase--rail .brand-showcase__frame {
    padding: 20px;
  }

.brand-showcase--rail .brand-showcase__tile-inner {
    min-height: 64px;
  }

.brand-showcase--rail .brand-showcase__tile img {
    max-height: 32px;
  }
}
