.some-class самовывоз,
span самовывоз {
    font-weight: bold;
}

.h-categ__img {
  position: relative;
  overflow: hidden;
  display: inline-block; /* Для корректного отображения */
}

.h-categ__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  display: block; /* Убирает лишние отступы */
  transition: filter 0.4s ease; /* Для плавности эффекта */
}

/* Эффект ряби (без смещения изображения) */
.h-categ__img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

/* Анимация при наведении */
.h-categ__img:hover::after {
  animation: waterRipple 1.2s ease-out;
}

@keyframes waterRipple {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Легкое свечение изображения */
.h-categ__img:hover img {
  filter: brightness(1.02);
}

.header__address {
color:#222;
}

