/* ── Buton Slider ────────────────────────── */

.atbs-wrap {
  margin: 0 auto;
}

.atbs-swiper {
  overflow: hidden;
  position: relative;
}

.atbs-swiper .swiper-slide {
  width: auto;
}

.atbs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 18px;
  background: var(--atbs-btn-bg, #fff);
  color: var(--atbs-btn-color, #1e1d2f);
  border: 1px solid var(--atbs-btn-color, #1e1d2f);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.atbs-btn:hover {
  background: var(--atbs-btn-color, #1e1d2f);
  color: var(--atbs-btn-bg, #fff);
}

/* ── Navigation ─────────────────────────── */

.atbs-nav {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 14px;
}

.atbs-prev,
.atbs-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 6px;
  padding: 0;
}

.atbs-prev:hover,
.atbs-next:hover {
  background: var(--atbs-btn-color, #1e1d2f);
  color: var(--atbs-btn-bg, #fff);
}

.atbs-prev.swiper-button-disabled,
.atbs-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── Mobil: slider yok, alt alta ────────── */

@media (max-width: 768px) {
  .atbs-wrap {
    max-width: 100%;
  }

  .atbs-swiper .swiper-wrapper {
    flex-direction: column;
    transform: none !important;
    gap: 10px;
  }

  .atbs-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }

  .atbs-btn {
    white-space: normal;
    width: 100%;
  }

  .atbs-nav {
    display: none;
  }
}
