/* ===================== Saved Items ([bphc_saved_items]) ===================== */
.bphc-saved-items-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.bphc-si-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.bphc-si-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 10px 12px;
    transition: opacity .2s ease, box-shadow .2s ease;
}

.bphc-si-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.bphc-si-item.bphc-si-busy {
    opacity: .55;
    pointer-events: none;
}

.bphc-si-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 64px;
    background: #f5f5f5;
}

.bphc-si-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.bphc-si-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bphc-si-info {
    flex: 1;
    min-width: 0;
}

.bphc-si-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 2px;
}

.bphc-si-title a {
    color: inherit;
    text-decoration: none;
}

.bphc-si-title a:hover {
    text-decoration: underline;
}

.bphc-si-title.bphc-si-unavailable {
    color: #999;
    font-style: italic;
}

.bphc-si-variation {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.bphc-si-price {
    font-weight: 700;
    font-size: 14px;
    color: #222;
}

.bphc-si-date {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

.bphc-si-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.bphc-si-move {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #2e4a36;
    background: #2e4a36;
    color: #fff;
    cursor: pointer;
    transition: background .15s ease;
    white-space: nowrap;
}

.bphc-si-move:hover {
    background: #253d2c;
}

.bphc-si-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.bphc-si-remove:hover {
    color: #c0392b;
    border-color: #c0392b;
}

/* Notices */
.bphc-si-notice {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
}

.bphc-si-notice--ok {
    background: #e8f7ed;
    color: #0f5132;
}

.bphc-si-notice--error {
    background: #fef2f2;
    color: #b42318;
}

/* Empty state */
.bphc-si-empty {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 15px;
}

.bphc-si-login {
    text-align: center;
    padding: 30px 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 480px) {
    .bphc-si-item {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 10px;
    }

    .bphc-si-thumb {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .bphc-si-actions {
        flex-direction: row;
        width: 100%;
        justify-content: flex-end;
        gap: 8px;
    }
}