.embla {
  position: relative;
  margin: 20px 0;
  width: 100%;
}

.embla__viewport {
  overflow: hidden;
  width: 100%;
}

.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

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

.embla__slide__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 620px;
}

.embla__controls {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
}

.embla__buttons {
  display: flex;
  gap: 8px;
}

.embla__button {
  background: none;
  border: none;
  cursor: pointer;
  color: #c09d65;
  padding: 4px;
  display: flex;
  align-items: center;
}

.embla__button--disabled {
  color: #ddd;
  cursor: default;
}

.embla__button__svg {
  width: 18px;
  height: 18px;
}

.embla__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.embla__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
}

.embla__dot--selected {
  background: #c09d65;
}

.gallery-thumb {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb--selected {
  opacity: 1;
}
