/* ============== ESTILOS BASE COMPARTIDOS ============== */
.sst-share-buttons {
    display: flex;
    gap: 15px;
    margin: 1em 0 2em 0;
    flex-wrap: wrap;
}

.sst-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid var(--default-color);
    color: var(--default-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Iconos */
.sst-share-icon {
    font-family: dashicons;
    transition: inherit;
    font-size: 1em;
    line-height: 1;
    color: inherit;
    fill: currentColor;
}

/* Hover genérico */
.sst-share-btn:hover {
    background-color: var(--hover-bg-color);
    color: #fff;
    transform: translateY(-2px);
}

.sst-share-btn:hover .sst-share-icon {
    color: #fff;
    fill: #fff;
}

/* ============== VARIANTE TEXTO + ICONO ============== */
.sst-share-buttons:not(.sst-icon-only) .sst-share-btn {
    border-radius: 30px;
    padding: 10px 18px;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.sst-share-buttons:not(.sst-icon-only) .sst-share-icon {
    font-size: 22px;
}

/* ============== VARIANTE SOLO ICONO ============== */
.sst-share-buttons.sst-icon-only {
    gap: 10px;
}

.sst-share-buttons.sst-icon-only .sst-share-btn {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--default-color);
}

.sst-share-buttons.sst-icon-only .sst-share-icon {
    font-size: 20px;
}

/* ============== ESTADOS ============== */
.sst-share-btn:focus {
    outline: 3px solid var(--hover-bg-color);
    outline-offset: 3px;
}
