.share-bar {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(251, 207, 232, 0.85);
}
.share-bar.compact {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.share-bar-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #9d174d;
    margin-bottom: 10px;
}
.share-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.share-btn {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(251, 207, 232, 0.95);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    color: #9d174d;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.share-btn:hover {
    background: #fce7f3;
    border-color: #f9a8d4;
    transform: translateY(-1px);
}
.share-btn:active { transform: translateY(0); }
.share-btn.weibo { color: #e6162d; border-color: #fecaca; }
.share-btn.qq { color: #12b7f5; border-color: #bae6fd; }
.share-btn.wechat { color: #07c160; border-color: #bbf7d0; }
.share-btn.douban { color: #2e963d; border-color: #bbf7d0; }
.share-btn.copy { color: #6b21a8; }

.test-row-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 480px) {
    .test-row { flex-wrap: wrap; }
    .test-row-actions { width: 100%; justify-content: flex-start; margin-top: 4px; }
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(12px);
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(61, 44, 54, 0.92);
    color: #fff;
    font-size: 14px;
    z-index: 12000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.share-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.share-row-expand {
    flex-basis: 100%;
    width: 100%;
    padding: 8px 0 2px;
}
