/* ============================================================
   NMC SOCIAL SHARE — Modal + Toast + Share Button
   Naira Music Cartel WordPress Theme
   ============================================================ */

/* ── Toast ─────────────────────────────────────────────────── */
#nmc-share-toast {
  position: fixed;
  bottom: 90px; /* above global player */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--nmc-gold, #C9A84C);
  color: var(--nmc-black, #0A0A0A);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10001;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
}
#nmc-share-toast.nmc-share-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Modal backdrop ────────────────────────────────────────── */
#nmc-share-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}
#nmc-share-modal.nmc-share-modal--open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nmc-share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

/* ── Modal box ─────────────────────────────────────────────── */
.nmc-share-modal__box {
  position: relative;
  background: #111;
  border: 1px solid var(--nmc-gold, #C9A84C);
  border-radius: 12px;
  padding: 32px;
  width: min(480px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  font-family: 'Space Grotesk', sans-serif;
}
.nmc-share-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 0;
}
.nmc-share-modal__close:hover {
  color: var(--nmc-white, #F5F0E8);
}
.nmc-share-modal__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nmc-gold, #C9A84C);
  margin-bottom: 20px;
}

/* ── Platform links grid ───────────────────────────────────── */
.nmc-share-modal__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.nmc-share-modal__link {
  display: block;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  color: #fff;
}
.nmc-share-modal__link:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.nmc-share-modal__link--twitter  { background: #1DA1F2; }
.nmc-share-modal__link--whatsapp { background: #25D366; }
.nmc-share-modal__link--facebook { background: #1877F2; }
.nmc-share-modal__link--telegram { background: #0088cc; }
.nmc-share-modal__link--tiktok {
  background: linear-gradient(135deg, #010101 0%, #FE2C55 50%, #25F4EE 100%);
}

/* ── Action buttons ────────────────────────────────────────── */
.nmc-share-modal__actions {
  display: flex;
  gap: 10px;
}
.nmc-share-modal__card-btn,
.nmc-share-modal__native-btn {
  flex: 1;
  font-size: 0.85rem;
}

/* ── Body lock when modal is open ──────────────────────────── */
body.nmc-modal-open {
  overflow: hidden;
}

/* ── Share button on track cards ───────────────────────────── */
.nmc-track__share-btn {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--nmc-gold, #C9A84C);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.nmc-track__share-btn:hover {
  background: rgba(201, 168, 76, 0.15);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nmc-share-modal__links {
    grid-template-columns: 1fr;
  }
  .nmc-share-modal__actions {
    flex-direction: column;
  }
}
