/* ================================
   Product Share – Minimal colored
   ================================ */
.rst-product-share {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Texto "Compartir" */
.rst-share-label {
    align-items: center;
    display: flex;
    font-size: 13px;
    font-weight: 500;
    margin-right: 4px;
    white-space: nowrap;
}

/* Base botón */
.rst-share {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

/* SVG blanco */
.rst-share svg {
    fill: #ffffff;
    height: 20px;
    transition: transform 0.15s ease, opacity 0.15s ease;
    width: 20px;
    filter: drop-shadow(0 2px 3px black);
}

/* Colores por red */
.rst-share.facebook {
    background-color: #1877f2;
}

.rst-share.whatsapp {
    background-color: #25d366;
}

.rst-share.x {
    background-color: #000;
}

/* Feedback mobile */
.rst-share:active svg {
    opacity: 0.8;
    transform: scale(0.9);
}

/* Desktop */
@media (min-width: 992px) {
    .rst-share:hover svg {
        opacity: 0.85;
        transform: scale(1.05);
    }
}
