.tlc-wishlist-popover {
  position: absolute;
  z-index: 99999;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 240px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.tlc-wishlist-popover-visible {
  opacity: 1;
}
.tlc-wishlist-popover-header {
  padding: 12px 16px 8px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}
.tlc-wishlist-popover-lists {
  padding: 8px 16px;
  max-height: 240px;
  overflow-y: auto;
}
.tlc-wishlist-popover-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  cursor: pointer;
}
.tlc-wishlist-popover-cb {
  margin: 0;
}
.tlc-wishlist-popover-create {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 6px 0;
  background: none;
  border: 1px dashed #aaa;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  color: #555;
  text-align: center;
}
.tlc-wishlist-popover-create:hover {
  border-color: #135e96;
  color: #135e96;
}
.tlc-wishlist-popover-actions {
  display: flex;
  gap: 8px;
  padding: 8px 16px 12px;
  border-top: 1px solid #eee;
  justify-content: flex-end;
}
.tlc-wishlist-popover-cancel {
  background: none;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 12px;
}
.tlc-wishlist-popover-save {
  background: #135e96;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 12px;
}
.tlc-wishlist-popover-save:hover {
  background: #0e4b7a;
}
