/* =====================================================================
                    КНОПКИ "ПОДЕЛИТЬСЯ"
   ===================================================================== */

.share-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: #ffffff;
  cursor: pointer;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-button:active {
  transform: translateY(0);
}

.share-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.share-button span {
  flex: 1;
  text-align: center;
}

.share-button--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5fbf 100%);
}

.share-button--facebook:hover {
  background: linear-gradient(135deg, #1e88ff 0%, #0f6dd1 100%);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.share-button--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.share-button--whatsapp:hover {
  background: linear-gradient(135deg, #2ee576 0%, #22c55e 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.share-button--telegram {
  background: linear-gradient(135deg, #0088cc 0%, #006ba3 100%);
}

.share-button--telegram:hover {
  background: linear-gradient(135deg, #0099e6 0%, #007cc7 100%);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.share-button--copy {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  border: none;
  font-family: inherit;
}

.share-button--copy:hover {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

.share-button--copy.copied {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.share-button--copy.copied:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

/* Адаптивность */
@media (max-width: 768px) {
  .share-buttons {
    grid-template-columns: 1fr;
  }
}
