/* Embla Carousel Base Styles */
.embla {
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.embla__container {
  display: flex;
  gap: 16px;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.embla__slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Navigation Buttons - Inside Container */
.embla__buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.embla__button {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00A994;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.embla__button:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.embla__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Dots Navigation - Inside Container at Bottom */
.embla__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 10;
}

.embla__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.embla__dot--selected {
  background: #00A994;
  width: 24px;
  border-radius: 5px;
}

.embla__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Remove the old controls container */
.embla__controls {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .embla__slide img {
    height: 200px;
  }
  
  .embla__button {
    width: 32px;
    height: 32px;
  }
  
  .embla__buttons {
    padding: 0 8px;
  }
}