body {
  background-image: url("../images/bg-image.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.golden-bg {
  background: rgba(255, 215, 0, 0.5);
  /* Полупрозрачный золотистый цвет */
  padding: 10px;
  /* Внутренние отступы для увеличения площади фона */
  border-radius: 5px;
  /* Сглаженные углы */
  display: inline-block;
}

.white-bg {
  background: rgba(255, 255, 254, 0.911);
  /* Полупрозрачный белый цвет */
  padding: 10px;
  /* Внутренние отступы для увеличения площади фона */
  border-radius: 5px;
  /* Сглаженные углы */
  display: inline-block;
  /* Чтобы фон не занимал всю ширину */
}

.dropdown-toggle::after {
  content: none;
}

.custom-shadow {
  box-shadow: 5px 5px 25px 19px #000000;
}

.product_id {
  color: gray;
  font-size: 15px;
}

.badge.bg-warning.text-dark {
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 1rem;
  box-shadow: 2px 2px 15px 9px #000000;
}

.badge-banner {
  top: 80%;
  border-radius: 15px;
  font-size: 0.7rem;
}

.product-images-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Расстояние между изображениями */
  justify-content: center;
  margin-top: 20px;
  /* Отступ сверху */
}

.gallery-item {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

a[href^="tel"] {
  text-decoration: none;
}


/* Анимация пульсации */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(108, 117, 125, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(108, 117, 125, 0);
  }
}

/* Стили для кнопки */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
  /* Применяем анимацию */
  border-radius: 50%;
  /* Делаем кнопку круглой */
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* Убираем подчеркивание у ссылки */
}