@media (max-width: 767px) {
  .p-image {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
  }

  .mobile-swipe-track {
    position: absolute;
    inset: 0;
    display: flex;
    width: 200%;
    height: 100%;
    z-index: 55;
  }

  .mobile-swipe-track.is-animating {
    transition: transform 0.26s ease;
  }

  .mobile-swipe-track img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
  }

  .mobile-gallery-counter {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
}
.mobile-gallery-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  display: flex;
  gap: 8px;
}

.mobile-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(120,120,120,.35);
  transition: all .25s ease;
}

.mobile-gallery-dot.active {
  background: #F9AF62;
  transform: scale(1.35);
}
