/* ============================================
   SHARE MODAL STYLES
   ============================================ */

.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.share-modal.active {
    opacity: 1;
    pointer-events: all;
}

.share-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.share-modal__content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-modal.active .share-modal__content {
    transform: scale(1);
}

.share-modal__content h3 {
    margin: 0 0 20px;
    font-size: 20px;
    text-align: center;
}

.share-modal__options {
    display: grid;
    gap: 10px;
}

.share-modal__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 15px;
}

.share-modal__option:hover {
    background: #f5f5f5;
    border-color: #999;
}

.share-modal__option i {
    font-size: 20px;
}

.share-modal__option[data-network="facebook"] i {
    color: #1877F2;
}

.share-modal__option[data-network="twitter"] i {
    color: #1DA1F2;
}

.share-modal__option[data-network="whatsapp"] i {
    color: #25D366;
}

.share-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
}

.share-modal__close:hover {
    color: #333;
}
