#share-bar {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px;
  text-align: center;
}

.share-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-dark, #14462A);
  border-radius: 12px;
  padding: 14px 24px;
}

.share-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-fb:hover { background: #1877F2; }
.share-x:hover { background: #000; }
.share-email:hover { background: var(--accent, #C8922A); }
.share-copy:hover { background: var(--green, #1B5E37); }
.share-copy.copied { background: var(--green, #1B5E37); }

@media (max-width: 480px) {
  .share-bar-inner {
    gap: 8px;
    padding: 12px 16px;
  }

  .share-label {
    font-size: 12px;
  }

  .share-btn {
    width: 38px;
    height: 38px;
  }
}

.share-prompt-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.share-prompt-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-white, #FFFDF8);
  border-radius: 16px;
  padding: 32px;
  max-width: 440px;
  width: 90%;
  z-index: 9999;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.share-prompt-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.share-prompt-close:hover { color: #000; }

.share-prompt-modal h3 {
  font-size: 1.5rem;
  color: var(--green-dark, #14462A);
  margin: 0 0 8px;
}

.share-prompt-modal p {
  color: #555;
  margin: 0 0 24px;
  line-height: 1.5;
}

.share-prompt-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-prompt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  color: #fff;
}

.share-prompt-btn:hover { opacity: 0.9; }

.share-prompt-fb { background: #1877F2; }
.share-prompt-x { background: #000; }
.share-prompt-copy { background: var(--green, #1B5E37); }
