/* أنماط أزرار المشاركة */
.ssp-share-buttons {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.ssp-share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-family: inherit;
}

.ssp-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ssp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    min-width: 120px;
    gap: 10px;
}

.ssp-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.ssp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.ssp-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ألوان الشبكات */
.ssp-facebook {
    background: #1877f2;
}

.ssp-whatsapp {
    background: #25d366;
}

.ssp-twitter {
    background: #1da1f2;
}

.ssp-linkedin {
    background: #0077b5;
}

/* أنماط مختلفة */
.ssp-style-rounded .ssp-button {
    border-radius: 50px;
}

.ssp-style-minimal .ssp-button {
    background: transparent;
    border: 2px solid;
}

.ssp-style-minimal .ssp-facebook {
    color: #1877f2;
    border-color: #1877f2;
    background: transparent;
}

.ssp-style-minimal .ssp-whatsapp {
    color: #25d366;
    border-color: #25d366;
    background: transparent;
}

.ssp-style-minimal .ssp-twitter {
    color: #1da1f2;
    border-color: #1da1f2;
    background: transparent;
}

.ssp-style-minimal .ssp-linkedin {
    color: #0077b5;
    border-color: #0077b5;
    background: transparent;
}

.ssp-style-gradient .ssp-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5ab9);
}

.ssp-style-gradient .ssp-whatsapp {
    background: linear-gradient(135deg, #25d366, #128C7E);
}

.ssp-style-gradient .ssp-twitter {
    background: linear-gradient(135deg, #1da1f2, #0c7abf);
}

.ssp-style-gradient .ssp-linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .ssp-button {
        flex: 1 1 auto;
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ssp-buttons-container {
        flex-direction: column;
    }
    
    .ssp-button {
        width: 100%;
    }
}

/* تأثيرات حركية */
@keyframes ssp-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.ssp-button:active {
    animation: ssp-pulse 0.2s ease;
}

/* تحسين ظهور الأزرار */
.ssp-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.3);
}

.ssp-button.ssp-whatsapp:focus {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}