/*Цветное выделение текста на сайте*/

::selection {
background: #e87eae; /*цветфон*/
color: #Ffffff; /*текст*/
}


/* Контурные кнопки Телефон + Telegram в карточку товара*/
 
 /* Блок связи под кнопкой "Заказать" */

.custom-contact-btns{
  margin-top: 16px;
}

/* Подзаголовок */
.custom-contact-title{
  font-family: 'TildaSans', Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #000;
}

/* Контейнер кнопок */
.custom-contact-buttons{
  display: flex;
  gap: 10px;
}

/* Сами кнопки */
.custom-contact-buttons a{
  height: 45px;
  padding: 0 30px;

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

  border-radius: 30px;
  border: 1px solid #e87eae;

  background: transparent;
  color: #e87eae !important;

  font-family: 'TildaSans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;

  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

/* hover */
.custom-contact-buttons a:hover{
  background: #e87eae;
  color: #ffffff !important;
}