.wweb-share-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.wweb-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    line-height: 1;
    white-space: nowrap;
}

.wweb-share-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.wweb-share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.wweb-share-btn span {
    pointer-events: none;
}

.wweb-share-btn--naver {
    background: #03C75A;
    border-color: #03C75A;
    color: #fff;
}

.wweb-share-btn--kakaotalk {
    background: #FEE500;
    border-color: #FEE500;
    color: #3C1E1E;
}

.wweb-share-btn--facebook {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.wweb-share-btn--twitter {
    background: #000;
    border-color: #000;
    color: #fff;
}

.wweb-share-btn--copy {
    background: #fff;
    border-color: #ccc;
    color: #666;
}

.wweb-share-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.wweb-share-toast.is-visible {
    opacity: 1;
}
