/**
 * Social Share Stapril - Styles
 * Lichtgewicht, moderne social share buttons
 */

.sss-share-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

.sss-share-wrapper.sss-vertical {
    flex-direction: column;
    align-items: flex-start;
}

.sss-share-wrapper.sss-vertical .sss-buttons {
    flex-direction: row;
    justify-content: flex-start;
}

.sss-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.sss-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Base button styles */
.sss-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.sss-btn svg {
    width: 22px;
    height: 22px;
}

.sss-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sss-btn:active {
    transform: translateY(0);
}

/* Size variants */
.sss-size-small .sss-btn {
    width: 36px;
    height: 36px;
}

.sss-size-small .sss-btn svg {
    width: 18px;
    height: 18px;
}

.sss-size-large .sss-btn {
    width: 52px;
    height: 52px;
}

.sss-size-large .sss-btn svg {
    width: 26px;
    height: 26px;
}

/* Platform colors */
.sss-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.sss-whatsapp:hover {
    background-color: #20bd5a;
    color: #fff;
}

.sss-facebook {
    background-color: #1877F2;
    color: #fff;
}

.sss-facebook:hover {
    background-color: #1466d8;
    color: #fff;
}

.sss-linkedin {
    background-color: #0A66C2;
    color: #fff;
}

.sss-linkedin:hover {
    background-color: #0958a8;
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .sss-share-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sss-btn {
        width: 40px;
        height: 40px;
    }

    .sss-btn svg {
        width: 20px;
        height: 20px;
    }
}
