/* ===== Owl Controls Wrapper ===== */
.owl-theme .owl-controls {
  margin-top: 12px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* ===== NAV BUTTONS ===== */
.owl-theme .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
  background: #16a34a;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #15803d;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== DOTS ===== */
.owl-theme .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active / Hover Dot */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #16a34a;
  transform: scale(1.2);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
  .owl-theme .owl-nav [class*="owl-"] {
    font-size: 12px;
    padding: 5px 8px;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }
}
