.share-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}

.share-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.share-modal__box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 20px 24px;
  min-width: 360px;
  max-width: 100%;
}

.share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.share-modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: var(--color-main);
}

.share-modal__close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.share-modal__close:hover {
  background: #f5f5f5;
}

.share-modal__body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.share-modal__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  min-width: 70px;
}

.share-modal__item:hover {
  color: #2d2d2d;
}

.share-modal__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.share-modal__icon--copy {
  background: #F7F7F7;
}

.share-modal__icon--copy img {
  width: 24px;
  height: 24px;
}

.share-modal__icon--social img {
  width: 48px;
  height: 48px;
}

.share-modal__label {
  white-space: pre-line;
  color: #ADADAD;
}
