.wm-share-shell {
    display: grid;
    gap: 14px;
    margin: 28px 0;
    padding: 18px 20px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.wm-share-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.wm-share-head h3 {
    margin: 0;
    font-size: 16px;
    color: #0f172a;
}

.wm-share-subtitle {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
}

.wm-share-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid #dbe4f0;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.wm-share-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.wm-share-button.is-icon-only {
    min-width: 44px;
    padding: 10px;
}

.wm-share-button.is-copy-success {
    border-color: #86efac;
    background: #f0fdf4;
    color: #166534;
}

.wm-share-icon {
    width: 22px;
    height: 22px;
    display: block;
    flex: 0 0 auto;
}

.wm-share-button-label {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .wm-share-head {
        display: grid;
    }

    .wm-share-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wm-share-button.is-icon-only {
        width: 100%;
    }
}
