/* WP Social Share Pro - Frontend Styles */
.wssp-share-buttons {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    clear: both;
}

.wssp-share-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.wssp-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wssp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: white;
}

.wssp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

.wssp-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.3);
}

.wssp-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wssp-label {
    font-size: 13px;
    font-weight: 500;
}

/* Network Colors */
.wssp-button-facebook { background-color: #1877f2; }
.wssp-button-twitter { background-color: #1da1f2; }
.wssp-button-linkedin { background-color: #0077b5; }
.wssp-button-pinterest { background-color: #bd081c; }
.wssp-button-whatsapp { background-color: #25d366; }
.wssp-button-telegram { background-color: #0088cc; }

/* Women-focused networks */
.wssp-button-peanut { background-color: #ff6b9d; }
.wssp-button-elpha { background-color: #6c5ce7; }
.wssp-button-sheworx { background-color: #e84393; }
.wssp-button-bumble_bff { background-color: #ffcc00; color: #333; }
.wssp-button-female_entrepreneur_association { background-color: #fd79a8; }

/* Women Network Special Styling */
.wssp-women-network {
    position: relative;
}

.wssp-women-network::after {
    content: "👩";
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b9d;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid white;
}

/* Women Network Modal */
.wssp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.wssp-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.wssp-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wssp-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.wssp-modal-body {
    padding: 20px;
}

.wssp-share-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.wssp-url-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
    margin-top: 5px;
}

.wssp-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.wssp-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.wssp-btn-primary { background: #0073aa; color: white; }
.wssp-btn-secondary { background: #6c757d; color: white; }
.wssp-btn-default { background: #e9ecef; color: #333; }

/* Responsive Design */
@media (max-width: 768px) {
    .wssp-buttons-container {
        justify-content: center;
    }

    .wssp-button {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 12px 8px;
    }

    .wssp-button .wssp-label {
        display: none;
    }

    .wssp-modal-content {
        width: 95%;
        margin: 20px auto;
    }
}

/* Notification */
.wssp-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 100000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.wssp-notification-show {
    transform: translateX(0);
}

.wssp-notification-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Print styles */
@media print {
    .wssp-share-buttons {
        display: none;
    }
}
