body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f6f8;
}

.sidebar {
  background: #fff;
  border-right: 1px solid #ddd;
  height: auto;
}

.sidebar h6 {
  font-weight: 700;
  margin-top: 18px;
  font-size: 15px;
}

.sidebar a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  padding: 4px 0;

}

.sidebar a:hover {
  color: #0d6efd;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.product-card img {
  width: 100%;
  height: 140px;      /* фиксированная высота */
  object-fit: contain; /* не обрезает */
}
.product-card:hover {
  transform: translateY(-5px);
}

.price {
  font-weight: bold;
  color: #0d6efd;
}

.mobile-actions a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.call { background: #0d6efd; }
.wa { background: #25d366; }
.tg { background: #229ed9; }
.ig { background: #e1306c; }

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

@media (min-width: 992px) {
  .sidebar {
    min-height: 100vh;   /* 🔥 только на компьютере */
  }
}