/* Стили для контейнера кнопок */
.product-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

/* Базовые стили для кнопок */
.btn-compare,
.btn-favorite {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
}

.btn-compare:hover,
.btn-favorite:hover {
  border-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Стили для иконок */
.btn-compare svg,
.btn-favorite svg {
  fill: #666;
  transition: fill 0.3s ease;
}

.btn-compare:hover svg {
  fill: #007bff;
}

.btn-favorite:hover svg {
  fill: #dc3545;
}

/* Активное состояние для сравнения */
.btn-compare.active {
  border-color: #007bff;
  background-color: #e7f3ff;
}

.btn-compare.active svg {
  fill: #007bff;
}

/* Активное состояние для избранного */
.btn-favorite.active {
  border-color: #dc3545;
  background-color: #ffe7e7;
}

.btn-favorite.active svg {
  fill: #dc3545;
}

/* Индикаторы количества в шапке (опционально) */
.compare-count,
.favorite-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}/* Стили для контейнера кнопок */
.product-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

/* Базовые стили для кнопок */
.btn-compare,
.btn-favorite {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
}

.btn-compare:hover,
.btn-favorite:hover {
  border-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Стили для иконок */
.btn-compare svg,
.btn-favorite svg {
  fill: #666;
  transition: fill 0.3s ease;
}

.btn-compare:hover svg {
  fill: #007bff;
}

.btn-favorite:hover svg {
  fill: #dc3545;
}

/* Активное состояние для сравнения */
.btn-compare.active {
  border-color: #007bff;
  background-color: #e7f3ff;
}

.btn-compare.active svg {
  fill: #007bff;
}

/* Активное состояние для избранного */
.btn-favorite.active {
  border-color: #dc3545;
  background-color: #ffe7e7;
}

.btn-favorite.active svg {
  fill: #dc3545;
}

/* Индикаторы количества в шапке (опционально) */
.compare-count,
.favorite-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}