/* Share Plugin Styles */
.universal-share {
  margin: 20px 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.share-buttons.vertical {
  flex-direction: column;
  align-items: stretch;
}

.share-buttons.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px 15px; */
  border: none;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 40px;
  white-space: nowrap;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: white;
}

.share-btn i {
  margin-right: 8px;
  font-size: 16px;
}

.share-btn.icon-only {
  padding: 12px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.share-btn.icon-only i {
  margin: 0;
}

.share-btn.icon-only .btn-text {
  display: none;
}

/* Size variations */
.share-btn.small {
  padding: 8px 12px;
  font-size: 12px;
  min-height: 32px;
}

.share-btn.large {
  padding: 15px 20px;
  font-size: 16px;
  min-height: 50px;
}

/* Platform colors */
.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.telegram {
  background: #0088cc;
}

.share-btn.reddit {
  background: #ff4500;
}

.share-btn.pinterest {
  background: #bd081c;
}

.share-btn.tumblr {
  background: #00cf35;
}

.share-btn.email {
  background: #34495e;
}

.share-btn.copy {
  background: #6c5ce7;
}

.share-btn.print {
  background: #95a5a6;
}

.share-btn.sms {
  background: #2ecc71;
}

/* Themes */
.universal-share.minimal .share-btn {
  background: #ecf0f1 !important;
  color: #2c3e50 !important;
  border: 2px solid #bdc3c7;
}

.universal-share.minimal .share-btn:hover {
  background: #d5dbdb !important;
}

.universal-share.rounded .share-btn {
  border-radius: 10px;
}

.universal-share.dark .share-btn {
  background: #34495e !important;
  color: white !important;
}

.universal-share.dark .share-btn:hover {
  background: #2c3e50 !important;
}

/* Floating styles */
.universal-share.floating {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: white;
  padding: 15px 10px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.universal-share.floating .share-buttons {
  flex-direction: column;
  gap: 8px;
}

.universal-share.floating .share-btn {
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

.universal-share.floating .btn-text {
  display: none;
}

/* Sticky bar */
.universal-share.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.universal-share.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Notification */
.share-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2ecc71;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.share-notification.show {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .universal-share.floating {
    position: static;
    transform: none;
    margin: 20px auto;
    display: block;
    left: auto;
    top: auto;
    width: fit-content;
  }

  .universal-share.floating .share-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .share-buttons.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
