/* Pawa Digital Store - Social Share */

.pds-social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--pds-border, #e5e7eb);
    border-bottom: 1px solid var(--pds-border, #e5e7eb);
}
.pds-social-share__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--pds-muted, #6b7280);
    margin-right: 4px;
}
.pds-social-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--pds-border, #e5e7eb);
    background: var(--pds-surface, #fff);
    color: var(--pds-ink, #1f2430);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pds-social-share__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22,27,46,0.12);
}
.pds-social-share__btn--whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.pds-social-share__btn--facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.pds-social-share__btn--x:hover { background: #000; color: #fff; border-color: #000; }
.pds-social-share__btn--copy {
    width: auto;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
}
.pds-social-share__btn--copy:hover { background: var(--pds-violet, #6d28d9); color: #fff; border-color: var(--pds-violet, #6d28d9); }
