.sap-social-share {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sap-share-label {
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
}

.sap-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sap-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sap-share-button:hover {
    background: #f0f0f0;
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sap-share-button:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.sap-icon {
    font-size: 18px;
    line-height: 1;
}

.sap-label {
    font-weight: 500;
}

/* Platform-specific colors */
.sap-share-facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.sap-share-twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.sap-share-linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.sap-share-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.sap-share-pinterest:hover {
    background: #bd081c;
    color: #fff;
    border-color: #bd081c;
}

.sap-share-reddit:hover {
    background: #ff4500;
    color: #fff;
    border-color: #ff4500;
}

.sap-share-email:hover {
    background: #666;
    color: #fff;
    border-color: #666;
}

/* Style variations */
.sap-style-icons .sap-label {
    display: none;
}

.sap-style-text .sap-icon {
    display: none;
}

/* Position variations */
.sap-position-top {
    margin-top: 0;
    margin-bottom: 30px;
}

.sap-position-bottom {
    margin-top: 30px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sap-share-buttons {
        flex-direction: column;
    }
    
    .sap-share-button {
        width: 100%;
        justify-content: center;
    }
}

