.product-share {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-share-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-right: 4px;
}

.product-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--border-subtle, var(--border));
  border-radius: 999px;
  background: var(--surface, #fff);
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.product-share-button:hover,
.product-share-button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.product-share-button .fa-icon {
  width: 16px;
  height: 16px;
}

.product-share-button.is-copied {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface-1, var(--surface));
}
