.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.add-to-cart-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #333;
  transition: all 0.3s ease;
}

.add-to-cart-icon:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Feedback visuel AJAX */
.add-to-cart-icon.loading {
  opacity: 0.5;
  pointer-events: none;
}

.add-to-cart-icon.added {
  background: #28a745;
  border-color: #28a745;
  color: #fff;
}

.add-to-cart-icon svg {
  display: block;
  margin: auto;
}