/**
 * Override styles for Fotorama to improve swipe handling
 */
.fotorama__wrap {
    -webkit-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    touch-action: manipulation; /* Allow panning in all directions by default */
}

.fotorama__stage {
    touch-action: manipulation; /* Allow panning in all directions by default */
}

.fotorama__stage.swiping {
    touch-action: none; /* Disable all scrolling during active swipe */
}

/* Only apply horizontal panning restriction during active swiping */
.fotorama__wrap.horizontal-swipe {
    touch-action: pan-x;
}

.fotorama__stage.horizontal-swipe {
    touch-action: pan-x;
}

/* Styles for thumbnail navigation */
.fotorama__nav-wrap{
    touch-action: manipulation; /* Allow panning in all directions by default */
}

.fotorama__nav-wrap.horizontal-swipe{
    touch-action: pan-x; /* Restrict to horizontal panning when swiping */
}

.fotorama__nav-wrap.swiping{
    touch-action: none; /* Disable all scrolling during active swipe */
}
