/* Styling for Swiper Element components using ::part selectors */

/* Target bullet parts in the Shadow DOM */

swiper-container {
  --swiper-pagination-bottom: -6px; /* Negative value creates space below pagination */
  --swiper-pagination-top: auto;     /* This is needed when changing bottom */
}

.shopg_templates_layouts swiper-container {
  --swiper-pagination-bottom: 7px;
}
swiper-container::part(bullet) {
  width: 10px;
  height: 10px;
  background-color: #d5d5d5;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

swiper-container::part(bullet):hover {
  background-color: #aaaaaa;
  transform: scale(1.1);
}

swiper-container::part(bullet-active) {
  width: 10px;
    background-color: #3498db;
    opacity: 1;
    height: 10px;
}

