/* Плавающий блок */
.floating-block {
  position: fixed;
  padding-top: 8px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Кнопка "Добавить в корзину" */
.floating-block .add-to-basket-btn {
  display: block;
  width: 95%;
  margin: auto;
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.floating-block .add-to-basket-btn:hover {
   background-color: #0056b3;
 }

/* Надпись "Доставим сегодня" */
.floating-block .delivery-info {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin: 5px 0;
}

.floating-block .delivery-info span {
  font-weight: bold;
}

/* Навигация с иконками */
.floating-block .navigation {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.floating-block .nav-item {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.floating-block .nav-item a {
  text-decoration: none; /* Убираем подчеркивание */
  color: inherit; /* Используем цвет родительского элемента */
  display: block; /* Ссылка занимает всю ширину элемента */
  text-align: center; /* Центрируем содержимое */
}

.floating-block .nav-item i {
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
}

.floating-block .nav-item.active {
  color: #007bff;
}

.floating-block .nav-basket-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff0000;
  color: white;
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-block .nav-basket-icon {
  position: relative;
  display: inline-block;
}

.floating-block .nav-basket-count {
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Verdana;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: -7px;
    right: 5px;
    background-color: #ff3b3b;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 110px;
  }
}
