/* Fixed CTA button like desthome */
.fixed-cta {
  position: fixed !important;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  padding: 14px 24px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 500 !important;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile adaptation */
@media (max-width: 640px) {
  .fixed-cta {
    width: calc(100% - 32px);
    left: 16px;
    transform: none;
    text-align: center;
  }
}

/* Голубой hover для верхнего меню и подменю (универсально для Tilda) */
.t-menu a:hover,
.t-menu a:focus,
.t-menusub a:hover,
.t-menusub a:focus {
  color: #2f80ed !important; /* голубой, можно заменить на свой */
}

/* Подсветка активного пункта (если хочешь) */
.t-menu a.t-active,
.t-menusub a.t-active {
  color: #2f80ed !important;
}
/* 1) Голубой hover для меню и подменю */
.t-menu a:hover,
.t-menusub a:hover,
.t-menu a:focus,
.t-menusub a:focus {
  color: #2f80ed !important;
}

/* 2) Показ подменю по наведению (desktop) */
@media (min-width: 981px) {
  /* универсально: когда наводим на пункт меню — показываем вложенный список */
  .t-menu__list-item:hover .t-menusub,
  .t-menu__list-item:hover .t-menusub__content,
  .t456__list_item:hover .t-menusub,
  .t228__list_item:hover .t-menusub {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
/* Fixed CTA — стили (без ) */
.arb-fixed-cta {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(10px);
  z-index: 999999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  border-radius: 6px;

  background-color: #edeff2 !important;
  color: #000000 !important;

  font-family: 'TildaSans', Arial, sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none !important;

  box-shadow: 0 8px 20px rgba(0,0,0,.12);

  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.arb-fixed-cta.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.arb-fixed-cta:hover,
.arb-fixed-cta:visited,
.arb-fixed-cta:active {
  color: #000000 !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .arb-fixed-cta {
    left: 16px;
    transform: translateY(10px);
    width: calc(100% - 32px);
    text-align: center;
  }
  .arb-fixed-cta.is-visible { transform: translateY(0); }
}
.t228,
.t456,
.t199{
transition: all .4s ease;
}

/* Zoom только для элементов с классом arb-zoom */
.arb-zoom {
  overflow: hidden;
}

.arb-zoom img {
  transition: transform 0.4s ease;
}

.arb-zoom:hover img {
  transform: scale(1.2);
}

/* если изображение задано как background (t-bgimg) */
.arb-zoom .t-bgimg,
.arb-zoom.t-bgimg {
  transition: transform 0.4s ease;
}

.arb-zoom:hover .t-bgimg,
.arb-zoom.t-bgimg:hover {
  transform: scale(1.2);
}