@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 {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(255,255,255,.92);
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    z-index: 70;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
  }
}