.wpss-wrap {
    clear: both;
    margin: 2.5rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wpss-label {
    margin: 0 0 12px 0;
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
}

.wpss-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wpss-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    margin: 0;
    box-shadow: none;
    white-space: nowrap;
    transition: filter 0.15s, transform 0.12s;
    -webkit-appearance: none;
    appearance: none;
}

.wpss-btn:hover  { filter: brightness(1.12); transform: translateY(-2px); }
.wpss-btn:active { filter: brightness(0.92); transform: scale(0.97); }

.wpss-btn svg {
    display: block;
    flex-shrink: 0;
}

.wpss-whatsapp  { background: #25D366; color: #ffffff !important; }
.wpss-facebook  { background: #1877F2; color: #ffffff !important; }
.wpss-twitter   { background: #000000; color: #ffffff !important; }
.wpss-snapchat  { background: #FFFC00; color: #000000 !important; }
.wpss-tiktok    { background: #010101; color: #ffffff !important; }
.wpss-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
}

@media (max-width: 500px) {
    .wpss-btn      { padding: 11px 13px; }
    .wpss-btn span { display: none; }
    .wpss-btn svg  { width: 18px !important; height: 18px !important; }
}

.wpss-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 999999;
    max-width: 320px;
    text-align: center;
    pointer-events: none;
    animation: wpss-in 0.25s ease;
}

@keyframes wpss-in {
    from { opacity: 0; bottom: 16px; }
    to   { opacity: 1; bottom: 28px; }
}