 /* 공유하기 팝오버 */
.share-popover {
    position: fixed;
    z-index: 9999;
    background: var(--card, #fff);
    border-radius: var(--r-2xl, 16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 1px 3px rgba(0,0,0,0.08);
    padding: var(--sp-4, 16px) var(--sp-2, 8px) var(--sp-3, 12px);
    min-width: 180px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}
.share-popover.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.share-popover_title {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    padding: 0 12px 10px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 6px;
}
.share-popover_options {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.share-popover_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: none;
    background: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: background 0.15s;
    white-space: nowrap;
}
.share-popover_item:hover {
    background: #f5f5f5;
}
.share-popover_icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.share-popover_icon svg {
    width: 18px;
    height: 18px;
}
.share-popover_icon--link {
    background: #eff6ff;
    color: #2563eb;
}
.share-popover_icon--kakao {
    background: #FEE500;
}
.share-popover_icon--email {
    background: #f3f4f6;
    color: #555;
}