.ezotour-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 30px;
  min-height: 70px;
  color: #fff !important;
  text-decoration: none;
  background: #333333bd;
  border: dashed 1px #e98000;
  border-radius: 20px;
  font-size: 24px;
  text-shadow: 0 0 10px #000;
  transition: background-color 0.2s, color 0.2s;
  box-sizing: border-box;
}

/* Иконка — фиксированная ширина слева */
.ezotour-menu-item svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Текст — остаётся в потоке и центрируется */
.ezotour-menu-item span {
  text-align: center;
  margin: 0 auto; /* центрирует span внутри flex-контейнера */
}

/* Наведение */
.ezotour-menu-item:hover {
  background: #333333;
  color: #ff8c00 !important;
  text-shadow: none;
}

/* Мобильные */
@media (max-width: 768px) {
  .ezotour-menu-item {
    padding: 16px 20px 16px 50px;
    font-size: 20px;
    min-height: auto;
  }
  .ezotour-menu-item svg {
    left: 12px;
    width: 24px;
    height: 24px;
  }
}
