/* Enhanced Share Menu */
.share-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.share-menu.active {
  display: flex;
  opacity: 1;
}

.share-menu-content {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.share-menu.active .share-menu-content {
  transform: scale(1);
}

.share-menu-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-menu-content h4 i {
  color: #2563eb;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.share-option:hover {
  background: #eff6ff;
  border-color: #2563eb;
  transform: translateY(-2px);
}

.share-option i {
  font-size: 28px;
  color: #2563eb;
}

.share-option[data-type="whatsapp"] i {
  color: #25D366;
}

.share-option[data-type="facebook"] i {
  color: #1877F2;
}

.share-option[data-type="twitter"] i {
  color: #1DA1F2;
}

.share-option span {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

@media (max-width: 480px) {
  .share-options {
    grid-template-columns: 1fr;
  }
}
