






/* Кнопка */
/* .call-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #e67e22;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 7px 18px rgba(230, 126, 34, 0.8); 
    transition: 0.3s, box-shadow 0.3s;
} */

/* Иконка */
/* .call-button::before {
    content: "📞";
    margin-right: 10px;
} */

/* Hover эффект */
/* .call-button:hover {
    transform: translateY(-3px);
    background: #d16200;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 1); 
} */

/* Нажатие */
/* .call-button:active {
    transform: translateY(1px);
    background: #7c3a00;
    box-shadow: 0 5px 30px rgba(230, 126, 34, 1);
}
 */




















 /* чтобы контент не уезжал под фиксированную шапку */
    body { padding-top: 56px; }
html, body {
    height: 100%;
}








    /* Скрытие / показ */
    /* @media (max-width: 767.98px) {
      .price-table {
        display: none;
      }
    }

    @media (min-width: 768px) {
      .price-cards {
        display: none;
      }
    }

 */












































 










/* Авто подсказки ДА ДА ТА */
 .position-relative {
    position: relative;
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.suggestion-item {
    padding: 12px;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f3f3f3;
}






/*Нижнее уведомление*/
.test_notif {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;

  padding: 5px;
  border-radius: 10px;
  background: #e67e22;


  
}












