/* Winger Custom Share Buttons */

.winger-share-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.winger-share-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-right: 4px;
}

.winger-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.winger-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 0;           /* убрали круг */
    background: transparent;    /* убрали фон */
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    padding: 0;
}

.winger-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.75;
}

.winger-share-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* Toast */
.winger-share-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.winger-share-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
    .winger-share-btn {
        width: 28px;
        height: 28px;
    }
    
    .winger-share-btn img {
        width: 24px;
        height: 24px;
    }
}