.l-header__block.group { display: none !important; }
.ny-side-tabs {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ny-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  width: 75px;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 15px 0 0 15px;
  box-shadow: -3px 3px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
}

.ny-tab:hover {
  padding-right: 15px; /* Немного выдвигается при наведении */
  background-blend-mode: soft-light;
}

.ny-tab-icon { font-size: 20px; margin-bottom: 3px; }
.ny-tab-text { font-size: 10px; font-weight: bold; text-transform: uppercase; text-align: center; line-height: 1.1; }

.tab-green { background: linear-gradient(135deg, #1b4d3e, #2d5a27); }
.tab-red   { background: linear-gradient(135deg, #b22222, #f44336); }
.tab-gold  { background: linear-gradient(135deg, #b8860b, #ffd700); color: #fff !important; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }

/* Скрываем старый блок в шапке */
.l-header__block.group { display: none !important; }

@media (max-width: 480px) {
  .ny-tab { width: 65px; }
  .ny-side-tabs { top: 30%; } /* На мобильных чуть выше, чтобы не мешать кнопке корзины */
}
/* раздел контакты */
/* ===== Контакты ===== */

.contacts-page {
  max-width: 900px;
}

.contacts-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contacts-card {
  background: #f9fafc;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.contact-value a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contacts-map iframe {
  border-radius: 12px;
  border: 1px solid #e6e9ef;
}

/* Мобилка */
@media (max-width: 768px) {
  .contacts-title {
    font-size: 22px;
  }

  .contact-value {
    font-size: 15px;
  }
}
/* Стили для плавающей кнопки Telegram */
.tg-floating-button {
    position: fixed;
    bottom: 30px; /* Отступ снизу */
    right: 30px;  /* Отступ справа */
    width: 60px;
    height: 60px;
    background-color: #24A1DE; /* Фирменный цвет Telegram */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(36, 161, 222, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tg-floating-button svg {
    width: 32px;
    height: 32px;
    margin-right: 3px; /* Центровка иконки визуально */
}

/* Анимация при наведении */
.tg-floating-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(36, 161, 222, 0.6);
}

/* Легкое "дыхание" кнопки, чтобы привлечь внимание */
@keyframes tg-pulse {
    0% { box-shadow: 0 0 0 0 rgba(36, 161, 222, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(36, 161, 222, 0); }
    100% { box-shadow: 0 0 0 0 rgba(36, 161, 222, 0); }
}

.tg-floating-button {
    animation: tg-pulse 2s infinite;
}

/* Адаптация для мобильных */
@media (max-width: 767px) {
    .tg-floating-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .tg-floating-button svg {
        width: 26px;
        height: 26px;
    }
}