/* ==========================================================================
   SOCIAL SHARE BLOCK STYLES
   ========================================================================== */

.wpe-social-share-block {
    display: inline-block;
    margin-block-start: 0;
    margin-block-end: 0;
    width:100%;
    line-height:0px;
}

.wpe-social-share-block .share-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    color: #333333;
    border: 0px solid #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    width: calc(100% - 32px);
}

.wpe-social-share-block .share-action:hover {
   
}

.wpe-social-share-block .share-action:focus {
   
}

.wpe-social-share-block .share-action:active {
    
}

.wpe-social-share-block .share-style-icon {
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.wpe-social-share-block .share-style-text {
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #007cba;
    font-weight: 600;
}

.wpe-social-share-block .share-style-text:hover {
    background: rgba(0, 124, 186, 0.1);
    color: #005a87;
}

.wpe-social-share-block .share-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Share Modal */
.wpe-social-share-block .share-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.wpe-social-share-block .share-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: wpeModalSlideIn 0.3s ease-out;
}

@keyframes wpeModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wpe-social-share-block .share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.wpe-social-share-block .share-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.wpe-social-share-block .close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #999999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.wpe-social-share-block .close-modal:hover {
    background: #f5f5f5;
    color: #666666;
}

.wpe-social-share-block .share-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpe-social-share-block .share-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333333;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.wpe-social-share-block .share-option:hover {
    background: #f8f9fa;
    color: #007cba;
    text-decoration: none;
    border-color: #e9ecef;
}

.wpe-social-share-block .share-option:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
    text-decoration: none;
}