/* Pro Social Share PRO (PSS) */
.pss-pro{
  --pss-gap: 10px;
  --pss-bg: #111827;
  --pss-fg: #ffffff;
  --pss-border: #1f2937;
  --pss-item-bg: var(--pss-bg);
  --pss-item-fg: var(--pss-fg);

  display:block;
  margin:18px 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.pss-pro__title{
  font-weight:800;
  font-size:14px;
  margin-bottom:10px;
  color:#111827;
}

.pss-pro__buttons{
  display:flex;
  flex-wrap:wrap;
  gap: var(--pss-gap);
}

.pss-pro--align-left .pss-pro__buttons{ justify-content:flex-start; }
.pss-pro--align-center .pss-pro__buttons{ justify-content:center; }
.pss-pro--align-right .pss-pro__buttons{ justify-content:flex-end; }

.pss-pro__btn{
  --bg: var(--pss-item-bg);
  --fg: var(--pss-item-fg);
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none !important;
  cursor:pointer;
  user-select:none;
  border:1px solid var(--pss-border);
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, border-color .14s ease, filter .14s ease;
  background: var(--bg);
  color: var(--fg);
  outline:none;
  will-change: transform;
}

.pss-pro__btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(59,130,246,.35);
}

.pss-pro__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  filter: brightness(1.02);
}

.pss-pro__icon{
  width:18px;
  height:18px;
  display:inline-flex;
}
.pss-pro__icon svg{
  width:18px;
  height:18px;
  fill: currentColor;
  display:block;
}

.pss-pro__label{
  font-weight:800;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
}

/* Sizes */
.pss-pro--size-sm .pss-pro__btn{ padding: 9px 11px; }
.pss-pro--size-md .pss-pro__btn{ padding: 11px 13px; }
.pss-pro--size-lg .pss-pro__btn{ padding: 13px 16px; }

.pss-pro--size-sm .pss-pro__icon svg{ width:16px;height:16px; }
.pss-pro--size-lg .pss-pro__icon svg{ width:20px;height:20px; }

/* Shapes */
.pss-pro--shape-pill .pss-pro__btn{ border-radius: 999px; }
.pss-pro--shape-rounded .pss-pro__btn{ border-radius: 14px; }
.pss-pro--shape-square .pss-pro__btn{ border-radius: 10px; }

/* Styles */
.pss-pro--style-solid .pss-pro__btn{ border-color: transparent; }
.pss-pro--style-outline .pss-pro__btn{
  background: transparent;
  color:#111827;
  border-color: rgba(17,24,39,.20);
}
.pss-pro--style-outline .pss-pro__btn:hover{ background: rgba(17,24,39,.06); }

.pss-pro--style-glass .pss-pro__btn{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color:#111827;
}

/* Toast */
.pss-pro__toast{
  position:relative;
  margin-top:10px;
  font-size:13px;
  color:#111827;
  opacity:0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  min-height: 18px;
}
.pss-pro__toast.is-show{
  opacity:1;
  transform: translateY(0);
}

/* Floating */
.pss-pro-float{
  position: fixed;
  z-index: 99999;
}
.pss-pro-float--left{ left: 12px; }
.pss-pro-float--right{ right: 12px; }

.pss-pro-float .pss-pro{ margin: 0; }
.pss-pro-float .pss-pro__buttons{ flex-direction: column; }
.pss-pro-float .pss-pro__title{ display:none; }
.pss-pro-float .pss-pro__label{ display:none; }
.pss-pro-float .pss-pro__btn{
  width: 46px;
  height: 46px;
  justify-content: center;
  padding: 0;
}

/* Mobile hide by default */
@media (max-width: 767px){
  .pss-pro-float[data-pss-mobile="0"]{ display:none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .pss-pro__btn{ transition:none; }
  .pss-pro__btn:hover{ transform:none; }
}
