.ss-wa-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  font-family: inherit;
}

.ss-wa-fab__toggle{
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0f766e, #22c55e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
  transition: all .25s ease;
}

.ss-wa-fab__toggle:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

.ss-wa-panel{
  position: absolute;
  right: 0;
  bottom: 66px;
  width: 260px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  padding: 10px;
  display: none;
}

.ss-wa-fab.is-open .ss-wa-panel{ display: block; }

.ss-wa-seller{
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.ss-wa-seller:hover{
  background: rgba(0,0,0,.04);
}

.ss-wa-seller__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,.12);
}

.ss-wa-seller__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-wa-seller__fallback{
  font-weight: 700;
  color: #0f766e;
  font-size: 13px;
}

.ss-wa-seller__meta{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ss-wa-seller__label{
  font-size: 12px;
  opacity: .85;
}

.ss-wa-seller__name{
  font-size: 13px;
  font-weight: 700;
}

.ss-wa-badge{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}

.ss-wa-badge--on{ background:rgba(16,185,129,.14); color:#0f766e; }
.ss-wa-badge--off{ background:rgba(239,68,68,.12); color:#b91c1c; }

@media (max-width: 480px){
  .ss-wa-panel{ width: 240px; }
}