.va-share-sheet .modal-dialog {
  max-width: 420px;
  margin: 1rem auto;
}

.va-share-sheet__content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.va-share-sheet__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 20px 14px;
  align-items: center;
}

.va-share-sheet__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--va-text, #222);
  line-height: 1.3;
}

.va-share-sheet__close {
  padding: 0;
  margin: 0;
  font-size: 28px;
  line-height: 1;
  opacity: 0.55;
}

.va-share-sheet__body {
  padding: 16px 18px 20px;
}

.va-share-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.va-share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 8px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--va-text, #222);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.va-share-option:hover,
.va-share-option:focus-visible {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--va-text, #222);
  outline: none;
}

.va-share-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
}

.va-share-option__icon--copy { background: #555; }
.va-share-option__icon--whatsapp { background: #25d366; }
.va-share-option__icon--facebook { background: #1877f2; }
.va-share-option__icon--twitter { background: #000; }
.va-share-option__icon--email { background: #6b7280; }
.va-share-option__icon--sms { background: #0ea5e9; }
.va-share-option__icon--native { background: var(--va-brand, #ff385c); }

.va-share-option__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.va-share-sheet__copied {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 575px) {
  .va-share-sheet .modal-dialog {
    align-items: flex-end;
    min-height: calc(100% - 0.5rem);
    margin: 0.25rem auto;
  }

  .va-share-sheet__content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .va-share-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .va-share-option__icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
