.uc-nav-item {
  cursor: default;
  user-select: none;
}

/* ===============================
   FRAME / SHAPE (фон)
   =============================== */
.uc-frame {
  pointer-events: none !important;
}

/* ===============================
   CONTACTS — базовое
   =============================== */
.uc-copy-email a,
.uc-copy-phone a {
  color: inherit;
  text-decoration: none;
  user-select: text;
  -webkit-user-select: text;
  transition: opacity 0.2s ease;
}

/* hover */
.uc-copy-email a:hover,
.uc-copy-phone a:hover {
  opacity: 0.6;
}

/* ===============================
   DESKTOP: копирование, без клика
   =============================== */
@media (hover: hover) and (pointer: fine) {
  .uc-copy-email a,
  .uc-copy-phone a {
    pointer-events: none;
    cursor: text;
    user-select: text;
    -webkit-user-select: text;
  }
}

/* ===============================
   MOBILE: кликабельно
   =============================== */
@media (max-width: 980px) {
  .uc-copy-email a,
  .uc-copy-phone a {
    pointer-events: auto;
    cursor: pointer;
    user-select: auto;
  }
}

/* ===============================
   CONTACT BLOCKS VISIBILITY
   =============================== */
.uc-contact-mobile { display: none !important; }
.uc-contact-desktop { display: block !important; }

@media (max-width: 980px) {
  .uc-contact-mobile { display: block !important; }
  .uc-contact-desktop { display: none !important; }
}

/* ===============================
   SELECTION (убираем синий фон)
   =============================== */
::selection {
  background: rgba(180, 190, 200, 0.5);
  color: inherit;
}
