/* =========================================================
   Social Share WP – social-share.css  v1.0.0
   ========================================================= */

.sswp-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 1.5em 0;
    font-family: inherit;
}

.sswp-wrap .sswp-label {
    font-size: .85em;
    font-weight: 600;
    color: #555;
    margin-right: 4px;
    white-space: nowrap;
}

/* ── Botón base ── */
.sswp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    text-decoration: none !important;
    font-size: .82em;
    font-weight: 600;
    line-height: 1;
    color: #fff !important;
    background-color: var(--sswp-color, #555);
    transition: filter .2s ease, transform .15s ease, box-shadow .2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.sswp-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
    color: #fff !important;
    text-decoration: none !important;
}

.sswp-btn:active {
    transform: translateY(0);
    filter: brightness(.95);
}

/* ── SVG íconos ── */
.sswp-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

/* ── Estilos de forma ── */
.sswp-rounded .sswp-btn { border-radius: 6px; }
.sswp-square  .sswp-btn { border-radius: 0;   }
.sswp-pill    .sswp-btn { border-radius: 999px; padding: 8px 18px; }

/* ── Solo ícono (cuando show_label=false) ── */
.sswp-btn span { display: inline; }

/* ── Responsive ── */
@media (max-width: 480px) {
    .sswp-wrap {
        gap: 6px;
    }
    .sswp-btn {
        padding: 8px 10px;
        font-size: .78em;
    }
    .sswp-btn span {
        display: none;   /* oculta etiqueta en móvil muy pequeño */
    }
    .sswp-btn svg {
        width: 20px;
        height: 20px;
    }
}
