/* fire slider*/
.ao-widget.widget.widget_ao_fire_slider {
  background: none;
  box-shadow: none;
}

.ao-fire-slider-wrap {
  position: relative;
  padding: 0 50px;
}

.ao-fire-slider-wrap .ao-fire-slider__prev,
.ao-fire-slider-wrap .ao-fire-slider__next {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--ao-primary);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.35);
  transition:
    background 0.18s,
    transform 0.15s;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.ao-fire-slider-wrap .ao-fire-slider__prev {
  left: 0;
}
.ao-fire-slider-wrap .ao-fire-slider__next {
  right: 0;
}

.ao-fire-slider-wrap .ao-fire-slider__prev:hover,
.ao-fire-slider-wrap .ao-fire-slider__next:hover {
  background: var(--ao-primary-hover, #5a4bd1);
  transform: translateY(-50%) scale(1.08);
}

.ao-fire-slider-wrap .swiper-button-prev::after,
.ao-fire-slider-wrap .swiper-button-next::after {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}

/* Kart */
.ao-fire-slide {
  display: flex;
  align-items: stretch;
  background: #1a1b2e;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.ao-fire-slide:hover {
  transform: translateY(-2px);
  box-shadow: 5px 8px 24px rgba(0, 0, 0, 0.4);
}

.ao-fire-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ao-primary);
  border-radius: 12px 0 0 12px;
}

.ao-fire-slide--completed::before {
  background: var(--ao-info);
}
.ao-fire-slide--canceled::before {
  background: var(--ao-danger);
}
.ao-fire-slide--on-hold::before {
  background: var(--ao-warning);
}
.ao-fire-slide--upcoming::before {
  background: var(--ao-text-muted);
}

.ao-fire-slide__info {
  flex: 1;
  min-width: 0;
  padding: 18px 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}

.ao-fire-slide__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ao-fire-slide__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: capitalize;
}

.ao-fire-slide__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ao-success);
  flex-shrink: 0;
}

.ao-fire-slide--completed .ao-fire-slide__status-dot {
  background: var(--ao-info);
}
.ao-fire-slide--canceled .ao-fire-slide__status-dot {
  background: var(--ao-danger);
}
.ao-fire-slide--on-hold .ao-fire-slide__status-dot {
  background: var(--ao-warning);
}
.ao-fire-slide--upcoming .ao-fire-slide__status-dot {
  background: var(--ao-text-muted);
}

.ao-fire-slide__type {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(108, 92, 231, 0.25);
  color: #a89bff;
  letter-spacing: 0.5px;
}

.ao-fire-slide__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  transition: color 0.18s;
}

.ao-fire-slide__title:hover {
  color: #a89bff;
}

.ao-fire-slide__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin: 0;
}

.ao-fire-slide__chapter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.ao-fire-slide__sep {
  opacity: 0.5;
}

.ao-fire-slide__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.ao-fire-slide__genre {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.15s,
    color 0.15s;
}

.ao-fire-slide__genre:hover {
  background: var(--ao-primary);
  color: #fff;
  border-color: var(--ao-primary);
}
.ao-fire-slide__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
/* Detay butonu */
.ao-fire-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a89bff;
  text-decoration: none;
  transition:
    gap 0.15s,
    color 0.15s;
  margin-top: 2px;
  align-self: flex-start;
}

.ao-fire-slide__btn:hover {
  color: #fff;
  gap: 6px;
}

.ao-fire-slide__cover {
  flex-shrink: 0;
  width: 120px;
  position: relative;
  overflow: hidden;
  transform: rotateZ(20deg) scale(1.5);
  transition: all 0.4s;
}

.ao-fire-slide:hover .ao-fire-slide__cover {
  transition: all 0.4s;
  transform: rotateZ(0deg) scale(1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ao-fire-slide__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}

.ao-fire-slide:hover .ao-fire-slide__cover img {
  transform: scale(1.05);
}
.ao-fire-slide__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1a1b2e 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.ao-fire-slide__no-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 600px) {
  .ao-fire-slide {
    height: 200px;
  }
  .ao-fire-slide__cover {
    width: 90px;
  }
  .ao-fire-slide__title {
    font-size: 0.95rem;
  }
}
