/* Убираем ВСЕ эффекты масштабирования при наведении на картинки */
img {
    transform: none !important;
    transition: none !important;
    scale: 1 !important;
}

img:hover {
    transform: none !important;
    transition: none !important;
    scale: 1 !important;
}

/* Для конкретных классов изображений */
.image-class,
.img-class,
.photo,
.thumbnail {
    transform: none !important;
    transition: none !important;
    scale: 1 !important;
}

.image-class:hover,
.img-class:hover,
.photo:hover,
.thumbnail:hover {
    transform: none !important;
    transition: none !important;
    scale: 1 !important;
}

/* Убираем transform-origin изменения */
img,
.image-class,
.img-class,
.photo,
.thumbnail {
    transform-origin: center !important;
}

/* Отключаем все transition для изображений */
img,
.image-class,
.img-class,
.photo,
.thumbnail {
    transition-property: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    transition-timing-function: unset !important;
}

/* Дополнительная защита от любых анимаций */
img,
.image-class,
.img-class,
.photo,
.thumbnail {
    animation: none !important;
}

/* Убираем фильтры при наведении */
img:hover,
.image-class:hover,
.img-class:hover,
.photo:hover,
.thumbnail:hover {
    filter: none !important;
}

/* Отключаем изменение курсора при наведении */
img,
.image-class,
.img-class,
.photo,
.thumbnail {
    cursor: default !important;
}

/* Убираем любые изменения opacity */
img,
.image-class,
.img-class,
.photo,
.thumbnail {
    opacity: 1 !important;
}

img:hover,
.image-class:hover,
.img-class:hover,
.photo:hover,
.thumbnail:hover {
    opacity: 1 !important;
}

/* Защита от box-shadow эффектов */
img,
.image-class,
.img-class,
.photo,
.thumbnail {
    box-shadow: none !important;
}

img:hover,
.image-class:hover,
.img-class:hover,
.photo:hover,
.thumbnail:hover {
    box-shadow: none !important;
}