.gq-share-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.7rem;
}

.gq-share-trigger {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(141, 189, 255, 0.38);
  border-radius: 50%;
  color: #071426;
  background: linear-gradient(120deg, #ffffff, #8dbdff);
  box-shadow: 0 10px 22px rgba(18, 103, 216, 0.24);
  cursor: pointer;
}

.gq-share-trigger svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.gq-share-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gq-share-sheet {
  width: min(100%, 390px);
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: #f7f7f4;
  background: #222222;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
}

.gq-share-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.gq-share-sheet h2 {
  margin: 0;
  font-size: 1.25rem;
}

.gq-share-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #ffffff;
  background: #111111;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.gq-share-choice-list {
  display: grid;
  gap: 0.5rem;
}

.gq-share-choice {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  color: #f7f7f4;
  background: #141414;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
}

.gq-share-native {
  color: #071426;
  background: linear-gradient(120deg, #ffffff, #8dbdff);
}

.gq-share-facebook {
  background: linear-gradient(120deg, #0b55c8, #1877f2);
}

.gq-share-messenger {
  background: linear-gradient(120deg, #7b2cff, #00b2ff);
}

.gq-share-copy {
  background: linear-gradient(120deg, #303030, #434343);
}

.gq-share-status {
  min-height: 1.2em;
  margin: 0;
  color: #b9d3ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.gq-share-app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  border-color: rgba(141, 189, 255, 0.35);
  background:
    radial-gradient(circle at top right, rgba(18, 103, 216, 0.18), transparent 45%),
    #222222;
}

.gq-share-app-card h2,
.gq-share-app-card p {
  margin-bottom: 0;
}

.gq-share-app-card .gq-share-wrap,
.daily-recipe-hero .gq-share-wrap {
  margin-top: 0;
}

@media (min-width: 520px) {
  .gq-share-sheet-backdrop {
    place-items: center;
  }
}