.zcnc-ss-save-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.zcnc-ss-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: #fff;
    border: 1px solid #c62828;
    color: #c62828;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.zcnc-ss-save-btn:hover,
.zcnc-ss-save-btn:focus {
    background: #c62828;
    color: #fff;
}

.zcnc-ss-save-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Variante compacta cuando va dentro del .zcnc-sort-wrapper, al lado del
 * select de "Ordenar por". Mismo alto que el select para alinear bien. */
.zcnc-ss-save-btn--inline {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .zcnc-ss-save-btn--inline {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }
}

.zcnc-ss-save-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 0.75rem 1rem;
    background: #1a2332;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.zcnc-ss-save-toast.error {
    background: #b71c1c;
}

.zcnc-saved-search {
    padding: 1rem 0;
}

.zcnc-ss-intro {
    color: #556;
    margin-bottom: 1rem;
}

.zcnc-ss-empty {
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 8px;
    text-align: center;
}

.zcnc-ss-hint {
    color: #556;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.zcnc-ss-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zcnc-ss-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e6ef;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    background: #fff;
}

.zcnc-ss-item__label {
    font-weight: 600;
    color: #1a2332;
    text-decoration: none;
}

.zcnc-ss-item__label:hover {
    color: #c62828;
    text-decoration: underline;
}

.zcnc-ss-item__meta {
    font-size: 0.85rem;
    color: #556;
    margin-top: 0.25rem;
}

.zcnc-ss-btn-del {
    background: transparent;
    border: 1px solid #d0d7e2;
    color: #b71c1c;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s;
}

.zcnc-ss-btn-del:hover {
    background: #fee;
    border-color: #b71c1c;
}

.zcnc-ss-myaccount-link .zcnc-ss-badge {
    display: inline-block;
    background: #c62828;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.35rem;
    vertical-align: middle;
}
