/* ============================================
   Seebrale standalone infinite carousel
   Replaces Framer's finite SlideShow component
   ============================================ */

.seebrale-carousel {
  opacity: 1 !important;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.seebrale-carousel-track {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  list-style: none !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.seebrale-carousel-track > li {
  display: block !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.seebrale-carousel-track > li > div {
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
}

.seebrale-carousel-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination dots */
.seebrale-dots {
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  z-index: 10;
}

.seebrale-dots button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px 4.5px;
  display: flex;
}

.seebrale-dots button:first-child {
  padding-left: 10px;
}

.seebrale-dots button:last-child {
  padding-right: 10px;
}

.seebrale-dots button span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

.seebrale-dots button.is-active span {
  opacity: 1;
}
