/* Custom styles that don't fit in Tailwind utilities */

/* Splide carousel overrides */
.splide__arrow {
  background: rgba(255, 255, 255, 0.9);
  width: 2.5rem;
  height: 2.5rem;
}
.splide__arrow svg {
  fill: #1b5e20;
}
.splide__pagination__page.is-active {
  background: #1b5e20;
}

/* GLightbox overrides */
.glightbox-clean .gslide-description {
  background: transparent;
}

/* Counter animation */
.counter-value {
  transition: all 0.5s ease-out;
}

/* Mega menu */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.group:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile CTA bar */
.mobile-cta-bar {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* 2GIS map responsive */
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
