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

::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;
}





/* Блок "Соберём букет по вашим пожеланиям" */
.custom-bouquet-block{
  margin-top: 16px;
}

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

/* Текст */
.custom-bouquet-text{
  font-family: 'TildaSans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: #000;
  margin-bottom: 12px;
  max-width: 420px;
}

/* Кнопка */
.custom-bouquet-btn{
  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-bouquet-btn:hover{
  background: #e87eae;
  color: #ffffff !important;
}



/*Этот код: Красит только текст "Доступно по предзаказу" для товаров из категории "Предзаказ" */

.js-product.t-store__card.is-preorder .t-store__card__sold-out-msg {
  color: #e87eae !important;
}