/* =========================
   AUDIO CARD STYLE
========================= */

.audio-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.audio-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.audio-card h3 {
  margin: 12px 0 4px;
  font-size: 18px;
}

.audio-card .author {
  font-size: 14px;
  opacity: 0.7;
}

.audio-card p {
  font-size: 14px;
  margin: 8px 0;
}

.audio-card audio {
  width: 100%;
  margin: 10px 0;
}

.unlock-btn {
  display: block;
  background: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
}

/* =========================
   OWL CAROUSEL CONTAINER
========================= */

.audio-owl {
  position: relative;
  overflow: hidden; /* 🔴 no overflow */
  padding-bottom: 50px; /* space for nav */
}

/* =========================
   BOTTOM NAVIGATION
========================= */

.audio-owl .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  pointer-events: none;
  z-index: 5;
}

.audio-owl .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-owl .owl-nav button span {
  font-size: 22px;
}

.audio-owl .owl-nav button:hover {
  background: #ff4d6d !important;
}

.audio-owl .owl-nav button.disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* =========================
   DOTS (BELOW ARROWS)
========================= */

.audio-owl .owl-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.audio-owl .owl-dot span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.audio-owl .owl-dot.active span {
  background: #000;
  width: 20px;
  border-radius: 10px;
}

/* =========================
   ELEMENTOR EDITOR FIX
========================= */

.elementor-editor-active .audio-owl {
  min-height: 260px;
  opacity: 1 !important;
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 767px) {
  .audio-owl {
    padding-bottom: 46px;
  }

  .audio-owl .owl-nav button {
    width: 36px;
    height: 36px;
  }

  .audio-owl .owl-nav button span {
    font-size: 18px;
  }
}
