.wisal-share-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
}
.wisal-share-modal.wisal-modal-visible {
    display: block;
}

.wisal-share-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .2s ease;
}
.wisal-share-modal.wisal-modal-visible .wisal-share-modal-overlay {
    opacity: 1;
}

.wisal-share-modal-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,.15);
    padding: 8px 22px 32px;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .22s ease;
}
.wisal-share-modal.wisal-modal-visible .wisal-share-modal-sheet {
    transform: translateY(0);
}

.wisal-share-modal-handle {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: #e2e8f0;
    margin: 8px auto 16px;
}

.wisal-share-modal-header h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 22px;
    color: #1e1e2e;
}

.wisal-share-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 10px;
}

.wisal-share-option {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 13px;
    color: #475569;
    padding: 4px;
}

.wisal-share-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wisal-share-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .wisal-share-modal-sheet {
        left: 50%;
        right: auto;
        transform: translate(-50%, 100%);
        width: 90%;
        max-width: 440px;
        border-radius: 20px;
        bottom: 30px;
    }
    .wisal-share-modal.wisal-modal-visible .wisal-share-modal-sheet {
        transform: translate(-50%, 0);
    }
}