.mod-add2social {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 100%;
  padding: 16px;
}

.add2social-heading {
  font-size: 15px;
  color: #444;
  margin: 0 0 14px;
  text-align: center;
  line-height: 1.5;
}

.add2social-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.add2social-tile {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.add2social-tile-header {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.4;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  background: #5983b0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.share-button:hover {
  transform: scale(1.1);
  background: #ff860d;
}

.share-button:active {
  transform: scale(0.95);
  background: #ffbf80;
}

.share-button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.share-button.copy svg,
.share-button.email svg,
.share-button.signal svg {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.share-button.messenger svg {
  /* Messenger SVG has complex paths that need to be filled, not stroked */
  fill: #fff;
  stroke: none;
}

.share-buttons .share-button.copy.copied,
.share-buttons .share-button.instagram.copied {
  background: #5983b0 !important;
}

@media (max-width: 768px) {
  .add2social-tile,
  .share-buttons {
    min-width: 100%;
    max-width: 100%;
  }


}
